]> git.sesse.net Git - ffmpeg/blob - doc/protocols.texi
Merge commit '88bd7fdc821aaa0cbcf44cf075c62aaa42121e3f'
[ffmpeg] / doc / protocols.texi
1 @chapter Protocols
2 @c man begin PROTOCOLS
3
4 Protocols are configured elements in FFmpeg which allow to access
5 resources which require the use of a particular protocol.
6
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".
10
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}".
16
17 The option "-protocols" of the ff* tools will display the list of
18 supported protocols.
19
20 A description of the currently available protocols follows.
21
22 @section bluray
23
24 Read BluRay playlist.
25
26 The accepted options are:
27 @table @option
28
29 @item angle
30 BluRay angle
31
32 @item chapter
33 Start chapter (1...N)
34
35 @item playlist
36 Playlist to read (BDMV/PLAYLIST/?????.mpls)
37
38 @end table
39
40 Examples:
41
42 Read longest playlist from BluRay mounted to /mnt/bluray:
43 @example
44 bluray:/mnt/bluray
45 @end example
46
47 Read angle 2 of playlist 4 from BluRay mounted to /mnt/bluray, start from chapter 2:
48 @example
49 -playlist 4 -angle 2 -chapter 2 bluray:/mnt/bluray
50 @end example
51
52 @section concat
53
54 Physical concatenation protocol.
55
56 Allow to read and seek from many resource in sequence as if they were
57 a unique resource.
58
59 A URL accepted by this protocol has the syntax:
60 @example
61 concat:@var{URL1}|@var{URL2}|...|@var{URLN}
62 @end example
63
64 where @var{URL1}, @var{URL2}, ..., @var{URLN} are the urls of the
65 resource to be concatenated, each one possibly specifying a distinct
66 protocol.
67
68 For example to read a sequence of files @file{split1.mpeg},
69 @file{split2.mpeg}, @file{split3.mpeg} with @command{ffplay} use the
70 command:
71 @example
72 ffplay concat:split1.mpeg\|split2.mpeg\|split3.mpeg
73 @end example
74
75 Note that you may need to escape the character "|" which is special for
76 many shells.
77
78 @section data
79
80 Data in-line in the URI. See @url{http://en.wikipedia.org/wiki/Data_URI_scheme}.
81
82 For example, to convert a GIF file given inline with @command{ffmpeg}:
83 @example
84 ffmpeg -i "data:image/gif;base64,R0lGODdhCAAIAMIEAAAAAAAA//8AAP//AP///////////////ywAAAAACAAIAAADF0gEDLojDgdGiJdJqUX02iB4E8Q9jUMkADs=" smiley.png
85 @end example
86
87 @section file
88
89 File access protocol.
90
91 Allow to read from or read to a file.
92
93 For example to read from a file @file{input.mpeg} with @command{ffmpeg}
94 use the command:
95 @example
96 ffmpeg -i file:input.mpeg output.mpeg
97 @end example
98
99 The ff* tools default to the file protocol, that is a resource
100 specified with the name "FILE.mpeg" is interpreted as the URL
101 "file:FILE.mpeg".
102
103 @section gopher
104
105 Gopher protocol.
106
107 @section hls
108
109 Read Apple HTTP Live Streaming compliant segmented stream as
110 a uniform one. The M3U8 playlists describing the segments can be
111 remote HTTP resources or local files, accessed using the standard
112 file protocol.
113 The nested protocol is declared by specifying
114 "+@var{proto}" after the hls URI scheme name, where @var{proto}
115 is either "file" or "http".
116
117 @example
118 hls+http://host/path/to/remote/resource.m3u8
119 hls+file://path/to/local/resource.m3u8
120 @end example
121
122 Using this protocol is discouraged - the hls demuxer should work
123 just as well (if not, please report the issues) and is more complete.
124 To use the hls demuxer instead, simply use the direct URLs to the
125 m3u8 files.
126
127 @section http
128
129 HTTP (Hyper Text Transfer Protocol).
130
131 This protocol accepts the following options.
132
133 @table @option
134 @item seekable
135 Control seekability of connection. If set to 1 the resource is
136 supposed to be seekable, if set to 0 it is assumed not to be seekable,
137 if set to -1 it will try to autodetect if it is seekable. Default
138 value is -1.
139
140 @item chunked_post
141 If set to 1 use chunked transfer-encoding for posts, default is 1.
142
143 @item headers
144 Set custom HTTP headers, can override built in default headers. The
145 value must be a string encoding the headers.
146
147 @item content_type
148 Force a content type.
149
150 @item user-agent
151 Override User-Agent header. If not specified the protocol will use a
152 string describing the libavformat build.
153
154 @item multiple_requests
155 Use persistent connections if set to 1. By default it is 0.
156
157 @item post_data
158 Set custom HTTP post data.
159
160 @item timeout
161 Set timeout of socket I/O operations used by the underlying low level
162 operation. By default it is set to -1, which means that the timeout is
163 not specified.
164
165 @item mime_type
166 Set MIME type.
167
168 @item cookies
169 Set the cookies to be sent in future requests. The format of each cookie is the
170 same as the value of a Set-Cookie HTTP response field. Multiple cookies can be
171 delimited by a newline character.
172 @end table
173
174 @subsection HTTP Cookies
175
176 Some HTTP requests will be denied unless cookie values are passed in with the
177 request. The @option{cookies} option allows these cookies to be specified. At
178 the very least, each cookie must specify a value along with a path and domain.
179 HTTP requests that match both the domain and path will automatically include the
180 cookie value in the HTTP Cookie header field. Multiple cookies can be delimited
181 by a newline.
182
183 The required syntax to play a stream specifying a cookie is:
184 @example
185 ffplay -cookies "nlqptid=nltid=tsn; path=/; domain=somedomain.com;" http://somedomain.com/somestream.m3u8
186 @end example
187
188 @section mmst
189
190 MMS (Microsoft Media Server) protocol over TCP.
191
192 @section mmsh
193
194 MMS (Microsoft Media Server) protocol over HTTP.
195
196 The required syntax is:
197 @example
198 mmsh://@var{server}[:@var{port}][/@var{app}][/@var{playpath}]
199 @end example
200
201 @section md5
202
203 MD5 output protocol.
204
205 Computes the MD5 hash of the data to be written, and on close writes
206 this to the designated output or stdout if none is specified. It can
207 be used to test muxers without writing an actual file.
208
209 Some examples follow.
210 @example
211 # Write the MD5 hash of the encoded AVI file to the file output.avi.md5.
212 ffmpeg -i input.flv -f avi -y md5:output.avi.md5
213
214 # Write the MD5 hash of the encoded AVI file to stdout.
215 ffmpeg -i input.flv -f avi -y md5:
216 @end example
217
218 Note that some formats (typically MOV) require the output protocol to
219 be seekable, so they will fail with the MD5 output protocol.
220
221 @section pipe
222
223 UNIX pipe access protocol.
224
225 Allow to read and write from UNIX pipes.
226
227 The accepted syntax is:
228 @example
229 pipe:[@var{number}]
230 @end example
231
232 @var{number} is the number corresponding to the file descriptor of the
233 pipe (e.g. 0 for stdin, 1 for stdout, 2 for stderr).  If @var{number}
234 is not specified, by default the stdout file descriptor will be used
235 for writing, stdin for reading.
236
237 For example to read from stdin with @command{ffmpeg}:
238 @example
239 cat test.wav | ffmpeg -i pipe:0
240 # ...this is the same as...
241 cat test.wav | ffmpeg -i pipe:
242 @end example
243
244 For writing to stdout with @command{ffmpeg}:
245 @example
246 ffmpeg -i test.wav -f avi pipe:1 | cat > test.avi
247 # ...this is the same as...
248 ffmpeg -i test.wav -f avi pipe: | cat > test.avi
249 @end example
250
251 Note that some formats (typically MOV), require the output protocol to
252 be seekable, so they will fail with the pipe output protocol.
253
254 @section rtmp
255
256 Real-Time Messaging Protocol.
257
258 The Real-Time Messaging Protocol (RTMP) is used for streaming multimedia
259 content across a TCP/IP network.
260
261 The required syntax is:
262 @example
263 rtmp://@var{server}[:@var{port}][/@var{app}][/@var{instance}][/@var{playpath}]
264 @end example
265
266 The accepted parameters are:
267 @table @option
268
269 @item server
270 The address of the RTMP server.
271
272 @item port
273 The number of the TCP port to use (by default is 1935).
274
275 @item app
276 It is the name of the application to access. It usually corresponds to
277 the path where the application is installed on the RTMP server
278 (e.g. @file{/ondemand/}, @file{/flash/live/}, etc.). You can override
279 the value parsed from the URI through the @code{rtmp_app} option, too.
280
281 @item playpath
282 It is the path or name of the resource to play with reference to the
283 application specified in @var{app}, may be prefixed by "mp4:". You
284 can override the value parsed from the URI through the @code{rtmp_playpath}
285 option, too.
286
287 @item listen
288 Act as a server, listening for an incoming connection.
289
290 @item timeout
291 Maximum time to wait for the incoming connection. Implies listen.
292 @end table
293
294 Additionally, the following parameters can be set via command line options
295 (or in code via @code{AVOption}s):
296 @table @option
297
298 @item rtmp_app
299 Name of application to connect on the RTMP server. This option
300 overrides the parameter specified in the URI.
301
302 @item rtmp_buffer
303 Set the client buffer time in milliseconds. The default is 3000.
304
305 @item rtmp_conn
306 Extra arbitrary AMF connection parameters, parsed from a string,
307 e.g. like @code{B:1 S:authMe O:1 NN:code:1.23 NS:flag:ok O:0}.
308 Each value is prefixed by a single character denoting the type,
309 B for Boolean, N for number, S for string, O for object, or Z for null,
310 followed by a colon. For Booleans the data must be either 0 or 1 for
311 FALSE or TRUE, respectively.  Likewise for Objects the data must be 0 or
312 1 to end or begin an object, respectively. Data items in subobjects may
313 be named, by prefixing the type with 'N' and specifying the name before
314 the value (i.e. @code{NB:myFlag:1}). This option may be used multiple
315 times to construct arbitrary AMF sequences.
316
317 @item rtmp_flashver
318 Version of the Flash plugin used to run the SWF player. The default
319 is LNX 9,0,124,2.
320
321 @item rtmp_flush_interval
322 Number of packets flushed in the same request (RTMPT only). The default
323 is 10.
324
325 @item rtmp_live
326 Specify that the media is a live stream. No resuming or seeking in
327 live streams is possible. The default value is @code{any}, which means the
328 subscriber first tries to play the live stream specified in the
329 playpath. If a live stream of that name is not found, it plays the
330 recorded stream. The other possible values are @code{live} and
331 @code{recorded}.
332
333 @item rtmp_pageurl
334 URL of the web page in which the media was embedded. By default no
335 value will be sent.
336
337 @item rtmp_playpath
338 Stream identifier to play or to publish. This option overrides the
339 parameter specified in the URI.
340
341 @item rtmp_subscribe
342 Name of live stream to subscribe to. By default no value will be sent.
343 It is only sent if the option is specified or if rtmp_live
344 is set to live.
345
346 @item rtmp_swfhash
347 SHA256 hash of the decompressed SWF file (32 bytes).
348
349 @item rtmp_swfsize
350 Size of the decompressed SWF file, required for SWFVerification.
351
352 @item rtmp_swfurl
353 URL of the SWF player for the media. By default no value will be sent.
354
355 @item rtmp_swfverify
356 URL to player swf file, compute hash/size automatically.
357
358 @item rtmp_tcurl
359 URL of the target stream. Defaults to proto://host[:port]/app.
360
361 @end table
362
363 For example to read with @command{ffplay} a multimedia resource named
364 "sample" from the application "vod" from an RTMP server "myserver":
365 @example
366 ffplay rtmp://myserver/vod/sample
367 @end example
368
369 @section rtmpe
370
371 Encrypted Real-Time Messaging Protocol.
372
373 The Encrypted Real-Time Messaging Protocol (RTMPE) is used for
374 streaming multimedia content within standard cryptographic primitives,
375 consisting of Diffie-Hellman key exchange and HMACSHA256, generating
376 a pair of RC4 keys.
377
378 @section rtmps
379
380 Real-Time Messaging Protocol over a secure SSL connection.
381
382 The Real-Time Messaging Protocol (RTMPS) is used for streaming
383 multimedia content across an encrypted connection.
384
385 @section rtmpt
386
387 Real-Time Messaging Protocol tunneled through HTTP.
388
389 The Real-Time Messaging Protocol tunneled through HTTP (RTMPT) is used
390 for streaming multimedia content within HTTP requests to traverse
391 firewalls.
392
393 @section rtmpte
394
395 Encrypted Real-Time Messaging Protocol tunneled through HTTP.
396
397 The Encrypted Real-Time Messaging Protocol tunneled through HTTP (RTMPTE)
398 is used for streaming multimedia content within HTTP requests to traverse
399 firewalls.
400
401 @section rtmpts
402
403 Real-Time Messaging Protocol tunneled through HTTPS.
404
405 The Real-Time Messaging Protocol tunneled through HTTPS (RTMPTS) is used
406 for streaming multimedia content within HTTPS requests to traverse
407 firewalls.
408
409 @section rtmp, rtmpe, rtmps, rtmpt, rtmpte
410
411 Real-Time Messaging Protocol and its variants supported through
412 librtmp.
413
414 Requires the presence of the librtmp headers and library during
415 configuration. You need to explicitly configure the build with
416 "--enable-librtmp". If enabled this will replace the native RTMP
417 protocol.
418
419 This protocol provides most client functions and a few server
420 functions needed to support RTMP, RTMP tunneled in HTTP (RTMPT),
421 encrypted RTMP (RTMPE), RTMP over SSL/TLS (RTMPS) and tunneled
422 variants of these encrypted types (RTMPTE, RTMPTS).
423
424 The required syntax is:
425 @example
426 @var{rtmp_proto}://@var{server}[:@var{port}][/@var{app}][/@var{playpath}] @var{options}
427 @end example
428
429 where @var{rtmp_proto} is one of the strings "rtmp", "rtmpt", "rtmpe",
430 "rtmps", "rtmpte", "rtmpts" corresponding to each RTMP variant, and
431 @var{server}, @var{port}, @var{app} and @var{playpath} have the same
432 meaning as specified for the RTMP native protocol.
433 @var{options} contains a list of space-separated options of the form
434 @var{key}=@var{val}.
435
436 See the librtmp manual page (man 3 librtmp) for more information.
437
438 For example, to stream a file in real-time to an RTMP server using
439 @command{ffmpeg}:
440 @example
441 ffmpeg -re -i myfile -f flv rtmp://myserver/live/mystream
442 @end example
443
444 To play the same stream using @command{ffplay}:
445 @example
446 ffplay "rtmp://myserver/live/mystream live=1"
447 @end example
448
449 @section rtp
450
451 Real-Time Protocol.
452
453 @section rtsp
454
455 RTSP is not technically a protocol handler in libavformat, it is a demuxer
456 and muxer. The demuxer supports both normal RTSP (with data transferred
457 over RTP; this is used by e.g. Apple and Microsoft) and Real-RTSP (with
458 data transferred over RDT).
459
460 The muxer can be used to send a stream using RTSP ANNOUNCE to a server
461 supporting it (currently Darwin Streaming Server and Mischa Spiegelmock's
462 @uref{http://github.com/revmischa/rtsp-server, RTSP server}).
463
464 The required syntax for a RTSP url is:
465 @example
466 rtsp://@var{hostname}[:@var{port}]/@var{path}
467 @end example
468
469 The following options (set on the @command{ffmpeg}/@command{ffplay} command
470 line, or set in code via @code{AVOption}s or in @code{avformat_open_input}),
471 are supported:
472
473 Flags for @code{rtsp_transport}:
474
475 @table @option
476
477 @item udp
478 Use UDP as lower transport protocol.
479
480 @item tcp
481 Use TCP (interleaving within the RTSP control channel) as lower
482 transport protocol.
483
484 @item udp_multicast
485 Use UDP multicast as lower transport protocol.
486
487 @item http
488 Use HTTP tunneling as lower transport protocol, which is useful for
489 passing proxies.
490 @end table
491
492 Multiple lower transport protocols may be specified, in that case they are
493 tried one at a time (if the setup of one fails, the next one is tried).
494 For the muxer, only the @code{tcp} and @code{udp} options are supported.
495
496 Flags for @code{rtsp_flags}:
497
498 @table @option
499 @item filter_src
500 Accept packets only from negotiated peer address and port.
501 @item listen
502 Act as a server, listening for an incoming connection.
503 @end table
504
505 When receiving data over UDP, the demuxer tries to reorder received packets
506 (since they may arrive out of order, or packets may get lost totally). This
507 can be disabled by setting the maximum demuxing delay to zero (via
508 the @code{max_delay} field of AVFormatContext).
509
510 When watching multi-bitrate Real-RTSP streams with @command{ffplay}, the
511 streams to display can be chosen with @code{-vst} @var{n} and
512 @code{-ast} @var{n} for video and audio respectively, and can be switched
513 on the fly by pressing @code{v} and @code{a}.
514
515 Example command lines:
516
517 To watch a stream over UDP, with a max reordering delay of 0.5 seconds:
518
519 @example
520 ffplay -max_delay 500000 -rtsp_transport udp rtsp://server/video.mp4
521 @end example
522
523 To watch a stream tunneled over HTTP:
524
525 @example
526 ffplay -rtsp_transport http rtsp://server/video.mp4
527 @end example
528
529 To send a stream in realtime to a RTSP server, for others to watch:
530
531 @example
532 ffmpeg -re -i @var{input} -f rtsp -muxdelay 0.1 rtsp://server/live.sdp
533 @end example
534
535 To receive a stream in realtime:
536
537 @example
538 ffmpeg -rtsp_flags listen -i rtsp://ownaddress/live.sdp @var{output}
539 @end example
540
541 @section sap
542
543 Session Announcement Protocol (RFC 2974). This is not technically a
544 protocol handler in libavformat, it is a muxer and demuxer.
545 It is used for signalling of RTP streams, by announcing the SDP for the
546 streams regularly on a separate port.
547
548 @subsection Muxer
549
550 The syntax for a SAP url given to the muxer is:
551 @example
552 sap://@var{destination}[:@var{port}][?@var{options}]
553 @end example
554
555 The RTP packets are sent to @var{destination} on port @var{port},
556 or to port 5004 if no port is specified.
557 @var{options} is a @code{&}-separated list. The following options
558 are supported:
559
560 @table @option
561
562 @item announce_addr=@var{address}
563 Specify the destination IP address for sending the announcements to.
564 If omitted, the announcements are sent to the commonly used SAP
565 announcement multicast address 224.2.127.254 (sap.mcast.net), or
566 ff0e::2:7ffe if @var{destination} is an IPv6 address.
567
568 @item announce_port=@var{port}
569 Specify the port to send the announcements on, defaults to
570 9875 if not specified.
571
572 @item ttl=@var{ttl}
573 Specify the time to live value for the announcements and RTP packets,
574 defaults to 255.
575
576 @item same_port=@var{0|1}
577 If set to 1, send all RTP streams on the same port pair. If zero (the
578 default), all streams are sent on unique ports, with each stream on a
579 port 2 numbers higher than the previous.
580 VLC/Live555 requires this to be set to 1, to be able to receive the stream.
581 The RTP stack in libavformat for receiving requires all streams to be sent
582 on unique ports.
583 @end table
584
585 Example command lines follow.
586
587 To broadcast a stream on the local subnet, for watching in VLC:
588
589 @example
590 ffmpeg -re -i @var{input} -f sap sap://224.0.0.255?same_port=1
591 @end example
592
593 Similarly, for watching in @command{ffplay}:
594
595 @example
596 ffmpeg -re -i @var{input} -f sap sap://224.0.0.255
597 @end example
598
599 And for watching in @command{ffplay}, over IPv6:
600
601 @example
602 ffmpeg -re -i @var{input} -f sap sap://[ff0e::1:2:3:4]
603 @end example
604
605 @subsection Demuxer
606
607 The syntax for a SAP url given to the demuxer is:
608 @example
609 sap://[@var{address}][:@var{port}]
610 @end example
611
612 @var{address} is the multicast address to listen for announcements on,
613 if omitted, the default 224.2.127.254 (sap.mcast.net) is used. @var{port}
614 is the port that is listened on, 9875 if omitted.
615
616 The demuxers listens for announcements on the given address and port.
617 Once an announcement is received, it tries to receive that particular stream.
618
619 Example command lines follow.
620
621 To play back the first stream announced on the normal SAP multicast address:
622
623 @example
624 ffplay sap://
625 @end example
626
627 To play back the first stream announced on one the default IPv6 SAP multicast address:
628
629 @example
630 ffplay sap://[ff0e::2:7ffe]
631 @end example
632
633 @section tcp
634
635 Trasmission Control Protocol.
636
637 The required syntax for a TCP url is:
638 @example
639 tcp://@var{hostname}:@var{port}[?@var{options}]
640 @end example
641
642 @table @option
643
644 @item listen
645 Listen for an incoming connection
646
647 @item timeout=@var{microseconds}
648 In read mode: if no data arrived in more than this time interval, raise error.
649 In write mode: if socket cannot be written in more than this time interval, raise error.
650 This also sets timeout on TCP connection establishing.
651
652 @example
653 ffmpeg -i @var{input} -f @var{format} tcp://@var{hostname}:@var{port}?listen
654 ffplay tcp://@var{hostname}:@var{port}
655 @end example
656
657 @end table
658
659 @section tls
660
661 Transport Layer Security/Secure Sockets Layer
662
663 The required syntax for a TLS/SSL url is:
664 @example
665 tls://@var{hostname}:@var{port}[?@var{options}]
666 @end example
667
668 @table @option
669
670 @item listen
671 Act as a server, listening for an incoming connection.
672
673 @item cafile=@var{filename}
674 Certificate authority file. The file must be in OpenSSL PEM format.
675
676 @item cert=@var{filename}
677 Certificate file. The file must be in OpenSSL PEM format.
678
679 @item key=@var{filename}
680 Private key file.
681
682 @item verify=@var{0|1}
683 Verify the peer's certificate.
684
685 @end table
686
687 Example command lines:
688
689 To create a TLS/SSL server that serves an input stream.
690
691 @example
692 ffmpeg -i @var{input} -f @var{format} tls://@var{hostname}:@var{port}?listen&cert=@var{server.crt}&key=@var{server.key}
693 @end example
694
695 To play back a stream from the TLS/SSL server using @command{ffplay}:
696
697 @example
698 ffplay tls://@var{hostname}:@var{port}
699 @end example
700
701 @section udp
702
703 User Datagram Protocol.
704
705 The required syntax for a UDP url is:
706 @example
707 udp://@var{hostname}:@var{port}[?@var{options}]
708 @end example
709
710 @var{options} contains a list of &-separated options of the form @var{key}=@var{val}.
711
712 In case threading is enabled on the system, a circular buffer is used
713 to store the incoming data, which allows to reduce loss of data due to
714 UDP socket buffer overruns. The @var{fifo_size} and
715 @var{overrun_nonfatal} options are related to this buffer.
716
717 The list of supported options follows.
718
719 @table @option
720
721 @item buffer_size=@var{size}
722 Set the UDP socket buffer size in bytes. This is used both for the
723 receiving and the sending buffer size.
724
725 @item localport=@var{port}
726 Override the local UDP port to bind with.
727
728 @item localaddr=@var{addr}
729 Choose the local IP address. This is useful e.g. if sending multicast
730 and the host has multiple interfaces, where the user can choose
731 which interface to send on by specifying the IP address of that interface.
732
733 @item pkt_size=@var{size}
734 Set the size in bytes of UDP packets.
735
736 @item reuse=@var{1|0}
737 Explicitly allow or disallow reusing UDP sockets.
738
739 @item ttl=@var{ttl}
740 Set the time to live value (for multicast only).
741
742 @item connect=@var{1|0}
743 Initialize the UDP socket with @code{connect()}. In this case, the
744 destination address can't be changed with ff_udp_set_remote_url later.
745 If the destination address isn't known at the start, this option can
746 be specified in ff_udp_set_remote_url, too.
747 This allows finding out the source address for the packets with getsockname,
748 and makes writes return with AVERROR(ECONNREFUSED) if "destination
749 unreachable" is received.
750 For receiving, this gives the benefit of only receiving packets from
751 the specified peer address/port.
752
753 @item sources=@var{address}[,@var{address}]
754 Only receive packets sent to the multicast group from one of the
755 specified sender IP addresses.
756
757 @item block=@var{address}[,@var{address}]
758 Ignore packets sent to the multicast group from the specified
759 sender IP addresses.
760
761 @item fifo_size=@var{units}
762 Set the UDP receiving circular buffer size, expressed as a number of
763 packets with size of 188 bytes. If not specified defaults to 7*4096.
764
765 @item overrun_nonfatal=@var{1|0}
766 Survive in case of UDP receiving circular buffer overrun. Default
767 value is 0.
768
769 @item timeout=@var{microseconds}
770 In read mode: if no data arrived in more than this time interval, raise error.
771 @end table
772
773 Some usage examples of the UDP protocol with @command{ffmpeg} follow.
774
775 To stream over UDP to a remote endpoint:
776 @example
777 ffmpeg -i @var{input} -f @var{format} udp://@var{hostname}:@var{port}
778 @end example
779
780 To stream in mpegts format over UDP using 188 sized UDP packets, using a large input buffer:
781 @example
782 ffmpeg -i @var{input} -f mpegts udp://@var{hostname}:@var{port}?pkt_size=188&buffer_size=65535
783 @end example
784
785 To receive over UDP from a remote endpoint:
786 @example
787 ffmpeg -i udp://[@var{multicast-address}]:@var{port}
788 @end example
789
790 @c man end PROTOCOLS