demuxers.texi 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  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{-demuxers} of the ff* tools will display the list of
  13. enabled demuxers. Use @code{-formats} to view a combined list of
  14. enabled demuxers and muxers.
  15. The description of some of the currently available demuxers follows.
  16. @section aa
  17. Audible Format 2, 3, and 4 demuxer.
  18. This demuxer is used to demux Audible Format 2, 3, and 4 (.aa) files.
  19. @section aac
  20. Raw Audio Data Transport Stream AAC demuxer.
  21. This demuxer is used to demux an ADTS input containing a single AAC stream
  22. alongwith any ID3v1/2 or APE tags in it.
  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. Default is enabled.
  33. @item -max_fps @var{int}
  34. Maximum framerate in frames per second. Default of 0 imposes 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). Default is 15.
  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 packets 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.
  73. To make FFmpeg recognize the format automatically, this directive must
  74. appear exactly as is (no extra space or byte-order-mark) on the very first
  75. line of the script.
  76. @item @code{duration @var{dur}}
  77. Duration of the file. This information can be specified from the file;
  78. specifying it here may be more efficient or help if the information from the
  79. file is not available or accurate.
  80. If the duration is set for all files, then it is possible to seek in the
  81. whole concatenated video.
  82. @item @code{inpoint @var{timestamp}}
  83. In point of the file. When the demuxer opens the file it instantly seeks to the
  84. specified timestamp. Seeking is done so that all streams can be presented
  85. successfully at In point.
  86. This directive works best with intra frame codecs, because for non-intra frame
  87. ones you will usually get extra packets before the actual In point and the
  88. decoded content will most likely contain frames before In point too.
  89. For each file, packets before the file In point will have timestamps less than
  90. the calculated start timestamp of the file (negative in case of the first
  91. file), and the duration of the files (if not specified by the @code{duration}
  92. directive) will be reduced based on their specified In point.
  93. Because of potential packets before the specified In point, packet timestamps
  94. may overlap between two concatenated files.
  95. @item @code{outpoint @var{timestamp}}
  96. Out point of the file. When the demuxer reaches the specified decoding
  97. timestamp in any of the streams, it handles it as an end of file condition and
  98. skips the current and all the remaining packets from all streams.
  99. Out point is exclusive, which means that the demuxer will not output packets
  100. with a decoding timestamp greater or equal to Out point.
  101. This directive works best with intra frame codecs and formats where all streams
  102. are tightly interleaved. For non-intra frame codecs you will usually get
  103. additional packets with presentation timestamp after Out point therefore the
  104. decoded content will most likely contain frames after Out point too. If your
  105. streams are not tightly interleaved you may not get all the packets from all
  106. streams before Out point and you may only will be able to decode the earliest
  107. stream until Out point.
  108. The duration of the files (if not specified by the @code{duration}
  109. directive) will be reduced based on their specified Out point.
  110. @item @code{file_packet_metadata @var{key=value}}
  111. Metadata of the packets of the file. The specified metadata will be set for
  112. each file packet. You can specify this directive multiple times to add multiple
  113. metadata entries.
  114. This directive is deprecated, use @code{file_packet_meta} instead.
  115. @item @code{file_packet_meta @var{key} @var{value}}
  116. Metadata of the packets of the file. The specified metadata will be set for
  117. each file packet. You can specify this directive multiple times to add multiple
  118. metadata entries.
  119. @item @code{option @var{key} @var{value}}
  120. Option to access, open and probe the file.
  121. Can be present multiple times.
  122. @item @code{stream}
  123. Introduce a stream in the virtual file.
  124. All subsequent stream-related directives apply to the last introduced
  125. stream.
  126. Some streams properties must be set in order to allow identifying the
  127. matching streams in the subfiles.
  128. If no streams are defined in the script, the streams from the first file are
  129. copied.
  130. @item @code{exact_stream_id @var{id}}
  131. Set the id of the stream.
  132. If this directive is given, the string with the corresponding id in the
  133. subfiles will be used.
  134. This is especially useful for MPEG-PS (VOB) files, where the order of the
  135. streams is not reliable.
  136. @item @code{stream_meta @var{key} @var{value}}
  137. Metadata for the stream.
  138. Can be present multiple times.
  139. @item @code{stream_codec @var{value}}
  140. Codec for the stream.
  141. @item @code{stream_extradata @var{hex_string}}
  142. Extradata for the string, encoded in hexadecimal.
  143. @item @code{chapter @var{id} @var{start} @var{end}}
  144. Add a chapter. @var{id} is an unique identifier, possibly small and
  145. consecutive.
  146. @end table
  147. @subsection Options
  148. This demuxer accepts the following option:
  149. @table @option
  150. @item safe
  151. If set to 1, reject unsafe file paths and directives.
  152. A file path is considered safe if it
  153. does not contain a protocol specification and is relative and all components
  154. only contain characters from the portable character set (letters, digits,
  155. period, underscore and hyphen) and have no period at the beginning of a
  156. component.
  157. If set to 0, any file name is accepted.
  158. The default is 1.
  159. @item auto_convert
  160. If set to 1, try to perform automatic conversions on packet data to make the
  161. streams concatenable.
  162. The default is 1.
  163. Currently, the only conversion is adding the h264_mp4toannexb bitstream
  164. filter to H.264 streams in MP4 format. This is necessary in particular if
  165. there are resolution changes.
  166. @item segment_time_metadata
  167. If set to 1, every packet will contain the @var{lavf.concat.start_time} and the
  168. @var{lavf.concat.duration} packet metadata values which are the start_time and
  169. the duration of the respective file segments in the concatenated output
  170. expressed in microseconds. The duration metadata is only set if it is known
  171. based on the concat file.
  172. The default is 0.
  173. @end table
  174. @subsection Examples
  175. @itemize
  176. @item
  177. Use absolute filenames and include some comments:
  178. @example
  179. # my first filename
  180. file /mnt/share/file-1.wav
  181. # my second filename including whitespace
  182. file '/mnt/share/file 2.wav'
  183. # my third filename including whitespace plus single quote
  184. file '/mnt/share/file 3'\''.wav'
  185. @end example
  186. @item
  187. Allow for input format auto-probing, use safe filenames and set the duration of
  188. the first file:
  189. @example
  190. ffconcat version 1.0
  191. file file-1.wav
  192. duration 20.0
  193. file subdir/file-2.wav
  194. @end example
  195. @end itemize
  196. @section dash
  197. Dynamic Adaptive Streaming over HTTP demuxer.
  198. This demuxer presents all AVStreams found in the manifest.
  199. By setting the discard flags on AVStreams the caller can decide
  200. which streams to actually receive.
  201. Each stream mirrors the @code{id} and @code{bandwidth} properties from the
  202. @code{<Representation>} as metadata keys named "id" and "variant_bitrate" respectively.
  203. @subsection Options
  204. This demuxer accepts the following option:
  205. @table @option
  206. @item cenc_decryption_key
  207. 16-byte key, in hex, to decrypt files encrypted using ISO Common Encryption (CENC/AES-128 CTR; ISO/IEC 23001-7).
  208. @end table
  209. @section imf
  210. Interoperable Master Format demuxer.
  211. This demuxer presents audio and video streams found in an IMF Composition.
  212. @section flv, live_flv, kux
  213. Adobe Flash Video Format demuxer.
  214. This demuxer is used to demux FLV files and RTMP network streams. In case of live network streams, if you force format, you may use live_flv option instead of flv to survive timestamp discontinuities.
  215. KUX is a flv variant used on the Youku platform.
  216. @example
  217. ffmpeg -f flv -i myfile.flv ...
  218. ffmpeg -f live_flv -i rtmp://<any.server>/anything/key ....
  219. @end example
  220. @table @option
  221. @item -flv_metadata @var{bool}
  222. Allocate the streams according to the onMetaData array content.
  223. @item -flv_ignore_prevtag @var{bool}
  224. Ignore the size of previous tag value.
  225. @item -flv_full_metadata @var{bool}
  226. Output all context of the onMetadata.
  227. @end table
  228. @section gif
  229. Animated GIF demuxer.
  230. It accepts the following options:
  231. @table @option
  232. @item min_delay
  233. Set the minimum valid delay between frames in hundredths of seconds.
  234. Range is 0 to 6000. Default value is 2.
  235. @item max_gif_delay
  236. Set the maximum valid delay between frames in hundredth of seconds.
  237. Range is 0 to 65535. Default value is 65535 (nearly eleven minutes),
  238. the maximum value allowed by the specification.
  239. @item default_delay
  240. Set the default delay between frames in hundredths of seconds.
  241. Range is 0 to 6000. Default value is 10.
  242. @item ignore_loop
  243. GIF files can contain information to loop a certain number of times (or
  244. infinitely). If @option{ignore_loop} is set to 1, then the loop setting
  245. from the input will be ignored and looping will not occur. If set to 0,
  246. then looping will occur and will cycle the number of times according to
  247. the GIF. Default value is 1.
  248. @end table
  249. For example, with the overlay filter, place an infinitely looping GIF
  250. over another video:
  251. @example
  252. ffmpeg -i input.mp4 -ignore_loop 0 -i input.gif -filter_complex overlay=shortest=1 out.mkv
  253. @end example
  254. Note that in the above example the shortest option for overlay filter is
  255. used to end the output video at the length of the shortest input file,
  256. which in this case is @file{input.mp4} as the GIF in this example loops
  257. infinitely.
  258. @section hls
  259. HLS demuxer
  260. Apple HTTP Live Streaming demuxer.
  261. This demuxer presents all AVStreams from all variant streams.
  262. The id field is set to the bitrate variant index number. By setting
  263. the discard flags on AVStreams (by pressing 'a' or 'v' in ffplay),
  264. the caller can decide which variant streams to actually receive.
  265. The total bitrate of the variant that the stream belongs to is
  266. available in a metadata key named "variant_bitrate".
  267. It accepts the following options:
  268. @table @option
  269. @item live_start_index
  270. segment index to start live streams at (negative values are from the end).
  271. @item prefer_x_start
  272. prefer to use #EXT-X-START if it's in playlist instead of live_start_index.
  273. @item allowed_extensions
  274. ',' separated list of file extensions that hls is allowed to access.
  275. @item max_reload
  276. Maximum number of times a insufficient list is attempted to be reloaded.
  277. Default value is 1000.
  278. @item m3u8_hold_counters
  279. The maximum number of times to load m3u8 when it refreshes without new segments.
  280. Default value is 1000.
  281. @item http_persistent
  282. Use persistent HTTP connections. Applicable only for HTTP streams.
  283. Enabled by default.
  284. @item http_multiple
  285. Use multiple HTTP connections for downloading HTTP segments.
  286. Enabled by default for HTTP/1.1 servers.
  287. @item http_seekable
  288. Use HTTP partial requests for downloading HTTP segments.
  289. 0 = disable, 1 = enable, -1 = auto, Default is auto.
  290. @item seg_format_options
  291. Set options for the demuxer of media segments using a list of key=value pairs separated by @code{:}.
  292. @end table
  293. @section image2
  294. Image file demuxer.
  295. This demuxer reads from a list of image files specified by a pattern.
  296. The syntax and meaning of the pattern is specified by the
  297. option @var{pattern_type}.
  298. The pattern may contain a suffix which is used to automatically
  299. determine the format of the images contained in the files.
  300. The size, the pixel format, and the format of each image must be the
  301. same for all the files in the sequence.
  302. This demuxer accepts the following options:
  303. @table @option
  304. @item framerate
  305. Set the frame rate for the video stream. It defaults to 25.
  306. @item loop
  307. If set to 1, loop over the input. Default value is 0.
  308. @item pattern_type
  309. Select the pattern type used to interpret the provided filename.
  310. @var{pattern_type} accepts one of the following values.
  311. @table @option
  312. @item none
  313. Disable pattern matching, therefore the video will only contain the specified
  314. image. You should use this option if you do not want to create sequences from
  315. multiple images and your filenames may contain special pattern characters.
  316. @item sequence
  317. Select a sequence pattern type, used to specify a sequence of files
  318. indexed by sequential numbers.
  319. A sequence pattern may contain the string "%d" or "%0@var{N}d", which
  320. specifies the position of the characters representing a sequential
  321. number in each filename matched by the pattern. If the form
  322. "%d0@var{N}d" is used, the string representing the number in each
  323. filename is 0-padded and @var{N} is the total number of 0-padded
  324. digits representing the number. The literal character '%' can be
  325. specified in the pattern with the string "%%".
  326. If the sequence pattern contains "%d" or "%0@var{N}d", the first filename of
  327. the file list specified by the pattern must contain a number
  328. inclusively contained between @var{start_number} and
  329. @var{start_number}+@var{start_number_range}-1, and all the following
  330. numbers must be sequential.
  331. For example the pattern "img-%03d.bmp" will match a sequence of
  332. filenames of the form @file{img-001.bmp}, @file{img-002.bmp}, ...,
  333. @file{img-010.bmp}, etc.; the pattern "i%%m%%g-%d.jpg" will match a
  334. sequence of filenames of the form @file{i%m%g-1.jpg},
  335. @file{i%m%g-2.jpg}, ..., @file{i%m%g-10.jpg}, etc.
  336. Note that the pattern must not necessarily contain "%d" or
  337. "%0@var{N}d", for example to convert a single image file
  338. @file{img.jpeg} you can employ the command:
  339. @example
  340. ffmpeg -i img.jpeg img.png
  341. @end example
  342. @item glob
  343. Select a glob wildcard pattern type.
  344. The pattern is interpreted like a @code{glob()} pattern. This is only
  345. selectable if libavformat was compiled with globbing support.
  346. @item glob_sequence @emph{(deprecated, will be removed)}
  347. Select a mixed glob wildcard/sequence pattern.
  348. If your version of libavformat was compiled with globbing support, and
  349. the provided pattern contains at least one glob meta character among
  350. @code{%*?[]@{@}} that is preceded by an unescaped "%", the pattern is
  351. interpreted like a @code{glob()} pattern, otherwise it is interpreted
  352. like a sequence pattern.
  353. All glob special characters @code{%*?[]@{@}} must be prefixed
  354. with "%". To escape a literal "%" you shall use "%%".
  355. For example the pattern @code{foo-%*.jpeg} will match all the
  356. filenames prefixed by "foo-" and terminating with ".jpeg", and
  357. @code{foo-%?%?%?.jpeg} will match all the filenames prefixed with
  358. "foo-", followed by a sequence of three characters, and terminating
  359. with ".jpeg".
  360. This pattern type is deprecated in favor of @var{glob} and
  361. @var{sequence}.
  362. @end table
  363. Default value is @var{glob_sequence}.
  364. @item pixel_format
  365. Set the pixel format of the images to read. If not specified the pixel
  366. format is guessed from the first image file in the sequence.
  367. @item start_number
  368. Set the index of the file matched by the image file pattern to start
  369. to read from. Default value is 0.
  370. @item start_number_range
  371. Set the index interval range to check when looking for the first image
  372. file in the sequence, starting from @var{start_number}. Default value
  373. is 5.
  374. @item ts_from_file
  375. If set to 1, will set frame timestamp to modification time of image file. Note
  376. that monotonity of timestamps is not provided: images go in the same order as
  377. without this option. Default value is 0.
  378. If set to 2, will set frame timestamp to the modification time of the image file in
  379. nanosecond precision.
  380. @item video_size
  381. Set the video size of the images to read. If not specified the video
  382. size is guessed from the first image file in the sequence.
  383. @item export_path_metadata
  384. If set to 1, will add two extra fields to the metadata found in input, making them
  385. also available for other filters (see @var{drawtext} filter for examples). Default
  386. value is 0. The extra fields are described below:
  387. @table @option
  388. @item lavf.image2dec.source_path
  389. Corresponds to the full path to the input file being read.
  390. @item lavf.image2dec.source_basename
  391. Corresponds to the name of the file being read.
  392. @end table
  393. @end table
  394. @subsection Examples
  395. @itemize
  396. @item
  397. Use @command{ffmpeg} for creating a video from the images in the file
  398. sequence @file{img-001.jpeg}, @file{img-002.jpeg}, ..., assuming an
  399. input frame rate of 10 frames per second:
  400. @example
  401. ffmpeg -framerate 10 -i 'img-%03d.jpeg' out.mkv
  402. @end example
  403. @item
  404. As above, but start by reading from a file with index 100 in the sequence:
  405. @example
  406. ffmpeg -framerate 10 -start_number 100 -i 'img-%03d.jpeg' out.mkv
  407. @end example
  408. @item
  409. Read images matching the "*.png" glob pattern , that is all the files
  410. terminating with the ".png" suffix:
  411. @example
  412. ffmpeg -framerate 10 -pattern_type glob -i "*.png" out.mkv
  413. @end example
  414. @end itemize
  415. @section libgme
  416. The Game Music Emu library is a collection of video game music file emulators.
  417. See @url{https://bitbucket.org/mpyne/game-music-emu/overview} for more information.
  418. It accepts the following options:
  419. @table @option
  420. @item track_index
  421. Set the index of which track to demux. The demuxer can only export one track.
  422. Track indexes start at 0. Default is to pick the first track. Number of tracks
  423. is exported as @var{tracks} metadata entry.
  424. @item sample_rate
  425. Set the sampling rate of the exported track. Range is 1000 to 999999. Default is 44100.
  426. @item max_size @emph{(bytes)}
  427. The demuxer buffers the entire file into memory. Adjust this value to set the maximum buffer size,
  428. which in turn, acts as a ceiling for the size of files that can be read.
  429. Default is 50 MiB.
  430. @end table
  431. @section libmodplug
  432. ModPlug based module demuxer
  433. See @url{https://github.com/Konstanty/libmodplug}
  434. It will export one 2-channel 16-bit 44.1 kHz audio stream.
  435. Optionally, a @code{pal8} 16-color video stream can be exported with or without printed metadata.
  436. It accepts the following options:
  437. @table @option
  438. @item noise_reduction
  439. Apply a simple low-pass filter. Can be 1 (on) or 0 (off). Default is 0.
  440. @item reverb_depth
  441. Set amount of reverb. Range 0-100. Default is 0.
  442. @item reverb_delay
  443. Set delay in ms, clamped to 40-250 ms. Default is 0.
  444. @item bass_amount
  445. Apply bass expansion a.k.a. XBass or megabass. Range is 0 (quiet) to 100 (loud). Default is 0.
  446. @item bass_range
  447. Set cutoff i.e. upper-bound for bass frequencies. Range is 10-100 Hz. Default is 0.
  448. @item surround_depth
  449. Apply a Dolby Pro-Logic surround effect. Range is 0 (quiet) to 100 (heavy). Default is 0.
  450. @item surround_delay
  451. Set surround delay in ms, clamped to 5-40 ms. Default is 0.
  452. @item max_size
  453. The demuxer buffers the entire file into memory. Adjust this value to set the maximum buffer size,
  454. which in turn, acts as a ceiling for the size of files that can be read. Range is 0 to 100 MiB.
  455. 0 removes buffer size limit (not recommended). Default is 5 MiB.
  456. @item video_stream_expr
  457. String which is evaluated using the eval API to assign colors to the generated video stream.
  458. Variables which can be used are @code{x}, @code{y}, @code{w}, @code{h}, @code{t}, @code{speed},
  459. @code{tempo}, @code{order}, @code{pattern} and @code{row}.
  460. @item video_stream
  461. Generate video stream. Can be 1 (on) or 0 (off). Default is 0.
  462. @item video_stream_w
  463. Set video frame width in 'chars' where one char indicates 8 pixels. Range is 20-512. Default is 30.
  464. @item video_stream_h
  465. Set video frame height in 'chars' where one char indicates 8 pixels. Range is 20-512. Default is 30.
  466. @item video_stream_ptxt
  467. Print metadata on video stream. Includes @code{speed}, @code{tempo}, @code{order}, @code{pattern},
  468. @code{row} and @code{ts} (time in ms). Can be 1 (on) or 0 (off). Default is 1.
  469. @end table
  470. @section libopenmpt
  471. libopenmpt based module demuxer
  472. See @url{https://lib.openmpt.org/libopenmpt/} for more information.
  473. Some files have multiple subsongs (tracks) this can be set with the @option{subsong}
  474. option.
  475. It accepts the following options:
  476. @table @option
  477. @item subsong
  478. Set the subsong index. This can be either 'all', 'auto', or the index of the
  479. subsong. Subsong indexes start at 0. The default is 'auto'.
  480. The default value is to let libopenmpt choose.
  481. @item layout
  482. Set the channel layout. Valid values are 1, 2, and 4 channel layouts.
  483. The default value is STEREO.
  484. @item sample_rate
  485. Set the sample rate for libopenmpt to output.
  486. Range is from 1000 to INT_MAX. The value default is 48000.
  487. @end table
  488. @section mov/mp4/3gp
  489. Demuxer for Quicktime File Format & ISO/IEC Base Media File Format (ISO/IEC 14496-12 or MPEG-4 Part 12, ISO/IEC 15444-12 or JPEG 2000 Part 12).
  490. Registered extensions: mov, mp4, m4a, 3gp, 3g2, mj2, psp, m4b, ism, ismv, isma, f4v
  491. @subsection Options
  492. This demuxer accepts the following options:
  493. @table @option
  494. @item enable_drefs
  495. Enable loading of external tracks, disabled by default.
  496. Enabling this can theoretically leak information in some use cases.
  497. @item use_absolute_path
  498. Allows loading of external tracks via absolute paths, disabled by default.
  499. Enabling this poses a security risk. It should only be enabled if the source
  500. is known to be non-malicious.
  501. @item seek_streams_individually
  502. When seeking, identify the closest point in each stream individually and demux packets in
  503. that stream from identified point. This can lead to a different sequence of packets compared
  504. to demuxing linearly from the beginning. Default is true.
  505. @item ignore_editlist
  506. Ignore any edit list atoms. The demuxer, by default, modifies the stream index to reflect the
  507. timeline described by the edit list. Default is false.
  508. @item advanced_editlist
  509. Modify the stream index to reflect the timeline described by the edit list. @code{ignore_editlist}
  510. must be set to false for this option to be effective.
  511. If both @code{ignore_editlist} and this option are set to false, then only the
  512. start of the stream index is modified to reflect initial dwell time or starting timestamp
  513. described by the edit list. Default is true.
  514. @item ignore_chapters
  515. Don't parse chapters. This includes GoPro 'HiLight' tags/moments. Note that chapters are
  516. only parsed when input is seekable. Default is false.
  517. @item use_mfra_for
  518. For seekable fragmented input, set fragment's starting timestamp from media fragment random access box, if present.
  519. Following options are available:
  520. @table @samp
  521. @item auto
  522. Auto-detect whether to set mfra timestamps as PTS or DTS @emph{(default)}
  523. @item dts
  524. Set mfra timestamps as DTS
  525. @item pts
  526. Set mfra timestamps as PTS
  527. @item 0
  528. Don't use mfra box to set timestamps
  529. @end table
  530. @item use_tfdt
  531. For fragmented input, set fragment's starting timestamp to @code{baseMediaDecodeTime} from the @code{tfdt} box.
  532. Default is enabled, which will prefer to use the @code{tfdt} box to set DTS. Disable to use the @code{earliest_presentation_time} from the @code{sidx} box.
  533. In either case, the timestamp from the @code{mfra} box will be used if it's available and @code{use_mfra_for} is
  534. set to pts or dts.
  535. @item export_all
  536. Export unrecognized boxes within the @var{udta} box as metadata entries. The first four
  537. characters of the box type are set as the key. Default is false.
  538. @item export_xmp
  539. Export entire contents of @var{XMP_} box and @var{uuid} box as a string with key @code{xmp}. Note that
  540. if @code{export_all} is set and this option isn't, the contents of @var{XMP_} box are still exported
  541. but with key @code{XMP_}. Default is false.
  542. @item activation_bytes
  543. 4-byte key required to decrypt Audible AAX and AAX+ files. See Audible AAX subsection below.
  544. @item audible_fixed_key
  545. Fixed key used for handling Audible AAX/AAX+ files. It has been pre-set so should not be necessary to
  546. specify.
  547. @item decryption_key
  548. 16-byte key, in hex, to decrypt files encrypted using ISO Common Encryption (CENC/AES-128 CTR; ISO/IEC 23001-7).
  549. @item max_stts_delta
  550. Very high sample deltas written in a trak's stts box may occasionally be intended but usually they are written in
  551. error or used to store a negative value for dts correction when treated as signed 32-bit integers. This option lets
  552. the user set an upper limit, beyond which the delta is clamped to 1. Values greater than the limit if negative when
  553. cast to int32 are used to adjust onward dts.
  554. Unit is the track time scale. Range is 0 to UINT_MAX. Default is @code{UINT_MAX - 48000*10} which allows upto
  555. a 10 second dts correction for 48 kHz audio streams while accommodating 99.9% of @code{uint32} range.
  556. @end table
  557. @subsection Audible AAX
  558. Audible AAX files are encrypted M4B files, and they can be decrypted by specifying a 4 byte activation secret.
  559. @example
  560. ffmpeg -activation_bytes 1CEB00DA -i test.aax -vn -c:a copy output.mp4
  561. @end example
  562. @section mpegts
  563. MPEG-2 transport stream demuxer.
  564. This demuxer accepts the following options:
  565. @table @option
  566. @item resync_size
  567. Set size limit for looking up a new synchronization. Default value is
  568. 65536.
  569. @item skip_unknown_pmt
  570. Skip PMTs for programs not defined in the PAT. Default value is 0.
  571. @item fix_teletext_pts
  572. Override teletext packet PTS and DTS values with the timestamps calculated
  573. from the PCR of the first program which the teletext stream is part of and is
  574. not discarded. Default value is 1, set this option to 0 if you want your
  575. teletext packet PTS and DTS values untouched.
  576. @item ts_packetsize
  577. Output option carrying the raw packet size in bytes.
  578. Show the detected raw packet size, cannot be set by the user.
  579. @item scan_all_pmts
  580. Scan and combine all PMTs. The value is an integer with value from -1
  581. to 1 (-1 means automatic setting, 1 means enabled, 0 means
  582. disabled). Default value is -1.
  583. @item merge_pmt_versions
  584. Re-use existing streams when a PMT's version is updated and elementary
  585. streams move to different PIDs. Default value is 0.
  586. @item max_packet_size
  587. Set maximum size, in bytes, of packet emitted by the demuxer. Payloads above this size
  588. are split across multiple packets. Range is 1 to INT_MAX/2. Default is 204800 bytes.
  589. @end table
  590. @section mpjpeg
  591. MJPEG encapsulated in multi-part MIME demuxer.
  592. This demuxer allows reading of MJPEG, where each frame is represented as a part of
  593. multipart/x-mixed-replace stream.
  594. @table @option
  595. @item strict_mime_boundary
  596. Default implementation applies a relaxed standard to multi-part MIME boundary detection,
  597. to prevent regression with numerous existing endpoints not generating a proper MIME
  598. MJPEG stream. Turning this option on by setting it to 1 will result in a stricter check
  599. of the boundary value.
  600. @end table
  601. @section rawvideo
  602. Raw video demuxer.
  603. This demuxer allows one to read raw video data. Since there is no header
  604. specifying the assumed video parameters, the user must specify them
  605. in order to be able to decode the data correctly.
  606. This demuxer accepts the following options:
  607. @table @option
  608. @item framerate
  609. Set input video frame rate. Default value is 25.
  610. @item pixel_format
  611. Set the input video pixel format. Default value is @code{yuv420p}.
  612. @item video_size
  613. Set the input video size. This value must be specified explicitly.
  614. @end table
  615. For example to read a rawvideo file @file{input.raw} with
  616. @command{ffplay}, assuming a pixel format of @code{rgb24}, a video
  617. size of @code{320x240}, and a frame rate of 10 images per second, use
  618. the command:
  619. @example
  620. ffplay -f rawvideo -pixel_format rgb24 -video_size 320x240 -framerate 10 input.raw
  621. @end example
  622. @section sbg
  623. SBaGen script demuxer.
  624. This demuxer reads the script language used by SBaGen
  625. @url{http://uazu.net/sbagen/} to generate binaural beats sessions. A SBG
  626. script looks like that:
  627. @example
  628. -SE
  629. a: 300-2.5/3 440+4.5/0
  630. b: 300-2.5/0 440+4.5/3
  631. off: -
  632. NOW == a
  633. +0:07:00 == b
  634. +0:14:00 == a
  635. +0:21:00 == b
  636. +0:30:00 off
  637. @end example
  638. A SBG script can mix absolute and relative timestamps. If the script uses
  639. either only absolute timestamps (including the script start time) or only
  640. relative ones, then its layout is fixed, and the conversion is
  641. straightforward. On the other hand, if the script mixes both kind of
  642. timestamps, then the @var{NOW} reference for relative timestamps will be
  643. taken from the current time of day at the time the script is read, and the
  644. script layout will be frozen according to that reference. That means that if
  645. the script is directly played, the actual times will match the absolute
  646. timestamps up to the sound controller's clock accuracy, but if the user
  647. somehow pauses the playback or seeks, all times will be shifted accordingly.
  648. @section tedcaptions
  649. JSON captions used for @url{http://www.ted.com/, TED Talks}.
  650. TED does not provide links to the captions, but they can be guessed from the
  651. page. The file @file{tools/bookmarklets.html} from the FFmpeg source tree
  652. contains a bookmarklet to expose them.
  653. This demuxer accepts the following option:
  654. @table @option
  655. @item start_time
  656. Set the start time of the TED talk, in milliseconds. The default is 15000
  657. (15s). It is used to sync the captions with the downloadable videos, because
  658. they include a 15s intro.
  659. @end table
  660. Example: convert the captions to a format most players understand:
  661. @example
  662. ffmpeg -i http://www.ted.com/talks/subtitles/id/1/lang/en talk1-en.srt
  663. @end example
  664. @section vapoursynth
  665. Vapoursynth wrapper.
  666. Due to security concerns, Vapoursynth scripts will not
  667. be autodetected so the input format has to be forced. For ff* CLI tools,
  668. add @code{-f vapoursynth} before the input @code{-i yourscript.vpy}.
  669. This demuxer accepts the following option:
  670. @table @option
  671. @item max_script_size
  672. The demuxer buffers the entire script into memory. Adjust this value to set the maximum buffer size,
  673. which in turn, acts as a ceiling for the size of scripts that can be read.
  674. Default is 1 MiB.
  675. @end table
  676. @c man end DEMUXERS