winlin

for #250, add conf.

  1 +# push MPEG-TS over UDP to SRS.
  2 +# @see https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_Streamer#push-mpeg-ts-over-udp
  3 +# @see https://github.com/winlinvip/simple-rtmp-server/issues/250#issuecomment-72321769
  4 +# @see full.conf for detail config.
  5 +
  6 +listen 1935;
  7 +max_connections 1000;
  8 +stream_caster {
  9 + enabled on;
  10 + caster mpegts_over_udp;
  11 + output rtmp://127.0.0.1/live/livestream;
  12 + listen 1935;
  13 +}
  14 +vhost __defaultVhost__ {
  15 +}