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