mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
refine readme, confs
This commit is contained in:
parent
a0b747621e
commit
b52a051d80
12 changed files with 201 additions and 161 deletions
|
@ -1,3 +1,7 @@
|
|||
# the config for srs demo
|
||||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleDemo
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 19350;
|
||||
chunk_size 65000;
|
||||
vhost __defaultVhost__ {
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# the config for srs demo
|
||||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleDemo
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 1935;
|
||||
chunk_size 60000;
|
||||
log_dir ./objs/logs;
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# the config for srs use ffmpeg to transcode
|
||||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleFFMPEG
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 1935;
|
||||
vhost __defaultVhost__ {
|
||||
transcode {
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# the config for srs to forward
|
||||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleForward
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 1935;
|
||||
vhost __defaultVhost__ {
|
||||
forward 127.0.0.1:19350;
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# the config for srs to forward
|
||||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleForward
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 19350;
|
||||
vhost __defaultVhost__ {
|
||||
}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# all config for srs
|
||||
|
||||
# the listen ports, split by space.
|
||||
listen 1935;
|
||||
# the default chunk size is 128, max is 65536,
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# the config for srs to delivery hls
|
||||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleHLS
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 1935;
|
||||
vhost __defaultVhost__ {
|
||||
hls {
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# the config for srs to delivery realtime RTMP stream
|
||||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleRealtime
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 1935;
|
||||
vhost __defaultVhost__ {
|
||||
gop_cache off;
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# the config for srs to delivery RTMP
|
||||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleRTMP
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 1935;
|
||||
vhost __defaultVhost__ {
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
# main config for srs.
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 1935;
|
||||
# see full.conf for each config.
|
||||
vhost __defaultVhost__ {
|
||||
}
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# the config for srs to delivery hls
|
||||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleHLS
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 1935;
|
||||
vhost __defaultVhost__ {
|
||||
hls {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue