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.

610 lines
20KB

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