You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

772 lines
22KB

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