4 Protocols are configured elements in FFmpeg that enable access to
5 resources that require specific protocols.
7 When you configure your FFmpeg build, all the supported protocols are
8 enabled by default. You can list all available ones using the
9 configure option "--list-protocols".
11 You can disable all the protocols using the configure option
12 "--disable-protocols", and selectively enable a protocol using the
13 option "--enable-protocol=@var{PROTOCOL}", or you can disable a
14 particular protocol using the option
15 "--disable-protocol=@var{PROTOCOL}".
17 The option "-protocols" of the ff* tools will display the list of
20 A description of the currently available protocols follows.
26 The accepted options are:
36 Playlist to read (BDMV/PLAYLIST/?????.mpls)
42 Read longest playlist from BluRay mounted to /mnt/bluray:
47 Read angle 2 of playlist 4 from BluRay mounted to /mnt/bluray, start from chapter 2:
49 -playlist 4 -angle 2 -chapter 2 bluray:/mnt/bluray
54 Caching wrapper for input stream.
56 Cache the input stream to temporary file. It brings seeking capability to live streams.
64 Physical concatenation protocol.
66 Allow to read and seek from many resource in sequence as if they were
69 A URL accepted by this protocol has the syntax:
71 concat:@var{URL1}|@var{URL2}|...|@var{URLN}
74 where @var{URL1}, @var{URL2}, ..., @var{URLN} are the urls of the
75 resource to be concatenated, each one possibly specifying a distinct
78 For example to read a sequence of files @file{split1.mpeg},
79 @file{split2.mpeg}, @file{split3.mpeg} with @command{ffplay} use the
82 ffplay concat:split1.mpeg\|split2.mpeg\|split3.mpeg
85 Note that you may need to escape the character "|" which is special for
90 AES-encrypted stream reading protocol.
92 The accepted options are:
95 Set the AES decryption key binary block from given hexadecimal representation.
98 Set the AES decryption initialization vector binary block from given hexadecimal representation.
101 Accepted URL formats:
109 Data in-line in the URI. See @url{http://en.wikipedia.org/wiki/Data_URI_scheme}.
111 For example, to convert a GIF file given inline with @command{ffmpeg}:
113 ffmpeg -i "data:image/gif;base64,R0lGODdhCAAIAMIEAAAAAAAA//8AAP//AP///////////////ywAAAAACAAIAAADF0gEDLojDgdGiJdJqUX02iB4E8Q9jUMkADs=" smiley.png
118 File access protocol.
120 Allow to read from or write to a file.
122 A file URL can have the form:
127 where @var{filename} is the path of the file to read.
129 An URL that does not have a protocol prefix will be assumed to be a
130 file URL. Depending on the build, an URL that looks like a Windows
131 path with the drive letter at the beginning will also be assumed to be
132 a file URL (usually not the case in builds for unix-like systems).
134 For example to read from a file @file{input.mpeg} with @command{ffmpeg}
137 ffmpeg -i file:input.mpeg output.mpeg
140 This protocol accepts the following options:
144 Truncate existing files on write, if set to 1. A value of 0 prevents
145 truncating. Default value is 1.
148 Set I/O operation maximum block size, in bytes. Default value is
149 @code{INT_MAX}, which results in not limiting the requested block size.
150 Setting this value reasonably low improves user termination request reaction
151 time, which is valuable for files on slow medium.
156 FTP (File Transfer Protocol).
158 Allow to read from or write to remote resources using FTP protocol.
160 Following syntax is required.
162 ftp://[user[:password]@@]server[:port]/path/to/remote/resource.mpeg
165 This protocol accepts the following options.
169 Set timeout in microseconds of socket I/O operations used by the underlying low level
170 operation. By default it is set to -1, which means that the timeout is
173 @item ftp-anonymous-password
174 Password used when login as anonymous user. Typically an e-mail address
177 @item ftp-write-seekable
178 Control seekability of connection during encoding. If set to 1 the
179 resource is supposed to be seekable, if set to 0 it is assumed not
180 to be seekable. Default value is 0.
183 NOTE: Protocol can be used as output, but it is recommended to not do
184 it, unless special care is taken (tests, customized server configuration
185 etc.). Different FTP servers behave in different way during seek
186 operation. ff* tools may produce incomplete content due to server limitations.
194 Read Apple HTTP Live Streaming compliant segmented stream as
195 a uniform one. The M3U8 playlists describing the segments can be
196 remote HTTP resources or local files, accessed using the standard
198 The nested protocol is declared by specifying
199 "+@var{proto}" after the hls URI scheme name, where @var{proto}
200 is either "file" or "http".
203 hls+http://host/path/to/remote/resource.m3u8
204 hls+file://path/to/local/resource.m3u8
207 Using this protocol is discouraged - the hls demuxer should work
208 just as well (if not, please report the issues) and is more complete.
209 To use the hls demuxer instead, simply use the direct URLs to the
214 HTTP (Hyper Text Transfer Protocol).
216 This protocol accepts the following options:
220 Control seekability of connection. If set to 1 the resource is
221 supposed to be seekable, if set to 0 it is assumed not to be seekable,
222 if set to -1 it will try to autodetect if it is seekable. Default
226 If set to 1 use chunked Transfer-Encoding for posts, default is 1.
229 Set a specific content type for the POST messages.
232 Set custom HTTP headers, can override built in default headers. The
233 value must be a string encoding the headers.
235 @item multiple_requests
236 Use persistent connections if set to 1, default is 0.
239 Set custom HTTP post data.
243 Override the User-Agent header. If not specified the protocol will use a
244 string describing the libavformat build. ("Lavf/<version>")
247 Set timeout in microseconds of socket I/O operations used by the underlying low level
248 operation. By default it is set to -1, which means that the timeout is
252 Export the MIME type.
255 If set to 1 request ICY (SHOUTcast) metadata from the server. If the server
256 supports this, the metadata has to be retrieved by the application by reading
257 the @option{icy_metadata_headers} and @option{icy_metadata_packet} options.
260 @item icy_metadata_headers
261 If the server supports ICY metadata, this contains the ICY-specific HTTP reply
262 headers, separated by newline characters.
264 @item icy_metadata_packet
265 If the server supports ICY metadata, and @option{icy} was set to 1, this
266 contains the last non-empty metadata packet sent by the server. It should be
267 polled in regular intervals by applications interested in mid-stream metadata
271 Set the cookies to be sent in future requests. The format of each cookie is the
272 same as the value of a Set-Cookie HTTP response field. Multiple cookies can be
273 delimited by a newline character.
276 Set initial byte offset.
279 Try to limit the request to bytes preceding this offset.
282 @subsection HTTP Cookies
284 Some HTTP requests will be denied unless cookie values are passed in with the
285 request. The @option{cookies} option allows these cookies to be specified. At
286 the very least, each cookie must specify a value along with a path and domain.
287 HTTP requests that match both the domain and path will automatically include the
288 cookie value in the HTTP Cookie header field. Multiple cookies can be delimited
291 The required syntax to play a stream specifying a cookie is:
293 ffplay -cookies "nlqptid=nltid=tsn; path=/; domain=somedomain.com;" http://somedomain.com/somestream.m3u8
298 Icecast protocol (stream to Icecast servers)
300 This protocol accepts the following options:
304 Set the stream genre.
309 @item ice_description
310 Set the stream description.
313 Set the stream website URL.
316 Set if the stream should be public.
317 The default is 0 (not public).
320 Override the User-Agent header. If not specified a string of the form
321 "Lavf/<version>" will be used.
324 Set the Icecast mountpoint password.
327 Set the stream content type. This must be set if it is different from
331 This enables support for Icecast versions < 2.4.0, that do not support the
332 HTTP PUT method but the SOURCE method.
337 icecast://[@var{username}[:@var{password}]@@]@var{server}:@var{port}/@var{mountpoint}
342 MMS (Microsoft Media Server) protocol over TCP.
346 MMS (Microsoft Media Server) protocol over HTTP.
348 The required syntax is:
350 mmsh://@var{server}[:@var{port}][/@var{app}][/@var{playpath}]
357 Computes the MD5 hash of the data to be written, and on close writes
358 this to the designated output or stdout if none is specified. It can
359 be used to test muxers without writing an actual file.
361 Some examples follow.
363 # Write the MD5 hash of the encoded AVI file to the file output.avi.md5.
364 ffmpeg -i input.flv -f avi -y md5:output.avi.md5
366 # Write the MD5 hash of the encoded AVI file to stdout.
367 ffmpeg -i input.flv -f avi -y md5:
370 Note that some formats (typically MOV) require the output protocol to
371 be seekable, so they will fail with the MD5 output protocol.
375 UNIX pipe access protocol.
377 Allow to read and write from UNIX pipes.
379 The accepted syntax is:
384 @var{number} is the number corresponding to the file descriptor of the
385 pipe (e.g. 0 for stdin, 1 for stdout, 2 for stderr). If @var{number}
386 is not specified, by default the stdout file descriptor will be used
387 for writing, stdin for reading.
389 For example to read from stdin with @command{ffmpeg}:
391 cat test.wav | ffmpeg -i pipe:0
392 # ...this is the same as...
393 cat test.wav | ffmpeg -i pipe:
396 For writing to stdout with @command{ffmpeg}:
398 ffmpeg -i test.wav -f avi pipe:1 | cat > test.avi
399 # ...this is the same as...
400 ffmpeg -i test.wav -f avi pipe: | cat > test.avi
403 This protocol accepts the following options:
407 Set I/O operation maximum block size, in bytes. Default value is
408 @code{INT_MAX}, which results in not limiting the requested block size.
409 Setting this value reasonably low improves user termination request reaction
410 time, which is valuable if data transmission is slow.
413 Note that some formats (typically MOV), require the output protocol to
414 be seekable, so they will fail with the pipe output protocol.
418 Real-Time Messaging Protocol.
420 The Real-Time Messaging Protocol (RTMP) is used for streaming multimedia
421 content across a TCP/IP network.
423 The required syntax is:
425 rtmp://[@var{username}:@var{password}@@]@var{server}[:@var{port}][/@var{app}][/@var{instance}][/@var{playpath}]
428 The accepted parameters are:
432 An optional username (mostly for publishing).
435 An optional password (mostly for publishing).
438 The address of the RTMP server.
441 The number of the TCP port to use (by default is 1935).
444 It is the name of the application to access. It usually corresponds to
445 the path where the application is installed on the RTMP server
446 (e.g. @file{/ondemand/}, @file{/flash/live/}, etc.). You can override
447 the value parsed from the URI through the @code{rtmp_app} option, too.
450 It is the path or name of the resource to play with reference to the
451 application specified in @var{app}, may be prefixed by "mp4:". You
452 can override the value parsed from the URI through the @code{rtmp_playpath}
456 Act as a server, listening for an incoming connection.
459 Maximum time to wait for the incoming connection. Implies listen.
462 Additionally, the following parameters can be set via command line options
463 (or in code via @code{AVOption}s):
467 Name of application to connect on the RTMP server. This option
468 overrides the parameter specified in the URI.
471 Set the client buffer time in milliseconds. The default is 3000.
474 Extra arbitrary AMF connection parameters, parsed from a string,
475 e.g. like @code{B:1 S:authMe O:1 NN:code:1.23 NS:flag:ok O:0}.
476 Each value is prefixed by a single character denoting the type,
477 B for Boolean, N for number, S for string, O for object, or Z for null,
478 followed by a colon. For Booleans the data must be either 0 or 1 for
479 FALSE or TRUE, respectively. Likewise for Objects the data must be 0 or
480 1 to end or begin an object, respectively. Data items in subobjects may
481 be named, by prefixing the type with 'N' and specifying the name before
482 the value (i.e. @code{NB:myFlag:1}). This option may be used multiple
483 times to construct arbitrary AMF sequences.
486 Version of the Flash plugin used to run the SWF player. The default
487 is LNX 9,0,124,2. (When publishing, the default is FMLE/3.0 (compatible;
488 <libavformat version>).)
490 @item rtmp_flush_interval
491 Number of packets flushed in the same request (RTMPT only). The default
495 Specify that the media is a live stream. No resuming or seeking in
496 live streams is possible. The default value is @code{any}, which means the
497 subscriber first tries to play the live stream specified in the
498 playpath. If a live stream of that name is not found, it plays the
499 recorded stream. The other possible values are @code{live} and
503 URL of the web page in which the media was embedded. By default no
507 Stream identifier to play or to publish. This option overrides the
508 parameter specified in the URI.
511 Name of live stream to subscribe to. By default no value will be sent.
512 It is only sent if the option is specified or if rtmp_live
516 SHA256 hash of the decompressed SWF file (32 bytes).
519 Size of the decompressed SWF file, required for SWFVerification.
522 URL of the SWF player for the media. By default no value will be sent.
525 URL to player swf file, compute hash/size automatically.
528 URL of the target stream. Defaults to proto://host[:port]/app.
532 For example to read with @command{ffplay} a multimedia resource named
533 "sample" from the application "vod" from an RTMP server "myserver":
535 ffplay rtmp://myserver/vod/sample
538 To publish to a password protected server, passing the playpath and
539 app names separately:
541 ffmpeg -re -i <input> -f flv -rtmp_playpath some/long/path -rtmp_app long/app/name rtmp://username:password@@myserver/
546 Encrypted Real-Time Messaging Protocol.
548 The Encrypted Real-Time Messaging Protocol (RTMPE) is used for
549 streaming multimedia content within standard cryptographic primitives,
550 consisting of Diffie-Hellman key exchange and HMACSHA256, generating
555 Real-Time Messaging Protocol over a secure SSL connection.
557 The Real-Time Messaging Protocol (RTMPS) is used for streaming
558 multimedia content across an encrypted connection.
562 Real-Time Messaging Protocol tunneled through HTTP.
564 The Real-Time Messaging Protocol tunneled through HTTP (RTMPT) is used
565 for streaming multimedia content within HTTP requests to traverse
570 Encrypted Real-Time Messaging Protocol tunneled through HTTP.
572 The Encrypted Real-Time Messaging Protocol tunneled through HTTP (RTMPTE)
573 is used for streaming multimedia content within HTTP requests to traverse
578 Real-Time Messaging Protocol tunneled through HTTPS.
580 The Real-Time Messaging Protocol tunneled through HTTPS (RTMPTS) is used
581 for streaming multimedia content within HTTPS requests to traverse
584 @section libsmbclient
586 libsmbclient permits one to manipulate CIFS/SMB network resources.
588 Following syntax is required.
591 smb://[[domain:]user[:password@@]]server[/share[/path[/file]]]
594 This protocol accepts the following options.
598 Set timeout in miliseconds of socket I/O operations used by the underlying
599 low level operation. By default it is set to -1, which means that the timeout
603 Truncate existing files on write, if set to 1. A value of 0 prevents
604 truncating. Default value is 1.
607 Set the workgroup used for making connections. By default workgroup is not specified.
611 For more information see: @url{http://www.samba.org/}.
615 Secure File Transfer Protocol via libssh
617 Allow to read from or write to remote resources using SFTP protocol.
619 Following syntax is required.
622 sftp://[user[:password]@@]server[:port]/path/to/remote/resource.mpeg
625 This protocol accepts the following options.
629 Set timeout of socket I/O operations used by the underlying low level
630 operation. By default it is set to -1, which means that the timeout
634 Truncate existing files on write, if set to 1. A value of 0 prevents
635 truncating. Default value is 1.
638 Specify the path of the file containing private key to use during authorization.
639 By default libssh searches for keys in the @file{~/.ssh/} directory.
643 Example: Play a file stored on remote server.
646 ffplay sftp://user:password@@server_address:22/home/user/resource.mpeg
649 @section librtmp rtmp, rtmpe, rtmps, rtmpt, rtmpte
651 Real-Time Messaging Protocol and its variants supported through
654 Requires the presence of the librtmp headers and library during
655 configuration. You need to explicitly configure the build with
656 "--enable-librtmp". If enabled this will replace the native RTMP
659 This protocol provides most client functions and a few server
660 functions needed to support RTMP, RTMP tunneled in HTTP (RTMPT),
661 encrypted RTMP (RTMPE), RTMP over SSL/TLS (RTMPS) and tunneled
662 variants of these encrypted types (RTMPTE, RTMPTS).
664 The required syntax is:
666 @var{rtmp_proto}://@var{server}[:@var{port}][/@var{app}][/@var{playpath}] @var{options}
669 where @var{rtmp_proto} is one of the strings "rtmp", "rtmpt", "rtmpe",
670 "rtmps", "rtmpte", "rtmpts" corresponding to each RTMP variant, and
671 @var{server}, @var{port}, @var{app} and @var{playpath} have the same
672 meaning as specified for the RTMP native protocol.
673 @var{options} contains a list of space-separated options of the form
676 See the librtmp manual page (man 3 librtmp) for more information.
678 For example, to stream a file in real-time to an RTMP server using
681 ffmpeg -re -i myfile -f flv rtmp://myserver/live/mystream
684 To play the same stream using @command{ffplay}:
686 ffplay "rtmp://myserver/live/mystream live=1"
691 Real-time Transport Protocol.
693 The required syntax for an RTP URL is:
694 rtp://@var{hostname}[:@var{port}][?@var{option}=@var{val}...]
696 @var{port} specifies the RTP port to use.
698 The following URL options are supported:
703 Set the TTL (Time-To-Live) value (for multicast only).
705 @item rtcpport=@var{n}
706 Set the remote RTCP port to @var{n}.
708 @item localrtpport=@var{n}
709 Set the local RTP port to @var{n}.
711 @item localrtcpport=@var{n}'
712 Set the local RTCP port to @var{n}.
714 @item pkt_size=@var{n}
715 Set max packet size (in bytes) to @var{n}.
718 Do a @code{connect()} on the UDP socket (if set to 1) or not (if set
721 @item sources=@var{ip}[,@var{ip}]
722 List allowed source IP addresses.
724 @item block=@var{ip}[,@var{ip}]
725 List disallowed (blocked) source IP addresses.
727 @item write_to_source=0|1
728 Send packets to the source address of the latest received packet (if
729 set to 1) or to a default remote address (if set to 0).
731 @item localport=@var{n}
732 Set the local RTP port to @var{n}.
734 This is a deprecated option. Instead, @option{localrtpport} should be
744 If @option{rtcpport} is not set the RTCP port will be set to the RTP
748 If @option{localrtpport} (the local RTP port) is not set any available
749 port will be used for the local RTP and RTCP ports.
752 If @option{localrtcpport} (the local RTCP port) is not set it will be
753 set to the local RTP port value plus 1.
758 Real-Time Streaming Protocol.
760 RTSP is not technically a protocol handler in libavformat, it is a demuxer
761 and muxer. The demuxer supports both normal RTSP (with data transferred
762 over RTP; this is used by e.g. Apple and Microsoft) and Real-RTSP (with
763 data transferred over RDT).
765 The muxer can be used to send a stream using RTSP ANNOUNCE to a server
766 supporting it (currently Darwin Streaming Server and Mischa Spiegelmock's
767 @uref{https://github.com/revmischa/rtsp-server, RTSP server}).
769 The required syntax for a RTSP url is:
771 rtsp://@var{hostname}[:@var{port}]/@var{path}
774 Options can be set on the @command{ffmpeg}/@command{ffplay} command
775 line, or set in code via @code{AVOption}s or in
776 @code{avformat_open_input}.
778 The following options are supported.
782 Do not start playing the stream immediately if set to 1. Default value
786 Set RTSP transport protocols.
788 It accepts the following values:
791 Use UDP as lower transport protocol.
794 Use TCP (interleaving within the RTSP control channel) as lower
798 Use UDP multicast as lower transport protocol.
801 Use HTTP tunneling as lower transport protocol, which is useful for
805 Multiple lower transport protocols may be specified, in that case they are
806 tried one at a time (if the setup of one fails, the next one is tried).
807 For the muxer, only the @samp{tcp} and @samp{udp} options are supported.
812 The following values are accepted:
815 Accept packets only from negotiated peer address and port.
817 Act as a server, listening for an incoming connection.
819 Try TCP for RTP transport first, if TCP is available as RTSP RTP transport.
822 Default value is @samp{none}.
824 @item allowed_media_types
825 Set media types to accept from the server.
827 The following flags are accepted:
834 By default it accepts all media types.
837 Set minimum local UDP port. Default value is 5000.
840 Set maximum local UDP port. Default value is 65000.
843 Set maximum timeout (in seconds) to wait for incoming connections.
845 A value of -1 means infinite (default). This option implies the
846 @option{rtsp_flags} set to @samp{listen}.
848 @item reorder_queue_size
849 Set number of packets to buffer for handling of reordered packets.
852 Set socket TCP I/O timeout in microseconds.
855 Override User-Agent header. If not specified, it defaults to the
856 libavformat identifier string.
859 When receiving data over UDP, the demuxer tries to reorder received packets
860 (since they may arrive out of order, or packets may get lost totally). This
861 can be disabled by setting the maximum demuxing delay to zero (via
862 the @code{max_delay} field of AVFormatContext).
864 When watching multi-bitrate Real-RTSP streams with @command{ffplay}, the
865 streams to display can be chosen with @code{-vst} @var{n} and
866 @code{-ast} @var{n} for video and audio respectively, and can be switched
867 on the fly by pressing @code{v} and @code{a}.
871 The following examples all make use of the @command{ffplay} and
872 @command{ffmpeg} tools.
876 Watch a stream over UDP, with a max reordering delay of 0.5 seconds:
878 ffplay -max_delay 500000 -rtsp_transport udp rtsp://server/video.mp4
882 Watch a stream tunneled over HTTP:
884 ffplay -rtsp_transport http rtsp://server/video.mp4
888 Send a stream in realtime to a RTSP server, for others to watch:
890 ffmpeg -re -i @var{input} -f rtsp -muxdelay 0.1 rtsp://server/live.sdp
894 Receive a stream in realtime:
896 ffmpeg -rtsp_flags listen -i rtsp://ownaddress/live.sdp @var{output}
902 Session Announcement Protocol (RFC 2974). This is not technically a
903 protocol handler in libavformat, it is a muxer and demuxer.
904 It is used for signalling of RTP streams, by announcing the SDP for the
905 streams regularly on a separate port.
909 The syntax for a SAP url given to the muxer is:
911 sap://@var{destination}[:@var{port}][?@var{options}]
914 The RTP packets are sent to @var{destination} on port @var{port},
915 or to port 5004 if no port is specified.
916 @var{options} is a @code{&}-separated list. The following options
921 @item announce_addr=@var{address}
922 Specify the destination IP address for sending the announcements to.
923 If omitted, the announcements are sent to the commonly used SAP
924 announcement multicast address 224.2.127.254 (sap.mcast.net), or
925 ff0e::2:7ffe if @var{destination} is an IPv6 address.
927 @item announce_port=@var{port}
928 Specify the port to send the announcements on, defaults to
929 9875 if not specified.
932 Specify the time to live value for the announcements and RTP packets,
935 @item same_port=@var{0|1}
936 If set to 1, send all RTP streams on the same port pair. If zero (the
937 default), all streams are sent on unique ports, with each stream on a
938 port 2 numbers higher than the previous.
939 VLC/Live555 requires this to be set to 1, to be able to receive the stream.
940 The RTP stack in libavformat for receiving requires all streams to be sent
944 Example command lines follow.
946 To broadcast a stream on the local subnet, for watching in VLC:
949 ffmpeg -re -i @var{input} -f sap sap://224.0.0.255?same_port=1
952 Similarly, for watching in @command{ffplay}:
955 ffmpeg -re -i @var{input} -f sap sap://224.0.0.255
958 And for watching in @command{ffplay}, over IPv6:
961 ffmpeg -re -i @var{input} -f sap sap://[ff0e::1:2:3:4]
966 The syntax for a SAP url given to the demuxer is:
968 sap://[@var{address}][:@var{port}]
971 @var{address} is the multicast address to listen for announcements on,
972 if omitted, the default 224.2.127.254 (sap.mcast.net) is used. @var{port}
973 is the port that is listened on, 9875 if omitted.
975 The demuxers listens for announcements on the given address and port.
976 Once an announcement is received, it tries to receive that particular stream.
978 Example command lines follow.
980 To play back the first stream announced on the normal SAP multicast address:
986 To play back the first stream announced on one the default IPv6 SAP multicast address:
989 ffplay sap://[ff0e::2:7ffe]
994 Stream Control Transmission Protocol.
996 The accepted URL syntax is:
998 sctp://@var{host}:@var{port}[?@var{options}]
1001 The protocol accepts the following options:
1004 If set to any value, listen for an incoming connection. Outgoing connection is done by default.
1007 Set the maximum number of streams. By default no limit is set.
1012 Secure Real-time Transport Protocol.
1014 The accepted options are:
1017 @item srtp_out_suite
1018 Select input and output encoding suites.
1022 @item AES_CM_128_HMAC_SHA1_80
1023 @item SRTP_AES128_CM_HMAC_SHA1_80
1024 @item AES_CM_128_HMAC_SHA1_32
1025 @item SRTP_AES128_CM_HMAC_SHA1_32
1028 @item srtp_in_params
1029 @item srtp_out_params
1030 Set input and output encoding parameters, which are expressed by a
1031 base64-encoded representation of a binary block. The first 16 bytes of
1032 this binary block are used as master key, the following 14 bytes are
1033 used as master salt.
1038 Virtually extract a segment of a file or another stream.
1039 The underlying stream must be seekable.
1044 Start offset of the extracted segment, in bytes.
1046 End offset of the extracted segment, in bytes.
1051 Extract a chapter from a DVD VOB file (start and end sectors obtained
1052 externally and multiplied by 2048):
1054 subfile,,start,153391104,end,268142592,,:/media/dvd/VIDEO_TS/VTS_08_1.VOB
1057 Play an AVI file directly from a TAR archive:
1058 subfile,,start,183241728,end,366490624,,:archive.tar
1062 Transmission Control Protocol.
1064 The required syntax for a TCP url is:
1066 tcp://@var{hostname}:@var{port}[?@var{options}]
1069 @var{options} contains a list of &-separated options of the form
1070 @var{key}=@var{val}.
1072 The list of supported options follows.
1075 @item listen=@var{1|0}
1076 Listen for an incoming connection. Default value is 0.
1078 @item timeout=@var{microseconds}
1079 Set raise error timeout, expressed in microseconds.
1081 This option is only relevant in read mode: if no data arrived in more
1082 than this time interval, raise error.
1084 @item listen_timeout=@var{microseconds}
1085 Set listen timeout, expressed in microseconds.
1088 The following example shows how to setup a listening TCP connection
1089 with @command{ffmpeg}, which is then accessed with @command{ffplay}:
1091 ffmpeg -i @var{input} -f @var{format} tcp://@var{hostname}:@var{port}?listen
1092 ffplay tcp://@var{hostname}:@var{port}
1097 Transport Layer Security (TLS) / Secure Sockets Layer (SSL)
1099 The required syntax for a TLS/SSL url is:
1101 tls://@var{hostname}:@var{port}[?@var{options}]
1104 The following parameters can be set via command line options
1105 (or in code via @code{AVOption}s):
1109 @item ca_file, cafile=@var{filename}
1110 A file containing certificate authority (CA) root certificates to treat
1111 as trusted. If the linked TLS library contains a default this might not
1112 need to be specified for verification to work, but not all libraries and
1113 setups have defaults built in.
1114 The file must be in OpenSSL PEM format.
1116 @item tls_verify=@var{1|0}
1117 If enabled, try to verify the peer that we are communicating with.
1118 Note, if using OpenSSL, this currently only makes sure that the
1119 peer certificate is signed by one of the root certificates in the CA
1120 database, but it does not validate that the certificate actually
1121 matches the host name we are trying to connect to. (With GnuTLS,
1122 the host name is validated as well.)
1124 This is disabled by default since it requires a CA database to be
1125 provided by the caller in many cases.
1127 @item cert_file, cert=@var{filename}
1128 A file containing a certificate to use in the handshake with the peer.
1129 (When operating as server, in listen mode, this is more often required
1130 by the peer, while client certificates only are mandated in certain
1133 @item key_file, key=@var{filename}
1134 A file containing the private key for the certificate.
1136 @item listen=@var{1|0}
1137 If enabled, listen for connections on the provided port, and assume
1138 the server role in the handshake instead of the client role.
1142 Example command lines:
1144 To create a TLS/SSL server that serves an input stream.
1147 ffmpeg -i @var{input} -f @var{format} tls://@var{hostname}:@var{port}?listen&cert=@var{server.crt}&key=@var{server.key}
1150 To play back a stream from the TLS/SSL server using @command{ffplay}:
1153 ffplay tls://@var{hostname}:@var{port}
1158 User Datagram Protocol.
1160 The required syntax for an UDP URL is:
1162 udp://@var{hostname}:@var{port}[?@var{options}]
1165 @var{options} contains a list of &-separated options of the form @var{key}=@var{val}.
1167 In case threading is enabled on the system, a circular buffer is used
1168 to store the incoming data, which allows one to reduce loss of data due to
1169 UDP socket buffer overruns. The @var{fifo_size} and
1170 @var{overrun_nonfatal} options are related to this buffer.
1172 The list of supported options follows.
1175 @item buffer_size=@var{size}
1176 Set the UDP maximum socket buffer size in bytes. This is used to set either
1177 the receive or send buffer size, depending on what the socket is used for.
1178 Default is 64KB. See also @var{fifo_size}.
1180 @item localport=@var{port}
1181 Override the local UDP port to bind with.
1183 @item localaddr=@var{addr}
1184 Choose the local IP address. This is useful e.g. if sending multicast
1185 and the host has multiple interfaces, where the user can choose
1186 which interface to send on by specifying the IP address of that interface.
1188 @item pkt_size=@var{size}
1189 Set the size in bytes of UDP packets.
1191 @item reuse=@var{1|0}
1192 Explicitly allow or disallow reusing UDP sockets.
1195 Set the time to live value (for multicast only).
1197 @item connect=@var{1|0}
1198 Initialize the UDP socket with @code{connect()}. In this case, the
1199 destination address can't be changed with ff_udp_set_remote_url later.
1200 If the destination address isn't known at the start, this option can
1201 be specified in ff_udp_set_remote_url, too.
1202 This allows finding out the source address for the packets with getsockname,
1203 and makes writes return with AVERROR(ECONNREFUSED) if "destination
1204 unreachable" is received.
1205 For receiving, this gives the benefit of only receiving packets from
1206 the specified peer address/port.
1208 @item sources=@var{address}[,@var{address}]
1209 Only receive packets sent to the multicast group from one of the
1210 specified sender IP addresses.
1212 @item block=@var{address}[,@var{address}]
1213 Ignore packets sent to the multicast group from the specified
1214 sender IP addresses.
1216 @item fifo_size=@var{units}
1217 Set the UDP receiving circular buffer size, expressed as a number of
1218 packets with size of 188 bytes. If not specified defaults to 7*4096.
1220 @item overrun_nonfatal=@var{1|0}
1221 Survive in case of UDP receiving circular buffer overrun. Default
1224 @item timeout=@var{microseconds}
1225 Set raise error timeout, expressed in microseconds.
1227 This option is only relevant in read mode: if no data arrived in more
1228 than this time interval, raise error.
1230 @item broadcast=@var{1|0}
1231 Explicitly allow or disallow UDP broadcasting.
1233 Note that broadcasting may not work properly on networks having
1234 a broadcast storm protection.
1237 @subsection Examples
1241 Use @command{ffmpeg} to stream over UDP to a remote endpoint:
1243 ffmpeg -i @var{input} -f @var{format} udp://@var{hostname}:@var{port}
1247 Use @command{ffmpeg} to stream in mpegts format over UDP using 188
1248 sized UDP packets, using a large input buffer:
1250 ffmpeg -i @var{input} -f mpegts udp://@var{hostname}:@var{port}?pkt_size=188&buffer_size=65535
1254 Use @command{ffmpeg} to receive over UDP from a remote endpoint:
1256 ffmpeg -i udp://[@var{multicast-address}]:@var{port} ...
1264 The required syntax for a Unix socket URL is:
1267 unix://@var{filepath}
1270 The following parameters can be set via command line options
1271 (or in code via @code{AVOption}s):
1277 Create the Unix socket in listening mode.
1280 @c man end PROTOCOLS