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.

309 lines
10KB

  1. @chapter Demuxers
  2. @c man begin DEMUXERS
  3. Demuxers are configured elements in FFmpeg which allow to 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. @anchor{concat}
  24. @section concat
  25. Virtual concatenation script demuxer.
  26. This demuxer reads a list of files and other directives from a text file and
  27. demuxes them one after the other, as if all their packet had been muxed
  28. together.
  29. The timestamps in the files are adjusted so that the first file starts at 0
  30. and each next file starts where the previous one finishes. Note that it is
  31. done globally and may cause gaps if all streams do not have exactly the same
  32. length.
  33. All files must have the same streams (same codecs, same time base, etc.).
  34. The duration of each file is used to adjust the timestamps of the next file:
  35. if the duration is incorrect (because it was computed using the bit-rate or
  36. because the file is truncated, for example), it can cause artifacts. The
  37. @code{duration} directive can be used to override the duration stored in
  38. each file.
  39. @subsection Syntax
  40. The script is a text file in extended-ASCII, with one directive per line.
  41. Empty lines, leading spaces and lines starting with '#' are ignored. The
  42. following directive is recognized:
  43. @table @option
  44. @item @code{file @var{path}}
  45. Path to a file to read; special characters and spaces must be escaped with
  46. backslash or single quotes.
  47. All subsequent directives apply to that file.
  48. @item @code{ffconcat version 1.0}
  49. Identify the script type and version. It also sets the @option{safe} option
  50. to 1 if it was to its default -1.
  51. To make FFmpeg recognize the format automatically, this directive must
  52. appears exactly as is (no extra space or byte-order-mark) on the very first
  53. line of the script.
  54. @item @code{duration @var{dur}}
  55. Duration of the file. This information can be specified from the file;
  56. specifying it here may be more efficient or help if the information from the
  57. file is not available or accurate.
  58. @end table
  59. @subsection Options
  60. This demuxer accepts the following option:
  61. @table @option
  62. @item safe
  63. If set to 1, reject unsafe file paths. A file path is considered safe if it
  64. does not contain a protocol specification and is relative and all components
  65. only contain characters from the portable character set (letters, digits,
  66. period, underscore and hyphen) and have no period at the beginning of a
  67. component.
  68. If set to 0, any file name is accepted.
  69. The default is -1, it is equivalent to 1 if the format was automatically
  70. probed and 0 otherwise.
  71. @end table
  72. @section image2
  73. Image file demuxer.
  74. This demuxer reads from a list of image files specified by a pattern.
  75. The syntax and meaning of the pattern is specified by the
  76. option @var{pattern_type}.
  77. The pattern may contain a suffix which is used to automatically
  78. determine the format of the images contained in the files.
  79. The size, the pixel format, and the format of each image must be the
  80. same for all the files in the sequence.
  81. This demuxer accepts the following options:
  82. @table @option
  83. @item framerate
  84. Set the framerate for the video stream. It defaults to 25.
  85. @item loop
  86. If set to 1, loop over the input. Default value is 0.
  87. @item pattern_type
  88. Select the pattern type used to interpret the provided filename.
  89. @var{pattern_type} accepts one of the following values.
  90. @table @option
  91. @item sequence
  92. Select a sequence pattern type, used to specify a sequence of files
  93. indexed by sequential numbers.
  94. A sequence pattern may contain the string "%d" or "%0@var{N}d", which
  95. specifies the position of the characters representing a sequential
  96. number in each filename matched by the pattern. If the form
  97. "%d0@var{N}d" is used, the string representing the number in each
  98. filename is 0-padded and @var{N} is the total number of 0-padded
  99. digits representing the number. The literal character '%' can be
  100. specified in the pattern with the string "%%".
  101. If the sequence pattern contains "%d" or "%0@var{N}d", the first filename of
  102. the file list specified by the pattern must contain a number
  103. inclusively contained between @var{start_number} and
  104. @var{start_number}+@var{start_number_range}-1, and all the following
  105. numbers must be sequential.
  106. For example the pattern "img-%03d.bmp" will match a sequence of
  107. filenames of the form @file{img-001.bmp}, @file{img-002.bmp}, ...,
  108. @file{img-010.bmp}, etc.; the pattern "i%%m%%g-%d.jpg" will match a
  109. sequence of filenames of the form @file{i%m%g-1.jpg},
  110. @file{i%m%g-2.jpg}, ..., @file{i%m%g-10.jpg}, etc.
  111. Note that the pattern must not necessarily contain "%d" or
  112. "%0@var{N}d", for example to convert a single image file
  113. @file{img.jpeg} you can employ the command:
  114. @example
  115. ffmpeg -i img.jpeg img.png
  116. @end example
  117. @item glob
  118. Select a glob wildcard pattern type.
  119. The pattern is interpreted like a @code{glob()} pattern. This is only
  120. selectable if libavformat was compiled with globbing support.
  121. @item glob_sequence @emph{(deprecated, will be removed)}
  122. Select a mixed glob wildcard/sequence pattern.
  123. If your version of libavformat was compiled with globbing support, and
  124. the provided pattern contains at least one glob meta character among
  125. @code{%*?[]@{@}} that is preceded by an unescaped "%", the pattern is
  126. interpreted like a @code{glob()} pattern, otherwise it is interpreted
  127. like a sequence pattern.
  128. All glob special characters @code{%*?[]@{@}} must be prefixed
  129. with "%". To escape a literal "%" you shall use "%%".
  130. For example the pattern @code{foo-%*.jpeg} will match all the
  131. filenames prefixed by "foo-" and terminating with ".jpeg", and
  132. @code{foo-%?%?%?.jpeg} will match all the filenames prefixed with
  133. "foo-", followed by a sequence of three characters, and terminating
  134. with ".jpeg".
  135. This pattern type is deprecated in favor of @var{glob} and
  136. @var{sequence}.
  137. @end table
  138. Default value is @var{glob_sequence}.
  139. @item pixel_format
  140. Set the pixel format of the images to read. If not specified the pixel
  141. format is guessed from the first image file in the sequence.
  142. @item start_number
  143. Set the index of the file matched by the image file pattern to start
  144. to read from. Default value is 0.
  145. @item start_number_range
  146. Set the index interval range to check when looking for the first image
  147. file in the sequence, starting from @var{start_number}. Default value
  148. is 5.
  149. @item video_size
  150. Set the video size of the images to read. If not specified the video
  151. size is guessed from the first image file in the sequence.
  152. @end table
  153. @subsection Examples
  154. @itemize
  155. @item
  156. Use @command{ffmpeg} for creating a video from the images in the file
  157. sequence @file{img-001.jpeg}, @file{img-002.jpeg}, ..., assuming an
  158. input frame rate of 10 frames per second:
  159. @example
  160. ffmpeg -i 'img-%03d.jpeg' -r 10 out.mkv
  161. @end example
  162. @item
  163. As above, but start by reading from a file with index 100 in the sequence:
  164. @example
  165. ffmpeg -start_number 100 -i 'img-%03d.jpeg' -r 10 out.mkv
  166. @end example
  167. @item
  168. Read images matching the "*.png" glob pattern , that is all the files
  169. terminating with the ".png" suffix:
  170. @example
  171. ffmpeg -pattern_type glob -i "*.png" -r 10 out.mkv
  172. @end example
  173. @end itemize
  174. @section rawvideo
  175. Raw video demuxer.
  176. This demuxer allows to read raw video data. Since there is no header
  177. specifying the assumed video parameters, the user must specify them
  178. in order to be able to decode the data correctly.
  179. This demuxer accepts the following options:
  180. @table @option
  181. @item framerate
  182. Set input video frame rate. Default value is 25.
  183. @item pixel_format
  184. Set the input video pixel format. Default value is @code{yuv420p}.
  185. @item video_size
  186. Set the input video size. This value must be specified explicitly.
  187. @end table
  188. For example to read a rawvideo file @file{input.raw} with
  189. @command{ffplay}, assuming a pixel format of @code{rgb24}, a video
  190. size of @code{320x240}, and a frame rate of 10 images per second, use
  191. the command:
  192. @example
  193. ffplay -f rawvideo -pixel_format rgb24 -video_size 320x240 -framerate 10 input.raw
  194. @end example
  195. @section sbg
  196. SBaGen script demuxer.
  197. This demuxer reads the script language used by SBaGen
  198. @url{http://uazu.net/sbagen/} to generate binaural beats sessions. A SBG
  199. script looks like that:
  200. @example
  201. -SE
  202. a: 300-2.5/3 440+4.5/0
  203. b: 300-2.5/0 440+4.5/3
  204. off: -
  205. NOW == a
  206. +0:07:00 == b
  207. +0:14:00 == a
  208. +0:21:00 == b
  209. +0:30:00 off
  210. @end example
  211. A SBG script can mix absolute and relative timestamps. If the script uses
  212. either only absolute timestamps (including the script start time) or only
  213. relative ones, then its layout is fixed, and the conversion is
  214. straightforward. On the other hand, if the script mixes both kind of
  215. timestamps, then the @var{NOW} reference for relative timestamps will be
  216. taken from the current time of day at the time the script is read, and the
  217. script layout will be frozen according to that reference. That means that if
  218. the script is directly played, the actual times will match the absolute
  219. timestamps up to the sound controller's clock accuracy, but if the user
  220. somehow pauses the playback or seeks, all times will be shifted accordingly.
  221. @section tedcaptions
  222. JSON captions used for @url{http://www.ted.com/, TED Talks}.
  223. TED does not provide links to the captions, but they can be guessed from the
  224. page. The file @file{tools/bookmarklets.html} from the FFmpeg source tree
  225. contains a bookmarklet to expose them.
  226. This demuxer accepts the following option:
  227. @table @option
  228. @item start_time
  229. Set the start time of the TED talk, in milliseconds. The default is 15000
  230. (15s). It is used to sync the captions with the downloadable videos, because
  231. they include a 15s intro.
  232. @end table
  233. Example: convert the captions to a format most players understand:
  234. @example
  235. ffmpeg -i http://www.ted.com/talks/subtitles/id/1/lang/en talk1-en.srt
  236. @end example
  237. @c man end DEMUXERS