janus runner draft

This commit is contained in:
Devaev Maxim
2021-05-24 05:03:45 +03:00
parent 9cead62032
commit 19a68887e4
17 changed files with 565 additions and 30 deletions

19
configs/janus/janus.jcfg Normal file
View File

@@ -0,0 +1,19 @@
general: {
debug_level = 4
}
nat: {
nice_debug = false
ice_lite = true
ice_tcp = false
full_trickle = false
ignore_mdns = true
}
media: {
min_nack_queue = 2000
rtp_port_range = "20000-40000"
no_media_timer = 0
slowlink_threshold = 10
twcc_period = 100
dtls_timeout = 1000
nack_optimizations = true
}

View File

@@ -0,0 +1,3 @@
memsink: {
object = "kvmd::ustreamer::h264"
}

View File

@@ -0,0 +1,4 @@
general: {
ws = true
ws_unix = "/run/kvmd/janus-ws.sock"
}

View File

@@ -0,0 +1,19 @@
[Unit]
Description=Pi-KVM - Janus WebRTC Gateway (No Runner)
After=network.target network-online.target nss-lookup.target kvmd.service
[Service]
User=kvmd-janus
Group=kvmd-janus
Type=simple
Restart=always
RestartSec=3
AmbientCapabilities=CAP_NET_RAW
LimitNOFILE=65536
ExecStart=/usr/bin/janus --disable-colors --plugins-folder=/usr/lib/ustreamer/janus --configs-folder=/etc/kvmd/janus
TimeoutStopSec=5
KillMode=mixed
[Install]
WantedBy=multi-user.target

View File

@@ -1,13 +1,19 @@
[Unit]
Description=Pi-KVM - Janus WebRTC Gateway (stub)
Description=Pi-KVM - Janus WebRTC Gateway
After=network.target network-online.target nss-lookup.target kvmd.service
[Service]
Type=oneshot
ExecStart=/bin/true
ExecStop=/bin/true
RemainAfterExit=true
User=kvmd-janus
Group=kvmd-janus
Type=simple
Restart=always
RestartSec=3
AmbientCapabilities=CAP_NET_RAW
LimitNOFILE=65536
ExecStart=/usr/bin/kvmd-janus --run
TimeoutStopSec=5
KillMode=mixed
[Install]
WantedBy=multi-user.target