winlin

update wiki

@@ -117,6 +117,7 @@ cd simple-rtmp-server/trunk @@ -117,6 +117,7 @@ cd simple-rtmp-server/trunk
117 <strong>See also:</strong> 117 <strong>See also:</strong>
118 * Usage: How to delivery RTMP?([CN][v1_CN_SampleRTMP], [EN][v1_EN_SampleRTMP]) 118 * Usage: How to delivery RTMP?([CN][v1_CN_SampleRTMP], [EN][v1_EN_SampleRTMP])
119 * Usage: How to delivery HTTP FLV Live Streaming?([CN][v2_CN_SampleHttpFlv], [EN][v2_EN_SampleHttpFlv]) 119 * Usage: How to delivery HTTP FLV Live Streaming?([CN][v2_CN_SampleHttpFlv], [EN][v2_EN_SampleHttpFlv])
  120 +* Usage: How to delivery HTTP FLV Live Streaming Cluster?([CN][v2_CN_SampleHttpFlvCluster], [EN][v2_EN_SampleHttpFlvCluster])
120 * Usage: How to delivery HLS?([CN][v1_CN_SampleHLS], [EN][v1_EN_SampleHLS]) 121 * Usage: How to delivery HLS?([CN][v1_CN_SampleHLS], [EN][v1_EN_SampleHLS])
121 * Usage: How to delivery HLS for other codec?([CN][v1_CN_SampleTranscode2HLS], [EN][v1_EN_SampleTranscode2HLS]) 122 * Usage: How to delivery HLS for other codec?([CN][v1_CN_SampleTranscode2HLS], [EN][v1_EN_SampleTranscode2HLS])
122 * Usage: How to transode RTMP stream by SRS?([CN][v1_CN_SampleFFMPEG], [EN][v1_EN_SampleFFMPEG]) 123 * Usage: How to transode RTMP stream by SRS?([CN][v1_CN_SampleFFMPEG], [EN][v1_EN_SampleFFMPEG])
@@ -932,6 +933,8 @@ Winlin @@ -932,6 +933,8 @@ Winlin
932 [v2_EN_Streamer2]: https://github.com/simple-rtmp-server/srs/wiki/v2_EN_Streamer#push-http-flv-to-srs 933 [v2_EN_Streamer2]: https://github.com/simple-rtmp-server/srs/wiki/v2_EN_Streamer#push-http-flv-to-srs
933 [v2_CN_SampleHttpFlv]: https://github.com/simple-rtmp-server/srs/wiki/v2_CN_SampleHttpFlv 934 [v2_CN_SampleHttpFlv]: https://github.com/simple-rtmp-server/srs/wiki/v2_CN_SampleHttpFlv
934 [v2_EN_SampleHttpFlv]: https://github.com/simple-rtmp-server/srs/wiki/v2_EN_SampleHttpFlv 935 [v2_EN_SampleHttpFlv]: https://github.com/simple-rtmp-server/srs/wiki/v2_EN_SampleHttpFlv
  936 +[v2_CN_SampleHttpFlvCluster]: https://github.com/simple-rtmp-server/srs/wiki/v2_CN_SampleHttpFlvCluster
  937 +[v2_EN_SampleHttpFlvCluster]: https://github.com/simple-rtmp-server/srs/wiki/v2_EN_SampleHttpFlvCluster
935 938
936 [bug #213]: https://github.com/simple-rtmp-server/srs/issues/213 939 [bug #213]: https://github.com/simple-rtmp-server/srs/issues/213
937 [bug #194]: https://github.com/simple-rtmp-server/srs/issues/194 940 [bug #194]: https://github.com/simple-rtmp-server/srs/issues/194
  1 +# the config for srs to remux rtmp to flv live stream.
  2 +# @see https://github.com/simple-rtmp-server/srs/wiki/v2_CN_DeliveryHttpStream
  3 +# @see full.conf for detail config.
  4 +
1 listen 19351; 5 listen 19351;
2 max_connections 1000; 6 max_connections 1000;
3 pid objs/srs.flv.19351.pid; 7 pid objs/srs.flv.19351.pid;
  1 +# the config for srs to remux rtmp to flv live stream.
  2 +# @see https://github.com/simple-rtmp-server/srs/wiki/v2_CN_DeliveryHttpStream
  3 +# @see full.conf for detail config.
  4 +
1 listen 19352; 5 listen 19352;
2 max_connections 1000; 6 max_connections 1000;
3 pid objs/srs.flv.19352.pid; 7 pid objs/srs.flv.19352.pid;