docs(smoke): add srs whep setup guide
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
# Local SRS config for manual RTMP and WHEP testing with cvmmap-streamer.
|
||||
# Start with:
|
||||
# cd ~/Code/srs/trunk
|
||||
# ./objs/srs -c /home/crosstyan/Code/cvmmap-streamer-ffmpeg-mcap/docs/smoke/srs.local.conf
|
||||
#
|
||||
# If WebRTC/WHEP is consumed from another host and SRS chooses the wrong NIC,
|
||||
# replace `candidate *;` with the reachable host IP.
|
||||
|
||||
max_connections 64;
|
||||
daemon off;
|
||||
srs_log_tank console;
|
||||
|
||||
rtmp {
|
||||
listen 1935;
|
||||
}
|
||||
|
||||
http_api {
|
||||
enabled on;
|
||||
listen 1985;
|
||||
}
|
||||
|
||||
http_server {
|
||||
enabled on;
|
||||
listen 8080;
|
||||
dir ./objs/nginx/html;
|
||||
}
|
||||
|
||||
stats {
|
||||
network 0;
|
||||
}
|
||||
|
||||
rtc_server {
|
||||
enabled on;
|
||||
listen 8000; # UDP port
|
||||
candidate *;
|
||||
}
|
||||
|
||||
vhost __defaultVhost__ {
|
||||
hls {
|
||||
enabled on;
|
||||
}
|
||||
|
||||
http_remux {
|
||||
enabled on;
|
||||
mount [vhost]/[app]/[stream].flv;
|
||||
}
|
||||
|
||||
rtc {
|
||||
enabled on;
|
||||
rtmp_to_rtc on;
|
||||
rtc_to_rtmp off;
|
||||
}
|
||||
|
||||
play {
|
||||
gop_cache_max_frames 2500;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user