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