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.

455 lines
15KB

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