diff options
author | Jordi Ortiz <nenjordi@gmail.com> | 2012-07-10 19:36:11 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-07-10 22:00:28 +0300 |
commit | a8ad6ffafe89e3a83f343f69249338e8245816f7 (patch) | |
tree | f44065d2b5f5974336a80b5f6b933cf067255838 /doc | |
parent | 6e71c1202bbdca0a95680e07507b39c55bb04f12 (diff) | |
download | ffmpeg-a8ad6ffafe89e3a83f343f69249338e8245816f7.tar.gz |
rtsp: Add listen mode
This makes the RTSP demuxer act as a server, listening for an
incoming connection.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/protocols.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/protocols.texi b/doc/protocols.texi index e75f10838a..943287aa9f 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -347,6 +347,8 @@ Flags for @code{rtsp_flags}: @table @option @item filter_src Accept packets only from negotiated peer address and port. +@item listen +Act as a server, listening for an incoming connection. @end table When receiving data over UDP, the demuxer tries to reorder received packets @@ -379,6 +381,12 @@ To send a stream in realtime to a RTSP server, for others to watch: avconv -re -i @var{input} -f rtsp -muxdelay 0.1 rtsp://server/live.sdp @end example +To receive a stream in realtime: + +@example +avconv -rtsp_flags listen -i rtsp://ownaddress/live.sdp @var{output} +@end example + @section sap Session Announcement Protocol (RFC 2974). This is not technically a |