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.

709 lines
20KB

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