diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-11-20 18:26:32 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-11-20 18:26:32 +0000 |
commit | 6891b9d458e49c3de6b87dfc48f54891629902b8 (patch) | |
tree | a5328d272ba89cd948e0527a97709118aadb8cf0 /doc | |
parent | 6edd6884b5a8380979649d80ccf3454684497f3b (diff) | |
download | ffmpeg-6891b9d458e49c3de6b87dfc48f54891629902b8.tar.gz |
added example to hack with SDP/multicast streaming
Originally committed as revision 1261 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ffserver.conf | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/doc/ffserver.conf b/doc/ffserver.conf index 3e03958591..29cf7800d8 100644 --- a/doc/ffserver.conf +++ b/doc/ffserver.conf @@ -329,7 +329,7 @@ StartSendOnKey # # rtsp://localhost:5454/test1-rtsp.mpg # -# A non standard redirector is also created. Its URL is: +# A non standard RTSP redirector is also created. Its URL is: # # http://localhost:8090/test1-rtsp.rtsp # @@ -341,6 +341,32 @@ StartSendOnKey #</Stream> ################################################################## +# SDP/multicast examples + +# If you want to send your stream in multicast, you must set the +# multicast address with MulticastAddress. The port and the TTL can +# also be set. +# +# An SDP file is automatically generated by ffserver by adding the +# 'sdp' extension to the stream name (here +# http://localhost:8090/test1-sdp.sdp). You should usually give this +# file to your player to play the stream. +# +# The 'NoLoop' option can be used to avoid looping when the stream is +# terminated. +# +#<Stream test1-sdp.mpg> +# +#Format rtp +#File "/usr/local/httpd/htdocs/test1.mpg" +#MulticastAddress 224.124.0.1 +#MulticastPort 5000 +#MulticastTTL 16 +#NoLoop +# +#</Stream> + +################################################################## # Special stream : server status <Stream stat.html> |