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