summaryrefslogtreecommitdiff
path: root/doc/protocols.texi (plain)
blob: a7968ff56e3e1fc1c8c81bff4578bd309f8b95e7
1@chapter Protocol Options
2@c man begin PROTOCOL OPTIONS
3
4The libavformat library provides some generic global options, which
5can be set on all the protocols. In addition each protocol may support
6so-called private options, which are specific for that component.
7
8Options may be set by specifying -@var{option} @var{value} in the
9FFmpeg tools, or by setting the value explicitly in the
10@code{AVFormatContext} options or using the @file{libavutil/opt.h} API
11for programmatic use.
12
13The list of supported options follows:
14
15@table @option
16@item protocol_whitelist @var{list} (@emph{input})
17Set a ","-separated list of allowed protocols. "ALL" matches all protocols. Protocols
18prefixed by "-" are disabled.
19All protocols are allowed by default but protocols used by an another
20protocol (nested protocols) are restricted to a per protocol subset.
21@end table
22
23@c man end PROTOCOL OPTIONS
24
25@chapter Protocols
26@c man begin PROTOCOLS
27
28Protocols are configured elements in FFmpeg that enable access to
29resources that require specific protocols.
30
31When you configure your FFmpeg build, all the supported protocols are
32enabled by default. You can list all available ones using the
33configure option "--list-protocols".
34
35You can disable all the protocols using the configure option
36"--disable-protocols", and selectively enable a protocol using the
37option "--enable-protocol=@var{PROTOCOL}", or you can disable a
38particular protocol using the option
39"--disable-protocol=@var{PROTOCOL}".
40
41The option "-protocols" of the ff* tools will display the list of
42supported protocols.
43
44All protocols accept the following options:
45
46@table @option
47@item rw_timeout
48Maximum time to wait for (network) read/write operations to complete,
49in microseconds.
50@end table
51
52A description of the currently available protocols follows.
53
54@section async
55
56Asynchronous data filling wrapper for input stream.
57
58Fill data in a background thread, to decouple I/O operation from demux thread.
59
60@example
61async:@var{URL}
62async:http://host/resource
63async:cache:http://host/resource
64@end example
65
66@section bluray
67
68Read BluRay playlist.
69
70The accepted options are:
71@table @option
72
73@item angle
74BluRay angle
75
76@item chapter
77Start chapter (1...N)
78
79@item playlist
80Playlist to read (BDMV/PLAYLIST/?????.mpls)
81
82@end table
83
84Examples:
85
86Read longest playlist from BluRay mounted to /mnt/bluray:
87@example
88bluray:/mnt/bluray
89@end example
90
91Read angle 2 of playlist 4 from BluRay mounted to /mnt/bluray, start from chapter 2:
92@example
93-playlist 4 -angle 2 -chapter 2 bluray:/mnt/bluray
94@end example
95
96@section cache
97
98Caching wrapper for input stream.
99
100Cache the input stream to temporary file. It brings seeking capability to live streams.
101
102@example
103cache:@var{URL}
104@end example
105
106@section concat
107
108Physical concatenation protocol.
109
110Read and seek from many resources in sequence as if they were
111a unique resource.
112
113A URL accepted by this protocol has the syntax:
114@example
115concat:@var{URL1}|@var{URL2}|...|@var{URLN}
116@end example
117
118where @var{URL1}, @var{URL2}, ..., @var{URLN} are the urls of the
119resource to be concatenated, each one possibly specifying a distinct
120protocol.
121
122For example to read a sequence of files @file{split1.mpeg},
123@file{split2.mpeg}, @file{split3.mpeg} with @command{ffplay} use the
124command:
125@example
126ffplay concat:split1.mpeg\|split2.mpeg\|split3.mpeg
127@end example
128
129Note that you may need to escape the character "|" which is special for
130many shells.
131
132@section crypto
133
134AES-encrypted stream reading protocol.
135
136The accepted options are:
137@table @option
138@item key
139Set the AES decryption key binary block from given hexadecimal representation.
140
141@item iv
142Set the AES decryption initialization vector binary block from given hexadecimal representation.
143@end table
144
145Accepted URL formats:
146@example
147crypto:@var{URL}
148crypto+@var{URL}
149@end example
150
151@section data
152
153Data in-line in the URI. See @url{http://en.wikipedia.org/wiki/Data_URI_scheme}.
154
155For example, to convert a GIF file given inline with @command{ffmpeg}:
156@example
157ffmpeg -i "data:image/gif;base64,R0lGODdhCAAIAMIEAAAAAAAA//8AAP//AP///////////////ywAAAAACAAIAAADF0gEDLojDgdGiJdJqUX02iB4E8Q9jUMkADs=" smiley.png
158@end example
159
160@section file
161
162File access protocol.
163
164Read from or write to a file.
165
166A file URL can have the form:
167@example
168file:@var{filename}
169@end example
170
171where @var{filename} is the path of the file to read.
172
173An URL that does not have a protocol prefix will be assumed to be a
174file URL. Depending on the build, an URL that looks like a Windows
175path with the drive letter at the beginning will also be assumed to be
176a file URL (usually not the case in builds for unix-like systems).
177
178For example to read from a file @file{input.mpeg} with @command{ffmpeg}
179use the command:
180@example
181ffmpeg -i file:input.mpeg output.mpeg
182@end example
183
184This protocol accepts the following options:
185
186@table @option
187@item truncate
188Truncate existing files on write, if set to 1. A value of 0 prevents
189truncating. Default value is 1.
190
191@item blocksize
192Set I/O operation maximum block size, in bytes. Default value is
193@code{INT_MAX}, which results in not limiting the requested block size.
194Setting this value reasonably low improves user termination request reaction
195time, which is valuable for files on slow medium.
196@end table
197
198@section ftp
199
200FTP (File Transfer Protocol).
201
202Read from or write to remote resources using FTP protocol.
203
204Following syntax is required.
205@example
206ftp://[user[:password]@@]server[:port]/path/to/remote/resource.mpeg
207@end example
208
209This protocol accepts the following options.
210
211@table @option
212@item timeout
213Set timeout in microseconds of socket I/O operations used by the underlying low level
214operation. By default it is set to -1, which means that the timeout is
215not specified.
216
217@item ftp-anonymous-password
218Password used when login as anonymous user. Typically an e-mail address
219should be used.
220
221@item ftp-write-seekable
222Control seekability of connection during encoding. If set to 1 the
223resource is supposed to be seekable, if set to 0 it is assumed not
224to be seekable. Default value is 0.
225@end table
226
227NOTE: Protocol can be used as output, but it is recommended to not do
228it, unless special care is taken (tests, customized server configuration
229etc.). Different FTP servers behave in different way during seek
230operation. ff* tools may produce incomplete content due to server limitations.
231
232This protocol accepts the following options:
233
234@table @option
235@item follow
236If set to 1, the protocol will retry reading at the end of the file, allowing
237reading files that still are being written. In order for this to terminate,
238you either need to use the rw_timeout option, or use the interrupt callback
239(for API users).
240
241@end table
242
243@section gopher
244
245Gopher protocol.
246
247@section hls
248
249Read Apple HTTP Live Streaming compliant segmented stream as
250a uniform one. The M3U8 playlists describing the segments can be
251remote HTTP resources or local files, accessed using the standard
252file protocol.
253The nested protocol is declared by specifying
254"+@var{proto}" after the hls URI scheme name, where @var{proto}
255is either "file" or "http".
256
257@example
258hls+http://host/path/to/remote/resource.m3u8
259hls+file://path/to/local/resource.m3u8
260@end example
261
262Using this protocol is discouraged - the hls demuxer should work
263just as well (if not, please report the issues) and is more complete.
264To use the hls demuxer instead, simply use the direct URLs to the
265m3u8 files.
266
267@section http
268
269HTTP (Hyper Text Transfer Protocol).
270
271This protocol accepts the following options:
272
273@table @option
274@item seekable
275Control seekability of connection. If set to 1 the resource is
276supposed to be seekable, if set to 0 it is assumed not to be seekable,
277if set to -1 it will try to autodetect if it is seekable. Default
278value is -1.
279
280@item chunked_post
281If set to 1 use chunked Transfer-Encoding for posts, default is 1.
282
283@item content_type
284Set a specific content type for the POST messages or for listen mode.
285
286@item http_proxy
287set HTTP proxy to tunnel through e.g. http://example.com:1234
288
289@item headers
290Set custom HTTP headers, can override built in default headers. The
291value must be a string encoding the headers.
292
293@item multiple_requests
294Use persistent connections if set to 1, default is 0.
295
296@item post_data
297Set custom HTTP post data.
298
299@item user_agent
300Override the User-Agent header. If not specified the protocol will use a
301string describing the libavformat build. ("Lavf/<version>")
302
303@item user-agent
304This is a deprecated option, you can use user_agent instead it.
305
306@item timeout
307Set timeout in microseconds of socket I/O operations used by the underlying low level
308operation. By default it is set to -1, which means that the timeout is
309not specified.
310
311@item reconnect_at_eof
312If set then eof is treated like an error and causes reconnection, this is useful
313for live / endless streams.
314
315@item reconnect_streamed
316If set then even streamed/non seekable streams will be reconnected on errors.
317
318@item reconnect_delay_max
319Sets the maximum delay in seconds after which to give up reconnecting
320
321@item mime_type
322Export the MIME type.
323
324@item icy
325If set to 1 request ICY (SHOUTcast) metadata from the server. If the server
326supports this, the metadata has to be retrieved by the application by reading
327the @option{icy_metadata_headers} and @option{icy_metadata_packet} options.
328The default is 1.
329
330@item icy_metadata_headers
331If the server supports ICY metadata, this contains the ICY-specific HTTP reply
332headers, separated by newline characters.
333
334@item icy_metadata_packet
335If the server supports ICY metadata, and @option{icy} was set to 1, this
336contains the last non-empty metadata packet sent by the server. It should be
337polled in regular intervals by applications interested in mid-stream metadata
338updates.
339
340@item cookies
341Set the cookies to be sent in future requests. The format of each cookie is the
342same as the value of a Set-Cookie HTTP response field. Multiple cookies can be
343delimited by a newline character.
344
345@item offset
346Set initial byte offset.
347
348@item end_offset
349Try to limit the request to bytes preceding this offset.
350
351@item method
352When used as a client option it sets the HTTP method for the request.
353
354When used as a server option it sets the HTTP method that is going to be
355expected from the client(s).
356If the expected and the received HTTP method do not match the client will
357be given a Bad Request response.
358When unset the HTTP method is not checked for now. This will be replaced by
359autodetection in the future.
360
361@item listen
362If set to 1 enables experimental HTTP server. This can be used to send data when
363used as an output option, or read data from a client with HTTP POST when used as
364an input option.
365If set to 2 enables experimental multi-client HTTP server. This is not yet implemented
366in ffmpeg.c or ffserver.c and thus must not be used as a command line option.
367@example
368# Server side (sending):
369ffmpeg -i somefile.ogg -c copy -listen 1 -f ogg http://@var{server}:@var{port}
370
371# Client side (receiving):
372ffmpeg -i http://@var{server}:@var{port} -c copy somefile.ogg
373
374# Client can also be done with wget:
375wget http://@var{server}:@var{port} -O somefile.ogg
376
377# Server side (receiving):
378ffmpeg -listen 1 -i http://@var{server}:@var{port} -c copy somefile.ogg
379
380# Client side (sending):
381ffmpeg -i somefile.ogg -chunked_post 0 -c copy -f ogg http://@var{server}:@var{port}
382
383# Client can also be done with wget:
384wget --post-file=somefile.ogg http://@var{server}:@var{port}
385@end example
386
387@end table
388
389@subsection HTTP Cookies
390
391Some HTTP requests will be denied unless cookie values are passed in with the
392request. The @option{cookies} option allows these cookies to be specified. At
393the very least, each cookie must specify a value along with a path and domain.
394HTTP requests that match both the domain and path will automatically include the
395cookie value in the HTTP Cookie header field. Multiple cookies can be delimited
396by a newline.
397
398The required syntax to play a stream specifying a cookie is:
399@example
400ffplay -cookies "nlqptid=nltid=tsn; path=/; domain=somedomain.com;" http://somedomain.com/somestream.m3u8
401@end example
402
403@section Icecast
404
405Icecast protocol (stream to Icecast servers)
406
407This protocol accepts the following options:
408
409@table @option
410@item ice_genre
411Set the stream genre.
412
413@item ice_name
414Set the stream name.
415
416@item ice_description
417Set the stream description.
418
419@item ice_url
420Set the stream website URL.
421
422@item ice_public
423Set if the stream should be public.
424The default is 0 (not public).
425
426@item user_agent
427Override the User-Agent header. If not specified a string of the form
428"Lavf/<version>" will be used.
429
430@item password
431Set the Icecast mountpoint password.
432
433@item content_type
434Set the stream content type. This must be set if it is different from
435audio/mpeg.
436
437@item legacy_icecast
438This enables support for Icecast versions < 2.4.0, that do not support the
439HTTP PUT method but the SOURCE method.
440
441@end table
442
443@example
444icecast://[@var{username}[:@var{password}]@@]@var{server}:@var{port}/@var{mountpoint}
445@end example
446
447@section mmst
448
449MMS (Microsoft Media Server) protocol over TCP.
450
451@section mmsh
452
453MMS (Microsoft Media Server) protocol over HTTP.
454
455The required syntax is:
456@example
457mmsh://@var{server}[:@var{port}][/@var{app}][/@var{playpath}]
458@end example
459
460@section md5
461
462MD5 output protocol.
463
464Computes the MD5 hash of the data to be written, and on close writes
465this to the designated output or stdout if none is specified. It can
466be used to test muxers without writing an actual file.
467
468Some examples follow.
469@example
470# Write the MD5 hash of the encoded AVI file to the file output.avi.md5.
471ffmpeg -i input.flv -f avi -y md5:output.avi.md5
472
473# Write the MD5 hash of the encoded AVI file to stdout.
474ffmpeg -i input.flv -f avi -y md5:
475@end example
476
477Note that some formats (typically MOV) require the output protocol to
478be seekable, so they will fail with the MD5 output protocol.
479
480@section pipe
481
482UNIX pipe access protocol.
483
484Read and write from UNIX pipes.
485
486The accepted syntax is:
487@example
488pipe:[@var{number}]
489@end example
490
491@var{number} is the number corresponding to the file descriptor of the
492pipe (e.g. 0 for stdin, 1 for stdout, 2 for stderr). If @var{number}
493is not specified, by default the stdout file descriptor will be used
494for writing, stdin for reading.
495
496For example to read from stdin with @command{ffmpeg}:
497@example
498cat test.wav | ffmpeg -i pipe:0
499# ...this is the same as...
500cat test.wav | ffmpeg -i pipe:
501@end example
502
503For writing to stdout with @command{ffmpeg}:
504@example
505ffmpeg -i test.wav -f avi pipe:1 | cat > test.avi
506# ...this is the same as...
507ffmpeg -i test.wav -f avi pipe: | cat > test.avi
508@end example
509
510This protocol accepts the following options:
511
512@table @option
513@item blocksize
514Set I/O operation maximum block size, in bytes. Default value is
515@code{INT_MAX}, which results in not limiting the requested block size.
516Setting this value reasonably low improves user termination request reaction
517time, which is valuable if data transmission is slow.
518@end table
519
520Note that some formats (typically MOV), require the output protocol to
521be seekable, so they will fail with the pipe output protocol.
522
523@section prompeg
524
525Pro-MPEG Code of Practice #3 Release 2 FEC protocol.
526
527The Pro-MPEG CoP#3 FEC is a 2D parity-check forward error correction mechanism
528for MPEG-2 Transport Streams sent over RTP.
529
530This protocol must be used in conjunction with the @code{rtp_mpegts} muxer and
531the @code{rtp} protocol.
532
533The required syntax is:
534@example
535-f rtp_mpegts -fec prompeg=@var{option}=@var{val}... rtp://@var{hostname}:@var{port}
536@end example
537
538The destination UDP ports are @code{port + 2} for the column FEC stream
539and @code{port + 4} for the row FEC stream.
540
541This protocol accepts the following options:
542@table @option
543
544@item l=@var{n}
545The number of columns (4-20, LxD <= 100)
546
547@item d=@var{n}
548The number of rows (4-20, LxD <= 100)
549
550@end table
551
552Example usage:
553
554@example
555-f rtp_mpegts -fec prompeg=l=8:d=4 rtp://@var{hostname}:@var{port}
556@end example
557
558@section rtmp
559
560Real-Time Messaging Protocol.
561
562The Real-Time Messaging Protocol (RTMP) is used for streaming multimedia
563content across a TCP/IP network.
564
565The required syntax is:
566@example
567rtmp://[@var{username}:@var{password}@@]@var{server}[:@var{port}][/@var{app}][/@var{instance}][/@var{playpath}]
568@end example
569
570The accepted parameters are:
571@table @option
572
573@item username
574An optional username (mostly for publishing).
575
576@item password
577An optional password (mostly for publishing).
578
579@item server
580The address of the RTMP server.
581
582@item port
583The number of the TCP port to use (by default is 1935).
584
585@item app
586It is the name of the application to access. It usually corresponds to
587the path where the application is installed on the RTMP server
588(e.g. @file{/ondemand/}, @file{/flash/live/}, etc.). You can override
589the value parsed from the URI through the @code{rtmp_app} option, too.
590
591@item playpath
592It is the path or name of the resource to play with reference to the
593application specified in @var{app}, may be prefixed by "mp4:". You
594can override the value parsed from the URI through the @code{rtmp_playpath}
595option, too.
596
597@item listen
598Act as a server, listening for an incoming connection.
599
600@item timeout
601Maximum time to wait for the incoming connection. Implies listen.
602@end table
603
604Additionally, the following parameters can be set via command line options
605(or in code via @code{AVOption}s):
606@table @option
607
608@item rtmp_app
609Name of application to connect on the RTMP server. This option
610overrides the parameter specified in the URI.
611
612@item rtmp_buffer
613Set the client buffer time in milliseconds. The default is 3000.
614
615@item rtmp_conn
616Extra arbitrary AMF connection parameters, parsed from a string,
617e.g. like @code{B:1 S:authMe O:1 NN:code:1.23 NS:flag:ok O:0}.
618Each value is prefixed by a single character denoting the type,
619B for Boolean, N for number, S for string, O for object, or Z for null,
620followed by a colon. For Booleans the data must be either 0 or 1 for
621FALSE or TRUE, respectively. Likewise for Objects the data must be 0 or
6221 to end or begin an object, respectively. Data items in subobjects may
623be named, by prefixing the type with 'N' and specifying the name before
624the value (i.e. @code{NB:myFlag:1}). This option may be used multiple
625times to construct arbitrary AMF sequences.
626
627@item rtmp_flashver
628Version of the Flash plugin used to run the SWF player. The default
629is LNX 9,0,124,2. (When publishing, the default is FMLE/3.0 (compatible;
630<libavformat version>).)
631
632@item rtmp_flush_interval
633Number of packets flushed in the same request (RTMPT only). The default
634is 10.
635
636@item rtmp_live
637Specify that the media is a live stream. No resuming or seeking in
638live streams is possible. The default value is @code{any}, which means the
639subscriber first tries to play the live stream specified in the
640playpath. If a live stream of that name is not found, it plays the
641recorded stream. The other possible values are @code{live} and
642@code{recorded}.
643
644@item rtmp_pageurl
645URL of the web page in which the media was embedded. By default no
646value will be sent.
647
648@item rtmp_playpath
649Stream identifier to play or to publish. This option overrides the
650parameter specified in the URI.
651
652@item rtmp_subscribe
653Name of live stream to subscribe to. By default no value will be sent.
654It is only sent if the option is specified or if rtmp_live
655is set to live.
656
657@item rtmp_swfhash
658SHA256 hash of the decompressed SWF file (32 bytes).
659
660@item rtmp_swfsize
661Size of the decompressed SWF file, required for SWFVerification.
662
663@item rtmp_swfurl
664URL of the SWF player for the media. By default no value will be sent.
665
666@item rtmp_swfverify
667URL to player swf file, compute hash/size automatically.
668
669@item rtmp_tcurl
670URL of the target stream. Defaults to proto://host[:port]/app.
671
672@end table
673
674For example to read with @command{ffplay} a multimedia resource named
675"sample" from the application "vod" from an RTMP server "myserver":
676@example
677ffplay rtmp://myserver/vod/sample
678@end example
679
680To publish to a password protected server, passing the playpath and
681app names separately:
682@example
683ffmpeg -re -i <input> -f flv -rtmp_playpath some/long/path -rtmp_app long/app/name rtmp://username:password@@myserver/
684@end example
685
686@section rtmpe
687
688Encrypted Real-Time Messaging Protocol.
689
690The Encrypted Real-Time Messaging Protocol (RTMPE) is used for
691streaming multimedia content within standard cryptographic primitives,
692consisting of Diffie-Hellman key exchange and HMACSHA256, generating
693a pair of RC4 keys.
694
695@section rtmps
696
697Real-Time Messaging Protocol over a secure SSL connection.
698
699The Real-Time Messaging Protocol (RTMPS) is used for streaming
700multimedia content across an encrypted connection.
701
702@section rtmpt
703
704Real-Time Messaging Protocol tunneled through HTTP.
705
706The Real-Time Messaging Protocol tunneled through HTTP (RTMPT) is used
707for streaming multimedia content within HTTP requests to traverse
708firewalls.
709
710@section rtmpte
711
712Encrypted Real-Time Messaging Protocol tunneled through HTTP.
713
714The Encrypted Real-Time Messaging Protocol tunneled through HTTP (RTMPTE)
715is used for streaming multimedia content within HTTP requests to traverse
716firewalls.
717
718@section rtmpts
719
720Real-Time Messaging Protocol tunneled through HTTPS.
721
722The Real-Time Messaging Protocol tunneled through HTTPS (RTMPTS) is used
723for streaming multimedia content within HTTPS requests to traverse
724firewalls.
725
726@section libsmbclient
727
728libsmbclient permits one to manipulate CIFS/SMB network resources.
729
730Following syntax is required.
731
732@example
733smb://[[domain:]user[:password@@]]server[/share[/path[/file]]]
734@end example
735
736This protocol accepts the following options.
737
738@table @option
739@item timeout
740Set timeout in milliseconds of socket I/O operations used by the underlying
741low level operation. By default it is set to -1, which means that the timeout
742is not specified.
743
744@item truncate
745Truncate existing files on write, if set to 1. A value of 0 prevents
746truncating. Default value is 1.
747
748@item workgroup
749Set the workgroup used for making connections. By default workgroup is not specified.
750
751@end table
752
753For more information see: @url{http://www.samba.org/}.
754
755@section libssh
756
757Secure File Transfer Protocol via libssh
758
759Read from or write to remote resources using SFTP protocol.
760
761Following syntax is required.
762
763@example
764sftp://[user[:password]@@]server[:port]/path/to/remote/resource.mpeg
765@end example
766
767This protocol accepts the following options.
768
769@table @option
770@item timeout
771Set timeout of socket I/O operations used by the underlying low level
772operation. By default it is set to -1, which means that the timeout
773is not specified.
774
775@item truncate
776Truncate existing files on write, if set to 1. A value of 0 prevents
777truncating. Default value is 1.
778
779@item private_key
780Specify the path of the file containing private key to use during authorization.
781By default libssh searches for keys in the @file{~/.ssh/} directory.
782
783@end table
784
785Example: Play a file stored on remote server.
786
787@example
788ffplay sftp://user:password@@server_address:22/home/user/resource.mpeg
789@end example
790
791@section librtmp rtmp, rtmpe, rtmps, rtmpt, rtmpte
792
793Real-Time Messaging Protocol and its variants supported through
794librtmp.
795
796Requires the presence of the librtmp headers and library during
797configuration. You need to explicitly configure the build with
798"--enable-librtmp". If enabled this will replace the native RTMP
799protocol.
800
801This protocol provides most client functions and a few server
802functions needed to support RTMP, RTMP tunneled in HTTP (RTMPT),
803encrypted RTMP (RTMPE), RTMP over SSL/TLS (RTMPS) and tunneled
804variants of these encrypted types (RTMPTE, RTMPTS).
805
806The required syntax is:
807@example
808@var{rtmp_proto}://@var{server}[:@var{port}][/@var{app}][/@var{playpath}] @var{options}
809@end example
810
811where @var{rtmp_proto} is one of the strings "rtmp", "rtmpt", "rtmpe",
812"rtmps", "rtmpte", "rtmpts" corresponding to each RTMP variant, and
813@var{server}, @var{port}, @var{app} and @var{playpath} have the same
814meaning as specified for the RTMP native protocol.
815@var{options} contains a list of space-separated options of the form
816@var{key}=@var{val}.
817
818See the librtmp manual page (man 3 librtmp) for more information.
819
820For example, to stream a file in real-time to an RTMP server using
821@command{ffmpeg}:
822@example
823ffmpeg -re -i myfile -f flv rtmp://myserver/live/mystream
824@end example
825
826To play the same stream using @command{ffplay}:
827@example
828ffplay "rtmp://myserver/live/mystream live=1"
829@end example
830
831@section rtp
832
833Real-time Transport Protocol.
834
835The required syntax for an RTP URL is:
836rtp://@var{hostname}[:@var{port}][?@var{option}=@var{val}...]
837
838@var{port} specifies the RTP port to use.
839
840The following URL options are supported:
841
842@table @option
843
844@item ttl=@var{n}
845Set the TTL (Time-To-Live) value (for multicast only).
846
847@item rtcpport=@var{n}
848Set the remote RTCP port to @var{n}.
849
850@item localrtpport=@var{n}
851Set the local RTP port to @var{n}.
852
853@item localrtcpport=@var{n}'
854Set the local RTCP port to @var{n}.
855
856@item pkt_size=@var{n}
857Set max packet size (in bytes) to @var{n}.
858
859@item connect=0|1
860Do a @code{connect()} on the UDP socket (if set to 1) or not (if set
861to 0).
862
863@item sources=@var{ip}[,@var{ip}]
864List allowed source IP addresses.
865
866@item block=@var{ip}[,@var{ip}]
867List disallowed (blocked) source IP addresses.
868
869@item write_to_source=0|1
870Send packets to the source address of the latest received packet (if
871set to 1) or to a default remote address (if set to 0).
872
873@item localport=@var{n}
874Set the local RTP port to @var{n}.
875
876This is a deprecated option. Instead, @option{localrtpport} should be
877used.
878
879@end table
880
881Important notes:
882
883@enumerate
884
885@item
886If @option{rtcpport} is not set the RTCP port will be set to the RTP
887port value plus 1.
888
889@item
890If @option{localrtpport} (the local RTP port) is not set any available
891port will be used for the local RTP and RTCP ports.
892
893@item
894If @option{localrtcpport} (the local RTCP port) is not set it will be
895set to the local RTP port value plus 1.
896@end enumerate
897
898@section rtsp
899
900Real-Time Streaming Protocol.
901
902RTSP is not technically a protocol handler in libavformat, it is a demuxer
903and muxer. The demuxer supports both normal RTSP (with data transferred
904over RTP; this is used by e.g. Apple and Microsoft) and Real-RTSP (with
905data transferred over RDT).
906
907The muxer can be used to send a stream using RTSP ANNOUNCE to a server
908supporting it (currently Darwin Streaming Server and Mischa Spiegelmock's
909@uref{https://github.com/revmischa/rtsp-server, RTSP server}).
910
911The required syntax for a RTSP url is:
912@example
913rtsp://@var{hostname}[:@var{port}]/@var{path}
914@end example
915
916Options can be set on the @command{ffmpeg}/@command{ffplay} command
917line, or set in code via @code{AVOption}s or in
918@code{avformat_open_input}.
919
920The following options are supported.
921
922@table @option
923@item initial_pause
924Do not start playing the stream immediately if set to 1. Default value
925is 0.
926
927@item rtsp_transport
928Set RTSP transport protocols.
929
930It accepts the following values:
931@table @samp
932@item udp
933Use UDP as lower transport protocol.
934
935@item tcp
936Use TCP (interleaving within the RTSP control channel) as lower
937transport protocol.
938
939@item udp_multicast
940Use UDP multicast as lower transport protocol.
941
942@item http
943Use HTTP tunneling as lower transport protocol, which is useful for
944passing proxies.
945@end table
946
947Multiple lower transport protocols may be specified, in that case they are
948tried one at a time (if the setup of one fails, the next one is tried).
949For the muxer, only the @samp{tcp} and @samp{udp} options are supported.
950
951@item rtsp_flags
952Set RTSP flags.
953
954The following values are accepted:
955@table @samp
956@item filter_src
957Accept packets only from negotiated peer address and port.
958@item listen
959Act as a server, listening for an incoming connection.
960@item prefer_tcp
961Try TCP for RTP transport first, if TCP is available as RTSP RTP transport.
962@end table
963
964Default value is @samp{none}.
965
966@item allowed_media_types
967Set media types to accept from the server.
968
969The following flags are accepted:
970@table @samp
971@item video
972@item audio
973@item data
974@end table
975
976By default it accepts all media types.
977
978@item min_port
979Set minimum local UDP port. Default value is 5000.
980
981@item max_port
982Set maximum local UDP port. Default value is 65000.
983
984@item timeout
985Set maximum timeout (in seconds) to wait for incoming connections.
986
987A value of -1 means infinite (default). This option implies the
988@option{rtsp_flags} set to @samp{listen}.
989
990@item reorder_queue_size
991Set number of packets to buffer for handling of reordered packets.
992
993@item stimeout
994Set socket TCP I/O timeout in microseconds.
995
996@item user-agent
997Override User-Agent header. If not specified, it defaults to the
998libavformat identifier string.
999@end table
1000
1001When receiving data over UDP, the demuxer tries to reorder received packets
1002(since they may arrive out of order, or packets may get lost totally). This
1003can be disabled by setting the maximum demuxing delay to zero (via
1004the @code{max_delay} field of AVFormatContext).
1005
1006When watching multi-bitrate Real-RTSP streams with @command{ffplay}, the
1007streams to display can be chosen with @code{-vst} @var{n} and
1008@code{-ast} @var{n} for video and audio respectively, and can be switched
1009on the fly by pressing @code{v} and @code{a}.
1010
1011@subsection Examples
1012
1013The following examples all make use of the @command{ffplay} and
1014@command{ffmpeg} tools.
1015
1016@itemize
1017@item
1018Watch a stream over UDP, with a max reordering delay of 0.5 seconds:
1019@example
1020ffplay -max_delay 500000 -rtsp_transport udp rtsp://server/video.mp4
1021@end example
1022
1023@item
1024Watch a stream tunneled over HTTP:
1025@example
1026ffplay -rtsp_transport http rtsp://server/video.mp4
1027@end example
1028
1029@item
1030Send a stream in realtime to a RTSP server, for others to watch:
1031@example
1032ffmpeg -re -i @var{input} -f rtsp -muxdelay 0.1 rtsp://server/live.sdp
1033@end example
1034
1035@item
1036Receive a stream in realtime:
1037@example
1038ffmpeg -rtsp_flags listen -i rtsp://ownaddress/live.sdp @var{output}
1039@end example
1040@end itemize
1041
1042@section sap
1043
1044Session Announcement Protocol (RFC 2974). This is not technically a
1045protocol handler in libavformat, it is a muxer and demuxer.
1046It is used for signalling of RTP streams, by announcing the SDP for the
1047streams regularly on a separate port.
1048
1049@subsection Muxer
1050
1051The syntax for a SAP url given to the muxer is:
1052@example
1053sap://@var{destination}[:@var{port}][?@var{options}]
1054@end example
1055
1056The RTP packets are sent to @var{destination} on port @var{port},
1057or to port 5004 if no port is specified.
1058@var{options} is a @code{&}-separated list. The following options
1059are supported:
1060
1061@table @option
1062
1063@item announce_addr=@var{address}
1064Specify the destination IP address for sending the announcements to.
1065If omitted, the announcements are sent to the commonly used SAP
1066announcement multicast address 224.2.127.254 (sap.mcast.net), or
1067ff0e::2:7ffe if @var{destination} is an IPv6 address.
1068
1069@item announce_port=@var{port}
1070Specify the port to send the announcements on, defaults to
10719875 if not specified.
1072
1073@item ttl=@var{ttl}
1074Specify the time to live value for the announcements and RTP packets,
1075defaults to 255.
1076
1077@item same_port=@var{0|1}
1078If set to 1, send all RTP streams on the same port pair. If zero (the
1079default), all streams are sent on unique ports, with each stream on a
1080port 2 numbers higher than the previous.
1081VLC/Live555 requires this to be set to 1, to be able to receive the stream.
1082The RTP stack in libavformat for receiving requires all streams to be sent
1083on unique ports.
1084@end table
1085
1086Example command lines follow.
1087
1088To broadcast a stream on the local subnet, for watching in VLC:
1089
1090@example
1091ffmpeg -re -i @var{input} -f sap sap://224.0.0.255?same_port=1
1092@end example
1093
1094Similarly, for watching in @command{ffplay}:
1095
1096@example
1097ffmpeg -re -i @var{input} -f sap sap://224.0.0.255
1098@end example
1099
1100And for watching in @command{ffplay}, over IPv6:
1101
1102@example
1103ffmpeg -re -i @var{input} -f sap sap://[ff0e::1:2:3:4]
1104@end example
1105
1106@subsection Demuxer
1107
1108The syntax for a SAP url given to the demuxer is:
1109@example
1110sap://[@var{address}][:@var{port}]
1111@end example
1112
1113@var{address} is the multicast address to listen for announcements on,
1114if omitted, the default 224.2.127.254 (sap.mcast.net) is used. @var{port}
1115is the port that is listened on, 9875 if omitted.
1116
1117The demuxers listens for announcements on the given address and port.
1118Once an announcement is received, it tries to receive that particular stream.
1119
1120Example command lines follow.
1121
1122To play back the first stream announced on the normal SAP multicast address:
1123
1124@example
1125ffplay sap://
1126@end example
1127
1128To play back the first stream announced on one the default IPv6 SAP multicast address:
1129
1130@example
1131ffplay sap://[ff0e::2:7ffe]
1132@end example
1133
1134@section sctp
1135
1136Stream Control Transmission Protocol.
1137
1138The accepted URL syntax is:
1139@example
1140sctp://@var{host}:@var{port}[?@var{options}]
1141@end example
1142
1143The protocol accepts the following options:
1144@table @option
1145@item listen
1146If set to any value, listen for an incoming connection. Outgoing connection is done by default.
1147
1148@item max_streams
1149Set the maximum number of streams. By default no limit is set.
1150@end table
1151
1152@section srtp
1153
1154Secure Real-time Transport Protocol.
1155
1156The accepted options are:
1157@table @option
1158@item srtp_in_suite
1159@item srtp_out_suite
1160Select input and output encoding suites.
1161
1162Supported values:
1163@table @samp
1164@item AES_CM_128_HMAC_SHA1_80
1165@item SRTP_AES128_CM_HMAC_SHA1_80
1166@item AES_CM_128_HMAC_SHA1_32
1167@item SRTP_AES128_CM_HMAC_SHA1_32
1168@end table
1169
1170@item srtp_in_params
1171@item srtp_out_params
1172Set input and output encoding parameters, which are expressed by a
1173base64-encoded representation of a binary block. The first 16 bytes of
1174this binary block are used as master key, the following 14 bytes are
1175used as master salt.
1176@end table
1177
1178@section subfile
1179
1180Virtually extract a segment of a file or another stream.
1181The underlying stream must be seekable.
1182
1183Accepted options:
1184@table @option
1185@item start
1186Start offset of the extracted segment, in bytes.
1187@item end
1188End offset of the extracted segment, in bytes.
1189@end table
1190
1191Examples:
1192
1193Extract a chapter from a DVD VOB file (start and end sectors obtained
1194externally and multiplied by 2048):
1195@example
1196subfile,,start,153391104,end,268142592,,:/media/dvd/VIDEO_TS/VTS_08_1.VOB
1197@end example
1198
1199Play an AVI file directly from a TAR archive:
1200@example
1201subfile,,start,183241728,end,366490624,,:archive.tar
1202@end example
1203
1204@section tee
1205
1206Writes the output to multiple protocols. The individual outputs are separated
1207by |
1208
1209@example
1210tee:file://path/to/local/this.avi|file://path/to/local/that.avi
1211@end example
1212
1213@section tcp
1214
1215Transmission Control Protocol.
1216
1217The required syntax for a TCP url is:
1218@example
1219tcp://@var{hostname}:@var{port}[?@var{options}]
1220@end example
1221
1222@var{options} contains a list of &-separated options of the form
1223@var{key}=@var{val}.
1224
1225The list of supported options follows.
1226
1227@table @option
1228@item listen=@var{1|0}
1229Listen for an incoming connection. Default value is 0.
1230
1231@item timeout=@var{microseconds}
1232Set raise error timeout, expressed in microseconds.
1233
1234This option is only relevant in read mode: if no data arrived in more
1235than this time interval, raise error.
1236
1237@item listen_timeout=@var{milliseconds}
1238Set listen timeout, expressed in milliseconds.
1239
1240@item recv_buffer_size=@var{bytes}
1241Set receive buffer size, expressed bytes.
1242
1243@item send_buffer_size=@var{bytes}
1244Set send buffer size, expressed bytes.
1245@end table
1246
1247The following example shows how to setup a listening TCP connection
1248with @command{ffmpeg}, which is then accessed with @command{ffplay}:
1249@example
1250ffmpeg -i @var{input} -f @var{format} tcp://@var{hostname}:@var{port}?listen
1251ffplay tcp://@var{hostname}:@var{port}
1252@end example
1253
1254@section tls
1255
1256Transport Layer Security (TLS) / Secure Sockets Layer (SSL)
1257
1258The required syntax for a TLS/SSL url is:
1259@example
1260tls://@var{hostname}:@var{port}[?@var{options}]
1261@end example
1262
1263The following parameters can be set via command line options
1264(or in code via @code{AVOption}s):
1265
1266@table @option
1267
1268@item ca_file, cafile=@var{filename}
1269A file containing certificate authority (CA) root certificates to treat
1270as trusted. If the linked TLS library contains a default this might not
1271need to be specified for verification to work, but not all libraries and
1272setups have defaults built in.
1273The file must be in OpenSSL PEM format.
1274
1275@item tls_verify=@var{1|0}
1276If enabled, try to verify the peer that we are communicating with.
1277Note, if using OpenSSL, this currently only makes sure that the
1278peer certificate is signed by one of the root certificates in the CA
1279database, but it does not validate that the certificate actually
1280matches the host name we are trying to connect to. (With GnuTLS,
1281the host name is validated as well.)
1282
1283This is disabled by default since it requires a CA database to be
1284provided by the caller in many cases.
1285
1286@item cert_file, cert=@var{filename}
1287A file containing a certificate to use in the handshake with the peer.
1288(When operating as server, in listen mode, this is more often required
1289by the peer, while client certificates only are mandated in certain
1290setups.)
1291
1292@item key_file, key=@var{filename}
1293A file containing the private key for the certificate.
1294
1295@item listen=@var{1|0}
1296If enabled, listen for connections on the provided port, and assume
1297the server role in the handshake instead of the client role.
1298
1299@end table
1300
1301Example command lines:
1302
1303To create a TLS/SSL server that serves an input stream.
1304
1305@example
1306ffmpeg -i @var{input} -f @var{format} tls://@var{hostname}:@var{port}?listen&cert=@var{server.crt}&key=@var{server.key}
1307@end example
1308
1309To play back a stream from the TLS/SSL server using @command{ffplay}:
1310
1311@example
1312ffplay tls://@var{hostname}:@var{port}
1313@end example
1314
1315@section udp
1316
1317User Datagram Protocol.
1318
1319The required syntax for an UDP URL is:
1320@example
1321udp://@var{hostname}:@var{port}[?@var{options}]
1322@end example
1323
1324@var{options} contains a list of &-separated options of the form @var{key}=@var{val}.
1325
1326In case threading is enabled on the system, a circular buffer is used
1327to store the incoming data, which allows one to reduce loss of data due to
1328UDP socket buffer overruns. The @var{fifo_size} and
1329@var{overrun_nonfatal} options are related to this buffer.
1330
1331The list of supported options follows.
1332
1333@table @option
1334@item buffer_size=@var{size}
1335Set the UDP maximum socket buffer size in bytes. This is used to set either
1336the receive or send buffer size, depending on what the socket is used for.
1337Default is 64KB. See also @var{fifo_size}.
1338
1339@item bitrate=@var{bitrate}
1340If set to nonzero, the output will have the specified constant bitrate if the
1341input has enough packets to sustain it.
1342
1343@item burst_bits=@var{bits}
1344When using @var{bitrate} this specifies the maximum number of bits in
1345packet bursts.
1346
1347@item localport=@var{port}
1348Override the local UDP port to bind with.
1349
1350@item localaddr=@var{addr}
1351Choose the local IP address. This is useful e.g. if sending multicast
1352and the host has multiple interfaces, where the user can choose
1353which interface to send on by specifying the IP address of that interface.
1354
1355@item pkt_size=@var{size}
1356Set the size in bytes of UDP packets.
1357
1358@item reuse=@var{1|0}
1359Explicitly allow or disallow reusing UDP sockets.
1360
1361@item ttl=@var{ttl}
1362Set the time to live value (for multicast only).
1363
1364@item connect=@var{1|0}
1365Initialize the UDP socket with @code{connect()}. In this case, the
1366destination address can't be changed with ff_udp_set_remote_url later.
1367If the destination address isn't known at the start, this option can
1368be specified in ff_udp_set_remote_url, too.
1369This allows finding out the source address for the packets with getsockname,
1370and makes writes return with AVERROR(ECONNREFUSED) if "destination
1371unreachable" is received.
1372For receiving, this gives the benefit of only receiving packets from
1373the specified peer address/port.
1374
1375@item sources=@var{address}[,@var{address}]
1376Only receive packets sent to the multicast group from one of the
1377specified sender IP addresses.
1378
1379@item block=@var{address}[,@var{address}]
1380Ignore packets sent to the multicast group from the specified
1381sender IP addresses.
1382
1383@item fifo_size=@var{units}
1384Set the UDP receiving circular buffer size, expressed as a number of
1385packets with size of 188 bytes. If not specified defaults to 7*4096.
1386
1387@item overrun_nonfatal=@var{1|0}
1388Survive in case of UDP receiving circular buffer overrun. Default
1389value is 0.
1390
1391@item timeout=@var{microseconds}
1392Set raise error timeout, expressed in microseconds.
1393
1394This option is only relevant in read mode: if no data arrived in more
1395than this time interval, raise error.
1396
1397@item broadcast=@var{1|0}
1398Explicitly allow or disallow UDP broadcasting.
1399
1400Note that broadcasting may not work properly on networks having
1401a broadcast storm protection.
1402@end table
1403
1404@subsection Examples
1405
1406@itemize
1407@item
1408Use @command{ffmpeg} to stream over UDP to a remote endpoint:
1409@example
1410ffmpeg -i @var{input} -f @var{format} udp://@var{hostname}:@var{port}
1411@end example
1412
1413@item
1414Use @command{ffmpeg} to stream in mpegts format over UDP using 188
1415sized UDP packets, using a large input buffer:
1416@example
1417ffmpeg -i @var{input} -f mpegts udp://@var{hostname}:@var{port}?pkt_size=188&buffer_size=65535
1418@end example
1419
1420@item
1421Use @command{ffmpeg} to receive over UDP from a remote endpoint:
1422@example
1423ffmpeg -i udp://[@var{multicast-address}]:@var{port} ...
1424@end example
1425@end itemize
1426
1427@section unix
1428
1429Unix local socket
1430
1431The required syntax for a Unix socket URL is:
1432
1433@example
1434unix://@var{filepath}
1435@end example
1436
1437The following parameters can be set via command line options
1438(or in code via @code{AVOption}s):
1439
1440@table @option
1441@item timeout
1442Timeout in ms.
1443@item listen
1444Create the Unix socket in listening mode.
1445@end table
1446
1447@c man end PROTOCOLS
1448