demuxers.texi 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  1. @chapter Demuxers
  2. @c man begin DEMUXERS
  3. Demuxers are configured elements in FFmpeg that can read the
  4. multimedia streams from a particular type of file.
  5. When you configure your FFmpeg build, all the supported demuxers
  6. are enabled by default. You can list all available ones using the
  7. configure option @code{--list-demuxers}.
  8. You can disable all the demuxers using the configure option
  9. @code{--disable-demuxers}, and selectively enable a single demuxer with
  10. the option @code{--enable-demuxer=@var{DEMUXER}}, or disable it
  11. with the option @code{--disable-demuxer=@var{DEMUXER}}.
  12. The option @code{-demuxers} of the ff* tools will display the list of
  13. enabled demuxers. Use @code{-formats} to view a combined list of
  14. enabled demuxers and muxers.
  15. The description of some of the currently available demuxers follows.
  16. @section aa
  17. Audible Format 2, 3, and 4 demuxer.
  18. This demuxer is used to demux Audible Format 2, 3, and 4 (.aa) files.
  19. @section applehttp
  20. Apple HTTP Live Streaming demuxer.
  21. This demuxer presents all AVStreams from all variant streams.
  22. The id field is set to the bitrate variant index number. By setting
  23. the discard flags on AVStreams (by pressing 'a' or 'v' in ffplay),
  24. the caller can decide which variant streams to actually receive.
  25. The total bitrate of the variant that the stream belongs to is
  26. available in a metadata key named "variant_bitrate".
  27. @section apng
  28. Animated Portable Network Graphics demuxer.
  29. This demuxer is used to demux APNG files.
  30. All headers, but the PNG signature, up to (but not including) the first
  31. fcTL chunk are transmitted as extradata.
  32. Frames are then split as being all the chunks between two fcTL ones, or
  33. between the last fcTL and IEND chunks.
  34. @table @option
  35. @item -ignore_loop @var{bool}
  36. Ignore the loop variable in the file if set.
  37. @item -max_fps @var{int}
  38. Maximum framerate in frames per second (0 for no limit).
  39. @item -default_fps @var{int}
  40. Default framerate in frames per second when none is specified in the file
  41. (0 meaning as fast as possible).
  42. @end table
  43. @section asf
  44. Advanced Systems Format demuxer.
  45. This demuxer is used to demux ASF files and MMS network streams.
  46. @table @option
  47. @item -no_resync_search @var{bool}
  48. Do not try to resynchronize by looking for a certain optional start code.
  49. @end table
  50. @anchor{concat}
  51. @section concat
  52. Virtual concatenation script demuxer.
  53. This demuxer reads a list of files and other directives from a text file and
  54. demuxes them one after the other, as if all their packets had been muxed
  55. together.
  56. The timestamps in the files are adjusted so that the first file starts at 0
  57. and each next file starts where the previous one finishes. Note that it is
  58. done globally and may cause gaps if all streams do not have exactly the same
  59. length.
  60. All files must have the same streams (same codecs, same time base, etc.).
  61. The duration of each file is used to adjust the timestamps of the next file:
  62. if the duration is incorrect (because it was computed using the bit-rate or
  63. because the file is truncated, for example), it can cause artifacts. The
  64. @code{duration} directive can be used to override the duration stored in
  65. each file.
  66. @subsection Syntax
  67. The script is a text file in extended-ASCII, with one directive per line.
  68. Empty lines, leading spaces and lines starting with '#' are ignored. The
  69. following directive is recognized:
  70. @table @option
  71. @item @code{file @var{path}}
  72. Path to a file to read; special characters and spaces must be escaped with
  73. backslash or single quotes.
  74. All subsequent file-related directives apply to that file.
  75. @item @code{ffconcat version 1.0}
  76. Identify the script type and version. It also sets the @option{safe} option
  77. to 1 if it was -1.
  78. To make FFmpeg recognize the format automatically, this directive must
  79. appear exactly as is (no extra space or byte-order-mark) on the very first
  80. line of the script.
  81. @item @code{duration @var{dur}}
  82. Duration of the file. This information can be specified from the file;
  83. specifying it here may be more efficient or help if the information from the
  84. file is not available or accurate.
  85. If the duration is set for all files, then it is possible to seek in the
  86. whole concatenated video.
  87. @item @code{inpoint @var{timestamp}}
  88. In point of the file. When the demuxer opens the file it instantly seeks to the
  89. specified timestamp. Seeking is done so that all streams can be presented
  90. successfully at In point.
  91. This directive works best with intra frame codecs, because for non-intra frame
  92. ones you will usually get extra packets before the actual In point and the
  93. decoded content will most likely contain frames before In point too.
  94. For each file, packets before the file In point will have timestamps less than
  95. the calculated start timestamp of the file (negative in case of the first
  96. file), and the duration of the files (if not specified by the @code{duration}
  97. directive) will be reduced based on their specified In point.
  98. Because of potential packets before the specified In point, packet timestamps
  99. may overlap between two concatenated files.
  100. @item @code{outpoint @var{timestamp}}
  101. Out point of the file. When the demuxer reaches the specified decoding
  102. timestamp in any of the streams, it handles it as an end of file condition and
  103. skips the current and all the remaining packets from all streams.
  104. Out point is exclusive, which means that the demuxer will not output packets
  105. with a decoding timestamp greater or equal to Out point.
  106. This directive works best with intra frame codecs and formats where all streams
  107. are tightly interleaved. For non-intra frame codecs you will usually get
  108. additional packets with presentation timestamp after Out point therefore the
  109. decoded content will most likely contain frames after Out point too. If your
  110. streams are not tightly interleaved you may not get all the packets from all
  111. streams before Out point and you may only will be able to decode the earliest
  112. stream until Out point.
  113. The duration of the files (if not specified by the @code{duration}
  114. directive) will be reduced based on their specified Out point.
  115. @item @code{file_packet_metadata @var{key=value}}
  116. Metadata of the packets of the file. The specified metadata will be set for
  117. each file packet. You can specify this directive multiple times to add multiple
  118. metadata entries.
  119. @item @code{stream}
  120. Introduce a stream in the virtual file.
  121. All subsequent stream-related directives apply to the last introduced
  122. stream.
  123. Some streams properties must be set in order to allow identifying the
  124. matching streams in the subfiles.
  125. If no streams are defined in the script, the streams from the first file are
  126. copied.
  127. @item @code{exact_stream_id @var{id}}
  128. Set the id of the stream.
  129. If this directive is given, the string with the corresponding id in the
  130. subfiles will be used.
  131. This is especially useful for MPEG-PS (VOB) files, where the order of the
  132. streams is not reliable.
  133. @end table
  134. @subsection Options
  135. This demuxer accepts the following option:
  136. @table @option
  137. @item safe
  138. If set to 1, reject unsafe file paths. A file path is considered safe if it
  139. does not contain a protocol specification and is relative and all components
  140. only contain characters from the portable character set (letters, digits,
  141. period, underscore and hyphen) and have no period at the beginning of a
  142. component.
  143. If set to 0, any file name is accepted.
  144. The default is 1.
  145. -1 is equivalent to 1 if the format was automatically
  146. probed and 0 otherwise.
  147. @item auto_convert
  148. If set to 1, try to perform automatic conversions on packet data to make the
  149. streams concatenable.
  150. The default is 1.
  151. Currently, the only conversion is adding the h264_mp4toannexb bitstream
  152. filter to H.264 streams in MP4 format. This is necessary in particular if
  153. there are resolution changes.
  154. @item segment_time_metadata
  155. If set to 1, every packet will contain the @var{lavf.concat.start_time} and the
  156. @var{lavf.concat.duration} packet metadata values which are the start_time and
  157. the duration of the respective file segments in the concatenated output
  158. expressed in microseconds. The duration metadata is only set if it is known
  159. based on the concat file.
  160. The default is 0.
  161. @end table
  162. @subsection Examples
  163. @itemize
  164. @item
  165. Use absolute filenames and include some comments:
  166. @example
  167. # my first filename
  168. file /mnt/share/file-1.wav
  169. # my second filename including whitespace
  170. file '/mnt/share/file 2.wav'
  171. # my third filename including whitespace plus single quote
  172. file '/mnt/share/file 3'\''.wav'
  173. @end example
  174. @item
  175. Allow for input format auto-probing, use safe filenames and set the duration of
  176. the first file:
  177. @example
  178. ffconcat version 1.0
  179. file file-1.wav
  180. duration 20.0
  181. file subdir/file-2.wav
  182. @end example
  183. @end itemize
  184. @section dash
  185. Dynamic Adaptive Streaming over HTTP demuxer.
  186. This demuxer presents all AVStreams found in the manifest.
  187. By setting the discard flags on AVStreams the caller can decide
  188. which streams to actually receive.
  189. Each stream mirrors the @code{id} and @code{bandwidth} properties from the
  190. @code{<Representation>} as metadata keys named "id" and "variant_bitrate" respectively.
  191. @section flv, live_flv
  192. Adobe Flash Video Format demuxer.
  193. This demuxer is used to demux FLV files and RTMP network streams. In case of live network streams, if you force format, you may use live_flv option instead of flv to survive timestamp discontinuities.
  194. @example
  195. ffmpeg -f flv -i myfile.flv ...
  196. ffmpeg -f live_flv -i rtmp://<any.server>/anything/key ....
  197. @end example
  198. @table @option
  199. @item -flv_metadata @var{bool}
  200. Allocate the streams according to the onMetaData array content.
  201. @item -flv_ignore_prevtag @var{bool}
  202. Ignore the size of previous tag value.
  203. @item -flv_full_metadata @var{bool}
  204. Output all context of the onMetadata.
  205. @end table
  206. @section gif
  207. Animated GIF demuxer.
  208. It accepts the following options:
  209. @table @option
  210. @item min_delay
  211. Set the minimum valid delay between frames in hundredths of seconds.
  212. Range is 0 to 6000. Default value is 2.
  213. @item max_gif_delay
  214. Set the maximum valid delay between frames in hundredth of seconds.
  215. Range is 0 to 65535. Default value is 65535 (nearly eleven minutes),
  216. the maximum value allowed by the specification.
  217. @item default_delay
  218. Set the default delay between frames in hundredths of seconds.
  219. Range is 0 to 6000. Default value is 10.
  220. @item ignore_loop
  221. GIF files can contain information to loop a certain number of times (or
  222. infinitely). If @option{ignore_loop} is set to 1, then the loop setting
  223. from the input will be ignored and looping will not occur. If set to 0,
  224. then looping will occur and will cycle the number of times according to
  225. the GIF. Default value is 1.
  226. @end table
  227. For example, with the overlay filter, place an infinitely looping GIF
  228. over another video:
  229. @example
  230. ffmpeg -i input.mp4 -ignore_loop 0 -i input.gif -filter_complex overlay=shortest=1 out.mkv
  231. @end example
  232. Note that in the above example the shortest option for overlay filter is
  233. used to end the output video at the length of the shortest input file,
  234. which in this case is @file{input.mp4} as the GIF in this example loops
  235. infinitely.
  236. @section hls
  237. HLS demuxer
  238. It accepts the following options:
  239. @table @option
  240. @item live_start_index
  241. segment index to start live streams at (negative values are from the end).
  242. @item allowed_extensions
  243. ',' separated list of file extensions that hls is allowed to access.
  244. @item max_reload
  245. Maximum number of times a insufficient list is attempted to be reloaded.
  246. Default value is 1000.
  247. @item http_persistent
  248. Use persistent HTTP connections. Applicable only for HTTP streams.
  249. Enabled by default.
  250. @item http_multiple
  251. Use multiple HTTP connections for downloading HTTP segments.
  252. Enabled by default for HTTP/1.1 servers.
  253. @end table
  254. @section image2
  255. Image file demuxer.
  256. This demuxer reads from a list of image files specified by a pattern.
  257. The syntax and meaning of the pattern is specified by the
  258. option @var{pattern_type}.
  259. The pattern may contain a suffix which is used to automatically
  260. determine the format of the images contained in the files.
  261. The size, the pixel format, and the format of each image must be the
  262. same for all the files in the sequence.
  263. This demuxer accepts the following options:
  264. @table @option
  265. @item framerate
  266. Set the frame rate for the video stream. It defaults to 25.
  267. @item loop
  268. If set to 1, loop over the input. Default value is 0.
  269. @item pattern_type
  270. Select the pattern type used to interpret the provided filename.
  271. @var{pattern_type} accepts one of the following values.
  272. @table @option
  273. @item none
  274. Disable pattern matching, therefore the video will only contain the specified
  275. image. You should use this option if you do not want to create sequences from
  276. multiple images and your filenames may contain special pattern characters.
  277. @item sequence
  278. Select a sequence pattern type, used to specify a sequence of files
  279. indexed by sequential numbers.
  280. A sequence pattern may contain the string "%d" or "%0@var{N}d", which
  281. specifies the position of the characters representing a sequential
  282. number in each filename matched by the pattern. If the form
  283. "%d0@var{N}d" is used, the string representing the number in each
  284. filename is 0-padded and @var{N} is the total number of 0-padded
  285. digits representing the number. The literal character '%' can be
  286. specified in the pattern with the string "%%".
  287. If the sequence pattern contains "%d" or "%0@var{N}d", the first filename of
  288. the file list specified by the pattern must contain a number
  289. inclusively contained between @var{start_number} and
  290. @var{start_number}+@var{start_number_range}-1, and all the following
  291. numbers must be sequential.
  292. For example the pattern "img-%03d.bmp" will match a sequence of
  293. filenames of the form @file{img-001.bmp}, @file{img-002.bmp}, ...,
  294. @file{img-010.bmp}, etc.; the pattern "i%%m%%g-%d.jpg" will match a
  295. sequence of filenames of the form @file{i%m%g-1.jpg},
  296. @file{i%m%g-2.jpg}, ..., @file{i%m%g-10.jpg}, etc.
  297. Note that the pattern must not necessarily contain "%d" or
  298. "%0@var{N}d", for example to convert a single image file
  299. @file{img.jpeg} you can employ the command:
  300. @example
  301. ffmpeg -i img.jpeg img.png
  302. @end example
  303. @item glob
  304. Select a glob wildcard pattern type.
  305. The pattern is interpreted like a @code{glob()} pattern. This is only
  306. selectable if libavformat was compiled with globbing support.
  307. @item glob_sequence @emph{(deprecated, will be removed)}
  308. Select a mixed glob wildcard/sequence pattern.
  309. If your version of libavformat was compiled with globbing support, and
  310. the provided pattern contains at least one glob meta character among
  311. @code{%*?[]@{@}} that is preceded by an unescaped "%", the pattern is
  312. interpreted like a @code{glob()} pattern, otherwise it is interpreted
  313. like a sequence pattern.
  314. All glob special characters @code{%*?[]@{@}} must be prefixed
  315. with "%". To escape a literal "%" you shall use "%%".
  316. For example the pattern @code{foo-%*.jpeg} will match all the
  317. filenames prefixed by "foo-" and terminating with ".jpeg", and
  318. @code{foo-%?%?%?.jpeg} will match all the filenames prefixed with
  319. "foo-", followed by a sequence of three characters, and terminating
  320. with ".jpeg".
  321. This pattern type is deprecated in favor of @var{glob} and
  322. @var{sequence}.
  323. @end table
  324. Default value is @var{glob_sequence}.
  325. @item pixel_format
  326. Set the pixel format of the images to read. If not specified the pixel
  327. format is guessed from the first image file in the sequence.
  328. @item start_number
  329. Set the index of the file matched by the image file pattern to start
  330. to read from. Default value is 0.
  331. @item start_number_range
  332. Set the index interval range to check when looking for the first image
  333. file in the sequence, starting from @var{start_number}. Default value
  334. is 5.
  335. @item ts_from_file
  336. If set to 1, will set frame timestamp to modification time of image file. Note
  337. that monotonity of timestamps is not provided: images go in the same order as
  338. without this option. Default value is 0.
  339. If set to 2, will set frame timestamp to the modification time of the image file in
  340. nanosecond precision.
  341. @item video_size
  342. Set the video size of the images to read. If not specified the video
  343. size is guessed from the first image file in the sequence.
  344. @end table
  345. @subsection Examples
  346. @itemize
  347. @item
  348. Use @command{ffmpeg} for creating a video from the images in the file
  349. sequence @file{img-001.jpeg}, @file{img-002.jpeg}, ..., assuming an
  350. input frame rate of 10 frames per second:
  351. @example
  352. ffmpeg -framerate 10 -i 'img-%03d.jpeg' out.mkv
  353. @end example
  354. @item
  355. As above, but start by reading from a file with index 100 in the sequence:
  356. @example
  357. ffmpeg -framerate 10 -start_number 100 -i 'img-%03d.jpeg' out.mkv
  358. @end example
  359. @item
  360. Read images matching the "*.png" glob pattern , that is all the files
  361. terminating with the ".png" suffix:
  362. @example
  363. ffmpeg -framerate 10 -pattern_type glob -i "*.png" out.mkv
  364. @end example
  365. @end itemize
  366. @section libgme
  367. The Game Music Emu library is a collection of video game music file emulators.
  368. See @url{http://code.google.com/p/game-music-emu/} for more information.
  369. Some files have multiple tracks. The demuxer will pick the first track by
  370. default. The @option{track_index} option can be used to select a different
  371. track. Track indexes start at 0. The demuxer exports the number of tracks as
  372. @var{tracks} meta data entry.
  373. For very large files, the @option{max_size} option may have to be adjusted.
  374. @section libopenmpt
  375. libopenmpt based module demuxer
  376. See @url{https://lib.openmpt.org/libopenmpt/} for more information.
  377. Some files have multiple subsongs (tracks) this can be set with the @option{subsong}
  378. option.
  379. It accepts the following options:
  380. @table @option
  381. @item subsong
  382. Set the subsong index. This can be either 'all', 'auto', or the index of the
  383. subsong. Subsong indexes start at 0. The default is 'auto'.
  384. The default value is to let libopenmpt choose.
  385. @item layout
  386. Set the channel layout. Valid values are 1, 2, and 4 channel layouts.
  387. The default value is STEREO.
  388. @item sample_rate
  389. Set the sample rate for libopenmpt to output.
  390. Range is from 1000 to INT_MAX. The value default is 48000.
  391. @end table
  392. @section mov/mp4/3gp/QuickTime
  393. QuickTime / MP4 demuxer.
  394. This demuxer accepts the following options:
  395. @table @option
  396. @item enable_drefs
  397. Enable loading of external tracks, disabled by default.
  398. Enabling this can theoretically leak information in some use cases.
  399. @item use_absolute_path
  400. Allows loading of external tracks via absolute paths, disabled by default.
  401. Enabling this poses a security risk. It should only be enabled if the source
  402. is known to be non malicious.
  403. @end table
  404. @section mpegts
  405. MPEG-2 transport stream demuxer.
  406. This demuxer accepts the following options:
  407. @table @option
  408. @item resync_size
  409. Set size limit for looking up a new synchronization. Default value is
  410. 65536.
  411. @item skip_unknown_pmt
  412. Skip PMTs for programs not defined in the PAT. Default value is 0.
  413. @item fix_teletext_pts
  414. Override teletext packet PTS and DTS values with the timestamps calculated
  415. from the PCR of the first program which the teletext stream is part of and is
  416. not discarded. Default value is 1, set this option to 0 if you want your
  417. teletext packet PTS and DTS values untouched.
  418. @item ts_packetsize
  419. Output option carrying the raw packet size in bytes.
  420. Show the detected raw packet size, cannot be set by the user.
  421. @item scan_all_pmts
  422. Scan and combine all PMTs. The value is an integer with value from -1
  423. to 1 (-1 means automatic setting, 1 means enabled, 0 means
  424. disabled). Default value is -1.
  425. @item merge_pmt_versions
  426. Re-use existing streams when a PMT's version is updated and elementary
  427. streams move to different PIDs. Default value is 0.
  428. @end table
  429. @section mpjpeg
  430. MJPEG encapsulated in multi-part MIME demuxer.
  431. This demuxer allows reading of MJPEG, where each frame is represented as a part of
  432. multipart/x-mixed-replace stream.
  433. @table @option
  434. @item strict_mime_boundary
  435. Default implementation applies a relaxed standard to multi-part MIME boundary detection,
  436. to prevent regression with numerous existing endpoints not generating a proper MIME
  437. MJPEG stream. Turning this option on by setting it to 1 will result in a stricter check
  438. of the boundary value.
  439. @end table
  440. @section rawvideo
  441. Raw video demuxer.
  442. This demuxer allows one to read raw video data. Since there is no header
  443. specifying the assumed video parameters, the user must specify them
  444. in order to be able to decode the data correctly.
  445. This demuxer accepts the following options:
  446. @table @option
  447. @item framerate
  448. Set input video frame rate. Default value is 25.
  449. @item pixel_format
  450. Set the input video pixel format. Default value is @code{yuv420p}.
  451. @item video_size
  452. Set the input video size. This value must be specified explicitly.
  453. @end table
  454. For example to read a rawvideo file @file{input.raw} with
  455. @command{ffplay}, assuming a pixel format of @code{rgb24}, a video
  456. size of @code{320x240}, and a frame rate of 10 images per second, use
  457. the command:
  458. @example
  459. ffplay -f rawvideo -pixel_format rgb24 -video_size 320x240 -framerate 10 input.raw
  460. @end example
  461. @section sbg
  462. SBaGen script demuxer.
  463. This demuxer reads the script language used by SBaGen
  464. @url{http://uazu.net/sbagen/} to generate binaural beats sessions. A SBG
  465. script looks like that:
  466. @example
  467. -SE
  468. a: 300-2.5/3 440+4.5/0
  469. b: 300-2.5/0 440+4.5/3
  470. off: -
  471. NOW == a
  472. +0:07:00 == b
  473. +0:14:00 == a
  474. +0:21:00 == b
  475. +0:30:00 off
  476. @end example
  477. A SBG script can mix absolute and relative timestamps. If the script uses
  478. either only absolute timestamps (including the script start time) or only
  479. relative ones, then its layout is fixed, and the conversion is
  480. straightforward. On the other hand, if the script mixes both kind of
  481. timestamps, then the @var{NOW} reference for relative timestamps will be
  482. taken from the current time of day at the time the script is read, and the
  483. script layout will be frozen according to that reference. That means that if
  484. the script is directly played, the actual times will match the absolute
  485. timestamps up to the sound controller's clock accuracy, but if the user
  486. somehow pauses the playback or seeks, all times will be shifted accordingly.
  487. @section tedcaptions
  488. JSON captions used for @url{http://www.ted.com/, TED Talks}.
  489. TED does not provide links to the captions, but they can be guessed from the
  490. page. The file @file{tools/bookmarklets.html} from the FFmpeg source tree
  491. contains a bookmarklet to expose them.
  492. This demuxer accepts the following option:
  493. @table @option
  494. @item start_time
  495. Set the start time of the TED talk, in milliseconds. The default is 15000
  496. (15s). It is used to sync the captions with the downloadable videos, because
  497. they include a 15s intro.
  498. @end table
  499. Example: convert the captions to a format most players understand:
  500. @example
  501. ffmpeg -i http://www.ted.com/talks/subtitles/id/1/lang/en talk1-en.srt
  502. @end example
  503. @c man end DEMUXERS