mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
For #2303: Add conf for RTC2RTMP
This commit is contained in:
parent
8a30cc86d9
commit
f7473c90bc
2 changed files with 42 additions and 47 deletions
42
trunk/conf/rtc2rtmp.conf
Normal file
42
trunk/conf/rtc2rtmp.conf
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
|
||||||
|
listen 1935;
|
||||||
|
max_connections 1000;
|
||||||
|
daemon off;
|
||||||
|
srs_log_tank console;
|
||||||
|
|
||||||
|
http_server {
|
||||||
|
enabled on;
|
||||||
|
listen 8080;
|
||||||
|
dir ./objs/nginx/html;
|
||||||
|
}
|
||||||
|
|
||||||
|
http_api {
|
||||||
|
enabled on;
|
||||||
|
listen 1985;
|
||||||
|
}
|
||||||
|
stats {
|
||||||
|
network 0;
|
||||||
|
}
|
||||||
|
rtc_server {
|
||||||
|
enabled on;
|
||||||
|
# Listen at udp://8000
|
||||||
|
listen 8000;
|
||||||
|
#
|
||||||
|
# The $CANDIDATE means fetch from env, if not configed, use * as default.
|
||||||
|
#
|
||||||
|
# The * means retrieving server IP automatically, from all network interfaces,
|
||||||
|
# @see https://github.com/ossrs/srs/wiki/v4_CN_RTCWiki#config-candidate
|
||||||
|
candidate $CANDIDATE;
|
||||||
|
}
|
||||||
|
|
||||||
|
vhost __defaultVhost__ {
|
||||||
|
rtc {
|
||||||
|
enabled on;
|
||||||
|
rtc_to_rtmp on;
|
||||||
|
}
|
||||||
|
http_remux {
|
||||||
|
enabled on;
|
||||||
|
mount [vhost]/[app]/[stream].flv;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,47 +0,0 @@
|
||||||
|
|
||||||
listen 1935;
|
|
||||||
max_connections 1000;
|
|
||||||
daemon off;
|
|
||||||
srs_log_tank console;
|
|
||||||
|
|
||||||
http_server {
|
|
||||||
enabled on;
|
|
||||||
listen 8080;
|
|
||||||
}
|
|
||||||
|
|
||||||
http_api {
|
|
||||||
enabled on;
|
|
||||||
listen 1985;
|
|
||||||
}
|
|
||||||
|
|
||||||
rtc_server {
|
|
||||||
enabled on;
|
|
||||||
listen 8000;
|
|
||||||
candidate $CANDIDATE;
|
|
||||||
}
|
|
||||||
|
|
||||||
vhost __defaultVhost__ {
|
|
||||||
rtc {
|
|
||||||
enabled on;
|
|
||||||
bframe discard;
|
|
||||||
}
|
|
||||||
|
|
||||||
http_remux {
|
|
||||||
enabled on;
|
|
||||||
mount [vhost]/[app]/[stream].flv;
|
|
||||||
}
|
|
||||||
|
|
||||||
tcp_nodelay on
|
|
||||||
min_latency on;
|
|
||||||
|
|
||||||
play {
|
|
||||||
gop_cache off;
|
|
||||||
queue_length 10;
|
|
||||||
mw_latency 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
publish {
|
|
||||||
mr off;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue