winlin

add wiki Usage: Forward and Realtime

@@ -54,6 +54,7 @@ cd simple-rtmp-server/trunk @@ -54,6 +54,7 @@ cd simple-rtmp-server/trunk
54 [Usage: How to delivery HLS?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleHLS)<br/> 54 [Usage: How to delivery HLS?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleHLS)<br/>
55 [Usage: How to transcode RTMP stream by FFMPEG?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleFFMPEG)<br/> 55 [Usage: How to transcode RTMP stream by FFMPEG?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleFFMPEG)<br/>
56 [Usage: How to Forward stream?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleForward)<br/> 56 [Usage: How to Forward stream?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleForward)<br/>
  57 +[Usage: How to delivery low latency RTMP stream?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleRealtime)<br/>
57 [Usage: How to show the demo of SRS?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleDemo)<br/> 58 [Usage: How to show the demo of SRS?](https://github.com/winlinvip/simple-rtmp-server/wiki/SampleDemo)<br/>
58 59
59 ### Architecture 60 ### Architecture
  1 +listen 1935;
  2 +vhost __defaultVhost__ {
  3 + forward 127.0.0.1:19350;
  4 +}
  1 +listen 19350;
  2 +vhost __defaultVhost__ {
  3 +}
  1 +listen 1935;
  2 +vhost __defaultVhost__ {
  3 + gop_cache off;
  4 + queue_length 10;
  5 +}