demuxers.texi 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  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 to its default -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, it is equivalent to 1 if the format was automatically
  93. probed and 0 otherwise.
  94. @item auto_convert
  95. If set to 1, try to perform automatic conversions on packet data to make the
  96. streams concatenable.
  97. Currently, the only conversion is adding the h264_mp4toannexb bitstream
  98. filter to H.264 streams in MP4 format. This is necessary in particular if
  99. there are resolution changes.
  100. @end table
  101. @section flv
  102. Adobe Flash Video Format demuxer.
  103. This demuxer is used to demux FLV files and RTMP network streams.
  104. @table @option
  105. @item -flv_metadata @var{bool}
  106. Allocate the streams according to the onMetaData array content.
  107. @end table
  108. @section libgme
  109. The Game Music Emu library is a collection of video game music file emulators.
  110. See @url{http://code.google.com/p/game-music-emu/} for more information.
  111. Some files have multiple tracks. The demuxer will pick the first track by
  112. default. The @option{track_index} option can be used to select a different
  113. track. Track indexes start at 0. The demuxer exports the number of tracks as
  114. @var{tracks} meta data entry.
  115. For very large files, the @option{max_size} option may have to be adjusted.
  116. @section libquvi
  117. Play media from Internet services using the quvi project.
  118. The demuxer accepts a @option{format} option to request a specific quality. It
  119. is by default set to @var{best}.
  120. See @url{http://quvi.sourceforge.net/} for more information.
  121. FFmpeg needs to be built with @code{--enable-libquvi} for this demuxer to be
  122. enabled.
  123. @section image2
  124. Image file demuxer.
  125. This demuxer reads from a list of image files specified by a pattern.
  126. The syntax and meaning of the pattern is specified by the
  127. option @var{pattern_type}.
  128. The pattern may contain a suffix which is used to automatically
  129. determine the format of the images contained in the files.
  130. The size, the pixel format, and the format of each image must be the
  131. same for all the files in the sequence.
  132. This demuxer accepts the following options:
  133. @table @option
  134. @item framerate
  135. Set the frame rate for the video stream. It defaults to 25.
  136. @item loop
  137. If set to 1, loop over the input. Default value is 0.
  138. @item pattern_type
  139. Select the pattern type used to interpret the provided filename.
  140. @var{pattern_type} accepts one of the following values.
  141. @table @option
  142. @item sequence
  143. Select a sequence pattern type, used to specify a sequence of files
  144. indexed by sequential numbers.
  145. A sequence pattern may contain the string "%d" or "%0@var{N}d", which
  146. specifies the position of the characters representing a sequential
  147. number in each filename matched by the pattern. If the form
  148. "%d0@var{N}d" is used, the string representing the number in each
  149. filename is 0-padded and @var{N} is the total number of 0-padded
  150. digits representing the number. The literal character '%' can be
  151. specified in the pattern with the string "%%".
  152. If the sequence pattern contains "%d" or "%0@var{N}d", the first filename of
  153. the file list specified by the pattern must contain a number
  154. inclusively contained between @var{start_number} and
  155. @var{start_number}+@var{start_number_range}-1, and all the following
  156. numbers must be sequential.
  157. For example the pattern "img-%03d.bmp" will match a sequence of
  158. filenames of the form @file{img-001.bmp}, @file{img-002.bmp}, ...,
  159. @file{img-010.bmp}, etc.; the pattern "i%%m%%g-%d.jpg" will match a
  160. sequence of filenames of the form @file{i%m%g-1.jpg},
  161. @file{i%m%g-2.jpg}, ..., @file{i%m%g-10.jpg}, etc.
  162. Note that the pattern must not necessarily contain "%d" or
  163. "%0@var{N}d", for example to convert a single image file
  164. @file{img.jpeg} you can employ the command:
  165. @example
  166. ffmpeg -i img.jpeg img.png
  167. @end example
  168. @item glob
  169. Select a glob wildcard pattern type.
  170. The pattern is interpreted like a @code{glob()} pattern. This is only
  171. selectable if libavformat was compiled with globbing support.
  172. @item glob_sequence @emph{(deprecated, will be removed)}
  173. Select a mixed glob wildcard/sequence pattern.
  174. If your version of libavformat was compiled with globbing support, and
  175. the provided pattern contains at least one glob meta character among
  176. @code{%*?[]@{@}} that is preceded by an unescaped "%", the pattern is
  177. interpreted like a @code{glob()} pattern, otherwise it is interpreted
  178. like a sequence pattern.
  179. All glob special characters @code{%*?[]@{@}} must be prefixed
  180. with "%". To escape a literal "%" you shall use "%%".
  181. For example the pattern @code{foo-%*.jpeg} will match all the
  182. filenames prefixed by "foo-" and terminating with ".jpeg", and
  183. @code{foo-%?%?%?.jpeg} will match all the filenames prefixed with
  184. "foo-", followed by a sequence of three characters, and terminating
  185. with ".jpeg".
  186. This pattern type is deprecated in favor of @var{glob} and
  187. @var{sequence}.
  188. @end table
  189. Default value is @var{glob_sequence}.
  190. @item pixel_format
  191. Set the pixel format of the images to read. If not specified the pixel
  192. format is guessed from the first image file in the sequence.
  193. @item start_number
  194. Set the index of the file matched by the image file pattern to start
  195. to read from. Default value is 0.
  196. @item start_number_range
  197. Set the index interval range to check when looking for the first image
  198. file in the sequence, starting from @var{start_number}. Default value
  199. is 5.
  200. @item ts_from_file
  201. If set to 1, will set frame timestamp to modification time of image file. Note
  202. that monotonity of timestamps is not provided: images go in the same order as
  203. without this option. Default value is 0.
  204. If set to 2, will set frame timestamp to the modification time of the image file in
  205. nanosecond precision.
  206. @item video_size
  207. Set the video size of the images to read. If not specified the video
  208. size is guessed from the first image file in the sequence.
  209. @end table
  210. @subsection Examples
  211. @itemize
  212. @item
  213. Use @command{ffmpeg} for creating a video from the images in the file
  214. sequence @file{img-001.jpeg}, @file{img-002.jpeg}, ..., assuming an
  215. input frame rate of 10 frames per second:
  216. @example
  217. ffmpeg -framerate 10 -i 'img-%03d.jpeg' out.mkv
  218. @end example
  219. @item
  220. As above, but start by reading from a file with index 100 in the sequence:
  221. @example
  222. ffmpeg -framerate 10 -start_number 100 -i 'img-%03d.jpeg' out.mkv
  223. @end example
  224. @item
  225. Read images matching the "*.png" glob pattern , that is all the files
  226. terminating with the ".png" suffix:
  227. @example
  228. ffmpeg -framerate 10 -pattern_type glob -i "*.png" out.mkv
  229. @end example
  230. @end itemize
  231. @section mpegts
  232. MPEG-2 transport stream demuxer.
  233. @table @option
  234. @item fix_teletext_pts
  235. Overrides teletext packet PTS and DTS values with the timestamps calculated
  236. from the PCR of the first program which the teletext stream is part of and is
  237. not discarded. Default value is 1, set this option to 0 if you want your
  238. teletext packet PTS and DTS values untouched.
  239. @end table
  240. @section rawvideo
  241. Raw video demuxer.
  242. This demuxer allows one to read raw video data. Since there is no header
  243. specifying the assumed video parameters, the user must specify them
  244. in order to be able to decode the data correctly.
  245. This demuxer accepts the following options:
  246. @table @option
  247. @item framerate
  248. Set input video frame rate. Default value is 25.
  249. @item pixel_format
  250. Set the input video pixel format. Default value is @code{yuv420p}.
  251. @item video_size
  252. Set the input video size. This value must be specified explicitly.
  253. @end table
  254. For example to read a rawvideo file @file{input.raw} with
  255. @command{ffplay}, assuming a pixel format of @code{rgb24}, a video
  256. size of @code{320x240}, and a frame rate of 10 images per second, use
  257. the command:
  258. @example
  259. ffplay -f rawvideo -pixel_format rgb24 -video_size 320x240 -framerate 10 input.raw
  260. @end example
  261. @section sbg
  262. SBaGen script demuxer.
  263. This demuxer reads the script language used by SBaGen
  264. @url{http://uazu.net/sbagen/} to generate binaural beats sessions. A SBG
  265. script looks like that:
  266. @example
  267. -SE
  268. a: 300-2.5/3 440+4.5/0
  269. b: 300-2.5/0 440+4.5/3
  270. off: -
  271. NOW == a
  272. +0:07:00 == b
  273. +0:14:00 == a
  274. +0:21:00 == b
  275. +0:30:00 off
  276. @end example
  277. A SBG script can mix absolute and relative timestamps. If the script uses
  278. either only absolute timestamps (including the script start time) or only
  279. relative ones, then its layout is fixed, and the conversion is
  280. straightforward. On the other hand, if the script mixes both kind of
  281. timestamps, then the @var{NOW} reference for relative timestamps will be
  282. taken from the current time of day at the time the script is read, and the
  283. script layout will be frozen according to that reference. That means that if
  284. the script is directly played, the actual times will match the absolute
  285. timestamps up to the sound controller's clock accuracy, but if the user
  286. somehow pauses the playback or seeks, all times will be shifted accordingly.
  287. @section tedcaptions
  288. JSON captions used for @url{http://www.ted.com/, TED Talks}.
  289. TED does not provide links to the captions, but they can be guessed from the
  290. page. The file @file{tools/bookmarklets.html} from the FFmpeg source tree
  291. contains a bookmarklet to expose them.
  292. This demuxer accepts the following option:
  293. @table @option
  294. @item start_time
  295. Set the start time of the TED talk, in milliseconds. The default is 15000
  296. (15s). It is used to sync the captions with the downloadable videos, because
  297. they include a 15s intro.
  298. @end table
  299. Example: convert the captions to a format most players understand:
  300. @example
  301. ffmpeg -i http://www.ted.com/talks/subtitles/id/1/lang/en talk1-en.srt
  302. @end example
  303. @c man end DEMUXERS