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.

507 lines
18KB

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