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