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.

1910 lines
58KB

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