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.

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