doc/protocols.texi
1de4cfe6
 @chapter Protocols
 @c man begin PROTOCOLS
 
a6be21d3
 Protocols are configured elements in FFmpeg which allow to access
1de4cfe6
 resources which require the use of a particular protocol.
 
a6be21d3
 When you configure your FFmpeg build, all the supported protocols are
209e451a
 enabled by default. You can list all available ones using the
 configure option "--list-protocols".
1de4cfe6
 
 You can disable all the protocols using the configure option
 "--disable-protocols", and selectively enable a protocol using the
 option "--enable-protocol=@var{PROTOCOL}", or you can disable a
 particular protocol using the option
 "--disable-protocol=@var{PROTOCOL}".
 
 The option "-protocols" of the ff* tools will display the list of
209e451a
 supported protocols.
1de4cfe6
 
 A description of the currently available protocols follows.
 
23a5bf9d
 @section bluray
 
 Read BluRay playlist.
 
 The accepted options are:
 @table @option
 
 @item angle
 BluRay angle
 
 @item chapter
 Start chapter (1...N)
 
 @item playlist
 Playlist to read (BDMV/PLAYLIST/?????.mpls)
 
 @end table
 
 Examples:
 
 Read longest playlist from BluRay mounted to /mnt/bluray:
 @example
 bluray:/mnt/bluray
 @end example
 
 Read angle 2 of playlist 4 from BluRay mounted to /mnt/bluray, start from chapter 2:
 @example
 -playlist 4 -angle 2 -chapter 2 bluray:/mnt/bluray
 @end example
 
1de4cfe6
 @section concat
 
 Physical concatenation protocol.
 
209e451a
 Allow to read and seek from many resource in sequence as if they were
 a unique resource.
1de4cfe6
 
2d7b5f09
 A URL accepted by this protocol has the syntax:
1de4cfe6
 @example
 concat:@var{URL1}|@var{URL2}|...|@var{URLN}
 @end example
 
 where @var{URL1}, @var{URL2}, ..., @var{URLN} are the urls of the
 resource to be concatenated, each one possibly specifying a distinct
 protocol.
 
 For example to read a sequence of files @file{split1.mpeg},
dc7ad85c
 @file{split2.mpeg}, @file{split3.mpeg} with @command{ffplay} use the
1de4cfe6
 command:
 @example
 ffplay concat:split1.mpeg\|split2.mpeg\|split3.mpeg
 @end example
 
 Note that you may need to escape the character "|" which is special for
 many shells.
 
 @section file
 
 File access protocol.
 
 Allow to read from or read to a file.
 
c59b80c8
 For example to read from a file @file{input.mpeg} with @command{ffmpeg}
1de4cfe6
 use the command:
 @example
 ffmpeg -i file:input.mpeg output.mpeg
 @end example
 
209e451a
 The ff* tools default to the file protocol, that is a resource
 specified with the name "FILE.mpeg" is interpreted as the URL
 "file:FILE.mpeg".
1de4cfe6
 
 @section gopher
 
 Gopher protocol.
 
3975ca89
 @section hls
 
 Read Apple HTTP Live Streaming compliant segmented stream as
 a uniform one. The M3U8 playlists describing the segments can be
 remote HTTP resources or local files, accessed using the standard
 file protocol.
 The nested protocol is declared by specifying
 "+@var{proto}" after the hls URI scheme name, where @var{proto}
 is either "file" or "http".
 
 @example
 hls+http://host/path/to/remote/resource.m3u8
 hls+file://path/to/local/resource.m3u8
 @end example
 
9cb9c6c4
 Using this protocol is discouraged - the hls demuxer should work
 just as well (if not, please report the issues) and is more complete.
 To use the hls demuxer instead, simply use the direct URLs to the
 m3u8 files.
 
1de4cfe6
 @section http
 
209e451a
 HTTP (Hyper Text Transfer Protocol).
1de4cfe6
 
 @section mmst
 
 MMS (Microsoft Media Server) protocol over TCP.
 
f5ea69b2
 @section mmsh
 
 MMS (Microsoft Media Server) protocol over HTTP.
 
 The required syntax is:
 @example
 mmsh://@var{server}[:@var{port}][/@var{app}][/@var{playpath}]
 @end example
 
1de4cfe6
 @section md5
 
 MD5 output protocol.
 
209e451a
 Computes the MD5 hash of the data to be written, and on close writes
 this to the designated output or stdout if none is specified. It can
 be used to test muxers without writing an actual file.
1de4cfe6
 
 Some examples follow.
 @example
2d7b5f09
 # Write the MD5 hash of the encoded AVI file to the file output.avi.md5.
1de4cfe6
 ffmpeg -i input.flv -f avi -y md5:output.avi.md5
 
209e451a
 # Write the MD5 hash of the encoded AVI file to stdout.
1de4cfe6
 ffmpeg -i input.flv -f avi -y md5:
 @end example
 
209e451a
 Note that some formats (typically MOV) require the output protocol to
1de4cfe6
 be seekable, so they will fail with the MD5 output protocol.
 
 @section pipe
 
 UNIX pipe access protocol.
 
 Allow to read and write from UNIX pipes.
 
 The accepted syntax is:
 @example
 pipe:[@var{number}]
 @end example
 
 @var{number} is the number corresponding to the file descriptor of the
209e451a
 pipe (e.g. 0 for stdin, 1 for stdout, 2 for stderr).  If @var{number}
 is not specified, by default the stdout file descriptor will be used
 for writing, stdin for reading.
1de4cfe6
 
c59b80c8
 For example to read from stdin with @command{ffmpeg}:
1de4cfe6
 @example
 cat test.wav | ffmpeg -i pipe:0
209e451a
 # ...this is the same as...
1de4cfe6
 cat test.wav | ffmpeg -i pipe:
 @end example
 
c59b80c8
 For writing to stdout with @command{ffmpeg}:
1de4cfe6
 @example
 ffmpeg -i test.wav -f avi pipe:1 | cat > test.avi
209e451a
 # ...this is the same as...
1de4cfe6
 ffmpeg -i test.wav -f avi pipe: | cat > test.avi
 @end example
 
209e451a
 Note that some formats (typically MOV), require the output protocol to
1de4cfe6
 be seekable, so they will fail with the pipe output protocol.
 
 @section rtmp
 
 Real-Time Messaging Protocol.
 
da9cea77
 The Real-Time Messaging Protocol (RTMP) is used for streaming multimedia
 content across a TCP/IP network.
1de4cfe6
 
 The required syntax is:
 @example
c6eeb9b7
 rtmp://@var{server}[:@var{port}][/@var{app}][/@var{instance}][/@var{playpath}]
1de4cfe6
 @end example
 
209e451a
 The accepted parameters are:
1de4cfe6
 @table @option
 
 @item server
209e451a
 The address of the RTMP server.
1de4cfe6
 
 @item port
209e451a
 The number of the TCP port to use (by default is 1935).
1de4cfe6
 
 @item app
209e451a
 It is the name of the application to access. It usually corresponds to
 the path where the application is installed on the RTMP server
b4c92e94
 (e.g. @file{/ondemand/}, @file{/flash/live/}, etc.). You can override
 the value parsed from the URI through the @code{rtmp_app} option, too.
1de4cfe6
 
 @item playpath
 It is the path or name of the resource to play with reference to the
b4c92e94
 application specified in @var{app}, may be prefixed by "mp4:". You
 can override the value parsed from the URI through the @code{rtmp_playpath}
 option, too.
 
e5f2731c
 @item listen
 Act as a server, listening for an incoming connection.
 
 @item timeout
 Maximum time to wait for the incoming connection. Implies listen.
b4c92e94
 @end table
 
 Additionally, the following parameters can be set via command line options
 (or in code via @code{AVOption}s):
 @table @option
 
 @item rtmp_app
 Name of application to connect on the RTMP server. This option
 overrides the parameter specified in the URI.
 
8517e9c4
 @item rtmp_buffer
 Set the client buffer time in milliseconds. The default is 3000.
 
8ee3e187
 @item rtmp_conn
 Extra arbitrary AMF connection parameters, parsed from a string,
 e.g. like @code{B:1 S:authMe O:1 NN:code:1.23 NS:flag:ok O:0}.
 Each value is prefixed by a single character denoting the type,
 B for Boolean, N for number, S for string, O for object, or Z for null,
 followed by a colon. For Booleans the data must be either 0 or 1 for
 FALSE or TRUE, respectively.  Likewise for Objects the data must be 0 or
 1 to end or begin an object, respectively. Data items in subobjects may
 be named, by prefixing the type with 'N' and specifying the name before
 the value (i.e. @code{NB:myFlag:1}). This option may be used multiple
 times to construct arbitrary AMF sequences.
 
b4c92e94
 @item rtmp_flashver
 Version of the Flash plugin used to run the SWF player. The default
 is LNX 9,0,124,2.
 
46743a85
 @item rtmp_flush_interval
 Number of packets flushed in the same request (RTMPT only). The default
 is 10.
 
b4c92e94
 @item rtmp_live
 Specify that the media is a live stream. No resuming or seeking in
 live streams is possible. The default value is @code{any}, which means the
 subscriber first tries to play the live stream specified in the
 playpath. If a live stream of that name is not found, it plays the
 recorded stream. The other possible values are @code{live} and
 @code{recorded}.
 
758377a2
 @item rtmp_pageurl
 URL of the web page in which the media was embedded. By default no
 value will be sent.
 
b4c92e94
 @item rtmp_playpath
 Stream identifier to play or to publish. This option overrides the
 parameter specified in the URI.
 
00cb52c6
 @item rtmp_subscribe
 Name of live stream to subscribe to. By default no value will be sent.
 It is only sent if the option is specified or if rtmp_live
 is set to live.
 
635ac8e1
 @item rtmp_swfhash
 SHA256 hash of the decompressed SWF file (32 bytes).
 
 @item rtmp_swfsize
 Size of the decompressed SWF file, required for SWFVerification.
 
b4c92e94
 @item rtmp_swfurl
 URL of the SWF player for the media. By default no value will be sent.
 
93f257db
 @item rtmp_swfverify
 URL to player swf file, compute hash/size automatically.
 
b4c92e94
 @item rtmp_tcurl
98df48db
 URL of the target stream. Defaults to proto://host[:port]/app.
1de4cfe6
 
 @end table
 
dc7ad85c
 For example to read with @command{ffplay} a multimedia resource named
1de4cfe6
 "sample" from the application "vod" from an RTMP server "myserver":
 @example
 ffplay rtmp://myserver/vod/sample
 @end example
 
acd554c1
 @section rtmpe
 
 Encrypted Real-Time Messaging Protocol.
 
 The Encrypted Real-Time Messaging Protocol (RTMPE) is used for
 streaming multimedia content within standard cryptographic primitives,
 consisting of Diffie-Hellman key exchange and HMACSHA256, generating
 a pair of RC4 keys.
 
6aedabc9
 @section rtmps
 
 Real-Time Messaging Protocol over a secure SSL connection.
 
 The Real-Time Messaging Protocol (RTMPS) is used for streaming
 multimedia content across an encrypted connection.
 
8e50c57d
 @section rtmpt
 
 Real-Time Messaging Protocol tunneled through HTTP.
 
 The Real-Time Messaging Protocol tunneled through HTTP (RTMPT) is used
 for streaming multimedia content within HTTP requests to traverse
 firewalls.
 
08cd95e8
 @section rtmpte
 
 Encrypted Real-Time Messaging Protocol tunneled through HTTP.
 
 The Encrypted Real-Time Messaging Protocol tunneled through HTTP (RTMPTE)
 is used for streaming multimedia content within HTTP requests to traverse
 firewalls.
 
86991ce2
 @section rtmpts
 
 Real-Time Messaging Protocol tunneled through HTTPS.
 
 The Real-Time Messaging Protocol tunneled through HTTPS (RTMPTS) is used
 for streaming multimedia content within HTTPS requests to traverse
 firewalls.
 
1de4cfe6
 @section rtmp, rtmpe, rtmps, rtmpt, rtmpte
 
 Real-Time Messaging Protocol and its variants supported through
 librtmp.
 
209e451a
 Requires the presence of the librtmp headers and library during
551b9eb9
 configuration. You need to explicitly configure the build with
1de4cfe6
 "--enable-librtmp". If enabled this will replace the native RTMP
 protocol.
 
 This protocol provides most client functions and a few server
 functions needed to support RTMP, RTMP tunneled in HTTP (RTMPT),
 encrypted RTMP (RTMPE), RTMP over SSL/TLS (RTMPS) and tunneled
 variants of these encrypted types (RTMPTE, RTMPTS).
 
 The required syntax is:
 @example
 @var{rtmp_proto}://@var{server}[:@var{port}][/@var{app}][/@var{playpath}] @var{options}
 @end example
 
 where @var{rtmp_proto} is one of the strings "rtmp", "rtmpt", "rtmpe",
 "rtmps", "rtmpte", "rtmpts" corresponding to each RTMP variant, and
 @var{server}, @var{port}, @var{app} and @var{playpath} have the same
209e451a
 meaning as specified for the RTMP native protocol.
1de4cfe6
 @var{options} contains a list of space-separated options of the form
 @var{key}=@var{val}.
 
209e451a
 See the librtmp manual page (man 3 librtmp) for more information.
1de4cfe6
 
 For example, to stream a file in real-time to an RTMP server using
c59b80c8
 @command{ffmpeg}:
1de4cfe6
 @example
 ffmpeg -re -i myfile -f flv rtmp://myserver/live/mystream
 @end example
 
dc7ad85c
 To play the same stream using @command{ffplay}:
1de4cfe6
 @example
 ffplay "rtmp://myserver/live/mystream live=1"
 @end example
 
 @section rtp
 
 Real-Time Protocol.
 
92c5052d
 @section rtsp
 
 RTSP is not technically a protocol handler in libavformat, it is a demuxer
 and muxer. The demuxer supports both normal RTSP (with data transferred
 over RTP; this is used by e.g. Apple and Microsoft) and Real-RTSP (with
 data transferred over RDT).
 
 The muxer can be used to send a stream using RTSP ANNOUNCE to a server
 supporting it (currently Darwin Streaming Server and Mischa Spiegelmock's
2cb6dec6
 @uref{http://github.com/revmischa/rtsp-server, RTSP server}).
92c5052d
 
 The required syntax for a RTSP url is:
 @example
02a1a28c
 rtsp://@var{hostname}[:@var{port}]/@var{path}
92c5052d
 @end example
 
dc7ad85c
 The following options (set on the @command{ffmpeg}/@command{ffplay} command
02a1a28c
 line, or set in code via @code{AVOption}s or in @code{avformat_open_input}),
92c5052d
 are supported:
 
02a1a28c
 Flags for @code{rtsp_transport}:
 
92c5052d
 @table @option
 
 @item udp
 Use UDP as lower transport protocol.
 
 @item tcp
 Use TCP (interleaving within the RTSP control channel) as lower
 transport protocol.
 
02a1a28c
 @item udp_multicast
92c5052d
 Use UDP multicast as lower transport protocol.
 
 @item http
 Use HTTP tunneling as lower transport protocol, which is useful for
 passing proxies.
 @end table
 
 Multiple lower transport protocols may be specified, in that case they are
 tried one at a time (if the setup of one fails, the next one is tried).
 For the muxer, only the @code{tcp} and @code{udp} options are supported.
 
02a1a28c
 Flags for @code{rtsp_flags}:
 
 @table @option
 @item filter_src
 Accept packets only from negotiated peer address and port.
a8ad6ffa
 @item listen
 Act as a server, listening for an incoming connection.
02a1a28c
 @end table
 
92c5052d
 When receiving data over UDP, the demuxer tries to reorder received packets
ccfa8aa2
 (since they may arrive out of order, or packets may get lost totally). This
 can be disabled by setting the maximum demuxing delay to zero (via
 the @code{max_delay} field of AVFormatContext).
92c5052d
 
dc7ad85c
 When watching multi-bitrate Real-RTSP streams with @command{ffplay}, the
92c5052d
 streams to display can be chosen with @code{-vst} @var{n} and
 @code{-ast} @var{n} for video and audio respectively, and can be switched
 on the fly by pressing @code{v} and @code{a}.
 
 Example command lines:
 
 To watch a stream over UDP, with a max reordering delay of 0.5 seconds:
 
 @example
fae714a9
 ffplay -max_delay 500000 -rtsp_transport udp rtsp://server/video.mp4
92c5052d
 @end example
 
 To watch a stream tunneled over HTTP:
 
 @example
fae714a9
 ffplay -rtsp_transport http rtsp://server/video.mp4
92c5052d
 @end example
 
 To send a stream in realtime to a RTSP server, for others to watch:
 
 @example
 ffmpeg -re -i @var{input} -f rtsp -muxdelay 0.1 rtsp://server/live.sdp
 @end example
 
a8ad6ffa
 To receive a stream in realtime:
 
 @example
ff2fda57
 ffmpeg -rtsp_flags listen -i rtsp://ownaddress/live.sdp @var{output}
a8ad6ffa
 @end example
 
61c089a8
 @section sap
 
 Session Announcement Protocol (RFC 2974). This is not technically a
01c8d258
 protocol handler in libavformat, it is a muxer and demuxer.
61c089a8
 It is used for signalling of RTP streams, by announcing the SDP for the
 streams regularly on a separate port.
 
01c8d258
 @subsection Muxer
 
61c089a8
 The syntax for a SAP url given to the muxer is:
 @example
 sap://@var{destination}[:@var{port}][?@var{options}]
 @end example
 
 The RTP packets are sent to @var{destination} on port @var{port},
 or to port 5004 if no port is specified.
 @var{options} is a @code{&}-separated list. The following options
 are supported:
 
 @table @option
 
 @item announce_addr=@var{address}
 Specify the destination IP address for sending the announcements to.
 If omitted, the announcements are sent to the commonly used SAP
 announcement multicast address 224.2.127.254 (sap.mcast.net), or
 ff0e::2:7ffe if @var{destination} is an IPv6 address.
 
 @item announce_port=@var{port}
 Specify the port to send the announcements on, defaults to
 9875 if not specified.
 
 @item ttl=@var{ttl}
 Specify the time to live value for the announcements and RTP packets,
 defaults to 255.
 
 @item same_port=@var{0|1}
 If set to 1, send all RTP streams on the same port pair. If zero (the
 default), all streams are sent on unique ports, with each stream on a
 port 2 numbers higher than the previous.
 VLC/Live555 requires this to be set to 1, to be able to receive the stream.
01c8d258
 The RTP stack in libavformat for receiving requires all streams to be sent
 on unique ports.
61c089a8
 @end table
 
 Example command lines follow.
 
 To broadcast a stream on the local subnet, for watching in VLC:
 
 @example
 ffmpeg -re -i @var{input} -f sap sap://224.0.0.255?same_port=1
 @end example
 
dc7ad85c
 Similarly, for watching in @command{ffplay}:
01c8d258
 
 @example
 ffmpeg -re -i @var{input} -f sap sap://224.0.0.255
 @end example
 
dc7ad85c
 And for watching in @command{ffplay}, over IPv6:
01c8d258
 
 @example
 ffmpeg -re -i @var{input} -f sap sap://[ff0e::1:2:3:4]
 @end example
 
 @subsection Demuxer
 
 The syntax for a SAP url given to the demuxer is:
 @example
 sap://[@var{address}][:@var{port}]
 @end example
 
 @var{address} is the multicast address to listen for announcements on,
 if omitted, the default 224.2.127.254 (sap.mcast.net) is used. @var{port}
 is the port that is listened on, 9875 if omitted.
 
 The demuxers listens for announcements on the given address and port.
 Once an announcement is received, it tries to receive that particular stream.
 
 Example command lines follow.
 
 To play back the first stream announced on the normal SAP multicast address:
 
 @example
 ffplay sap://
 @end example
 
 To play back the first stream announced on one the default IPv6 SAP multicast address:
 
 @example
 ffplay sap://[ff0e::2:7ffe]
 @end example
 
1de4cfe6
 @section tcp
 
 Trasmission Control Protocol.
 
3d42d493
 The required syntax for a TCP url is:
 @example
 tcp://@var{hostname}:@var{port}[?@var{options}]
 @end example
 
 @table @option
 
 @item listen
 Listen for an incoming connection
 
aa7c88df
 @item timeout=@var{microseconds}
 In read mode: if no data arrived in more than this time interval, raise error.
 In write mode: if socket cannot be written in more than this time interval, raise error.
 This also sets timeout on TCP connection establishing.
 
3d42d493
 @example
 ffmpeg -i @var{input} -f @var{format} tcp://@var{hostname}:@var{port}?listen
 ffplay tcp://@var{hostname}:@var{port}
 @end example
 
 @end table
 
a8fb7690
 @section tls
 
 Transport Layer Security/Secure Sockets Layer
 
 The required syntax for a TLS/SSL url is:
 @example
 tls://@var{hostname}:@var{port}[?@var{options}]
 @end example
 
 @table @option
 
 @item listen
 Act as a server, listening for an incoming connection.
 
 @item cafile=@var{filename}
 Certificate authority file. The file must be in OpenSSL PEM format.
 
 @item cert=@var{filename}
 Certificate file. The file must be in OpenSSL PEM format.
 
 @item key=@var{filename}
 Private key file.
 
 @item verify=@var{0|1}
 Verify the peer's certificate.
 
 @end table
 
 Example command lines:
 
 To create a TLS/SSL server that serves an input stream.
 
 @example
 ffmpeg -i @var{input} -f @var{format} tls://@var{hostname}:@var{port}?listen&cert=@var{server.crt}&key=@var{server.key}
 @end example
 
 To play back a stream from the TLS/SSL server using @command{ffplay}:
 
 @example
 ffplay tls://@var{hostname}:@var{port}
 @end example
 
1de4cfe6
 @section udp
 
 User Datagram Protocol.
 
0fb226b3
 The required syntax for a UDP url is:
 @example
 udp://@var{hostname}:@var{port}[?@var{options}]
 @end example
 
6b80f758
 @var{options} contains a list of &-separated options of the form @var{key}=@var{val}.
 
e1422940
 In case threading is enabled on the system, a circular buffer is used
 to store the incoming data, which allows to reduce loss of data due to
 UDP socket buffer overruns. The @var{fifo_size} and
 @var{overrun_nonfatal} options are related to this buffer.
 
6b80f758
 The list of supported options follows.
0fb226b3
 
 @table @option
 
 @item buffer_size=@var{size}
dd13da67
 Set the UDP socket buffer size in bytes. This is used both for the
 receiving and the sending buffer size.
0fb226b3
 
 @item localport=@var{port}
6b80f758
 Override the local UDP port to bind with.
0fb226b3
 
65ac5137
 @item localaddr=@var{addr}
 Choose the local IP address. This is useful e.g. if sending multicast
 and the host has multiple interfaces, where the user can choose
 which interface to send on by specifying the IP address of that interface.
 
0fb226b3
 @item pkt_size=@var{size}
6b80f758
 Set the size in bytes of UDP packets.
0fb226b3
 
 @item reuse=@var{1|0}
6b80f758
 Explicitly allow or disallow reusing UDP sockets.
0fb226b3
 
 @item ttl=@var{ttl}
6b80f758
 Set the time to live value (for multicast only).
f6833fc1
 
 @item connect=@var{1|0}
 Initialize the UDP socket with @code{connect()}. In this case, the
4ec153bb
 destination address can't be changed with ff_udp_set_remote_url later.
21a569f3
 If the destination address isn't known at the start, this option can
4ec153bb
 be specified in ff_udp_set_remote_url, too.
f6833fc1
 This allows finding out the source address for the packets with getsockname,
 and makes writes return with AVERROR(ECONNREFUSED) if "destination
 unreachable" is received.
21a569f3
 For receiving, this gives the benefit of only receiving packets from
 the specified peer address/port.
75d339e0
 
 @item sources=@var{address}[,@var{address}]
 Only receive packets sent to the multicast group from one of the
 specified sender IP addresses.
 
 @item block=@var{address}[,@var{address}]
 Ignore packets sent to the multicast group from the specified
 sender IP addresses.
469b9ce8
 
 @item fifo_size=@var{units}
 Set the UDP receiving circular buffer size, expressed as a number of
 packets with size of 188 bytes. If not specified defaults to 7*4096.
 
 @item overrun_nonfatal=@var{1|0}
 Survive in case of UDP receiving circular buffer overrun. Default
 value is 0.
028b6d2b
 
 @item timeout=@var{microseconds}
 In read mode: if no data arrived in more than this time interval, raise error.
0fb226b3
 @end table
 
6b80f758
 Some usage examples of the UDP protocol with @command{ffmpeg} follow.
0fb226b3
 
 To stream over UDP to a remote endpoint:
 @example
 ffmpeg -i @var{input} -f @var{format} udp://@var{hostname}:@var{port}
 @end example
 
 To stream in mpegts format over UDP using 188 sized UDP packets, using a large input buffer:
 @example
 ffmpeg -i @var{input} -f mpegts udp://@var{hostname}:@var{port}?pkt_size=188&buffer_size=65535
 @end example
 
 To receive over UDP from a remote endpoint:
 @example
 ffmpeg -i udp://[@var{multicast-address}]:@var{port}
 @end example
 
1de4cfe6
 @c man end PROTOCOLS