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.

837 lines
28KB

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