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.

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