1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

add wiki Usage: Forward and Realtime

This commit is contained in:
winlin 2014-03-11 00:01:24 +08:00
parent a7df93c8ff
commit e6e32f963c
5 changed files with 13 additions and 0 deletions

View file

@ -54,6 +54,7 @@ cd simple-rtmp-server/trunk
[Usage: How to delivery HLS?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleHLS)<br/>
[Usage: How to transcode RTMP stream by FFMPEG?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleFFMPEG)<br/>
[Usage: How to Forward stream?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleForward)<br/>
[Usage: How to delivery low latency RTMP stream?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleRealtime)<br/>
[Usage: How to show the demo of SRS?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleDemo)<br/>
### Architecture

0
trunk/conf/ffmpeg.conf Executable file → Normal file
View file

View file

@ -0,0 +1,4 @@
listen 1935;
vhost __defaultVhost__ {
forward 127.0.0.1:19350;
}

View file

@ -0,0 +1,3 @@
listen 19350;
vhost __defaultVhost__ {
}

5
trunk/conf/realtime.conf Normal file
View file

@ -0,0 +1,5 @@
listen 1935;
vhost __defaultVhost__ {
gop_cache off;
queue_length 10;
}