muxers.texi 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841
  1. @chapter Muxers
  2. @c man begin MUXERS
  3. Muxers are configured elements in FFmpeg which allow writing
  4. multimedia streams to a particular type of file.
  5. When you configure your FFmpeg build, all the supported muxers
  6. are enabled by default. You can list all available muxers using the
  7. configure option @code{--list-muxers}.
  8. You can disable all the muxers with the configure option
  9. @code{--disable-muxers} and selectively enable / disable single muxers
  10. with the options @code{--enable-muxer=@var{MUXER}} /
  11. @code{--disable-muxer=@var{MUXER}}.
  12. The option @code{-muxers} of the ff* tools will display the list of
  13. enabled muxers. Use @code{-formats} to view a combined list of
  14. enabled demuxers and muxers.
  15. A description of some of the currently available muxers follows.
  16. @anchor{a64}
  17. @section a64
  18. A64 muxer for Commodore 64 video. Accepts a single @code{a64_multi} or @code{a64_multi5} codec video stream.
  19. @anchor{adts}
  20. @section adts
  21. Audio Data Transport Stream muxer. It accepts a single AAC stream.
  22. @subsection Options
  23. It accepts the following options:
  24. @table @option
  25. @item write_id3v2 @var{bool}
  26. Enable to write ID3v2.4 tags at the start of the stream. Default is disabled.
  27. @item write_apetag @var{bool}
  28. Enable to write APE tags at the end of the stream. Default is disabled.
  29. @item write_mpeg2 @var{bool}
  30. Enable to set MPEG version bit in the ADTS frame header to 1 which indicates MPEG-2. Default is 0, which indicates MPEG-4.
  31. @end table
  32. @anchor{aiff}
  33. @section aiff
  34. Audio Interchange File Format muxer.
  35. @subsection Options
  36. It accepts the following options:
  37. @table @option
  38. @item write_id3v2
  39. Enable ID3v2 tags writing when set to 1. Default is 0 (disabled).
  40. @item id3v2_version
  41. Select ID3v2 version to write. Currently only version 3 and 4 (aka.
  42. ID3v2.3 and ID3v2.4) are supported. The default is version 4.
  43. @end table
  44. @anchor{alp}
  45. @section alp
  46. Muxer for audio of High Voltage Software's Lego Racers game. It accepts a single ADPCM_IMA_ALP stream
  47. with no more than 2 channels nor a sample rate greater than 44100 Hz.
  48. Extensions: tun, pcm
  49. @subsection Options
  50. It accepts the following options:
  51. @table @option
  52. @item type @var{type}
  53. Set file type.
  54. @table @samp
  55. @item tun
  56. Set file type as music. Must have a sample rate of 22050 Hz.
  57. @item pcm
  58. Set file type as sfx.
  59. @item auto
  60. Set file type as per output file extension. @code{.pcm} results in type @code{pcm} else type @code{tun} is set. @var{(default)}
  61. @end table
  62. @end table
  63. @anchor{asf}
  64. @section asf
  65. Advanced Systems Format muxer.
  66. Note that Windows Media Audio (wma) and Windows Media Video (wmv) use this
  67. muxer too.
  68. @subsection Options
  69. It accepts the following options:
  70. @table @option
  71. @item packet_size
  72. Set the muxer packet size. By tuning this setting you may reduce data
  73. fragmentation or muxer overhead depending on your source. Default value is
  74. 3200, minimum is 100, maximum is 64k.
  75. @end table
  76. @anchor{avi}
  77. @section avi
  78. Audio Video Interleaved muxer.
  79. @subsection Options
  80. It accepts the following options:
  81. @table @option
  82. @item reserve_index_space
  83. Reserve the specified amount of bytes for the OpenDML master index of each
  84. stream within the file header. By default additional master indexes are
  85. embedded within the data packets if there is no space left in the first master
  86. index and are linked together as a chain of indexes. This index structure can
  87. cause problems for some use cases, e.g. third-party software strictly relying
  88. on the OpenDML index specification or when file seeking is slow. Reserving
  89. enough index space in the file header avoids these problems.
  90. The required index space depends on the output file size and should be about 16
  91. bytes per gigabyte. When this option is omitted or set to zero the necessary
  92. index space is guessed.
  93. @item write_channel_mask
  94. Write the channel layout mask into the audio stream header.
  95. This option is enabled by default. Disabling the channel mask can be useful in
  96. specific scenarios, e.g. when merging multiple audio streams into one for
  97. compatibility with software that only supports a single audio stream in AVI
  98. (see @ref{amerge,,the "amerge" section in the ffmpeg-filters manual,ffmpeg-filters}).
  99. @item flipped_raw_rgb
  100. If set to true, store positive height for raw RGB bitmaps, which indicates
  101. bitmap is stored bottom-up. Note that this option does not flip the bitmap
  102. which has to be done manually beforehand, e.g. by using the vflip filter.
  103. Default is @var{false} and indicates bitmap is stored top down.
  104. @end table
  105. @anchor{chromaprint}
  106. @section chromaprint
  107. Chromaprint fingerprinter.
  108. This muxer feeds audio data to the Chromaprint library,
  109. which generates a fingerprint for the provided audio data. See @url{https://acoustid.org/chromaprint}
  110. It takes a single signed native-endian 16-bit raw audio stream of at most 2 channels.
  111. @subsection Options
  112. @table @option
  113. @item silence_threshold
  114. Threshold for detecting silence. Range is from -1 to 32767, where -1 disables
  115. silence detection. Silence detection can only be used with version 3 of the
  116. algorithm.
  117. Silence detection must be disabled for use with the AcoustID service. Default is -1.
  118. @item algorithm
  119. Version of algorithm to fingerprint with. Range is 0 to 4.
  120. Version 3 enables silence detection. Default is 1.
  121. @item fp_format
  122. Format to output the fingerprint as. Accepts the following options:
  123. @table @samp
  124. @item raw
  125. Binary raw fingerprint
  126. @item compressed
  127. Binary compressed fingerprint
  128. @item base64
  129. Base64 compressed fingerprint @emph{(default)}
  130. @end table
  131. @end table
  132. @anchor{crc}
  133. @section crc
  134. CRC (Cyclic Redundancy Check) testing format.
  135. This muxer computes and prints the Adler-32 CRC of all the input audio
  136. and video frames. By default audio frames are converted to signed
  137. 16-bit raw audio and video frames to raw video before computing the
  138. CRC.
  139. The output of the muxer consists of a single line of the form:
  140. CRC=0x@var{CRC}, where @var{CRC} is a hexadecimal number 0-padded to
  141. 8 digits containing the CRC for all the decoded input frames.
  142. See also the @ref{framecrc} muxer.
  143. @subsection Examples
  144. For example to compute the CRC of the input, and store it in the file
  145. @file{out.crc}:
  146. @example
  147. ffmpeg -i INPUT -f crc out.crc
  148. @end example
  149. You can print the CRC to stdout with the command:
  150. @example
  151. ffmpeg -i INPUT -f crc -
  152. @end example
  153. You can select the output format of each frame with @command{ffmpeg} by
  154. specifying the audio and video codec and format. For example to
  155. compute the CRC of the input audio converted to PCM unsigned 8-bit
  156. and the input video converted to MPEG-2 video, use the command:
  157. @example
  158. ffmpeg -i INPUT -c:a pcm_u8 -c:v mpeg2video -f crc -
  159. @end example
  160. @anchor{dash}
  161. @section dash
  162. Dynamic Adaptive Streaming over HTTP (DASH) muxer that creates segments
  163. and manifest files according to the MPEG-DASH standard ISO/IEC 23009-1:2014.
  164. For more information see:
  165. @itemize @bullet
  166. @item
  167. ISO DASH Specification: @url{http://standards.iso.org/ittf/PubliclyAvailableStandards/c065274_ISO_IEC_23009-1_2014.zip}
  168. @item
  169. WebM DASH Specification: @url{https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/webm-dash-specification}
  170. @end itemize
  171. It creates a MPD manifest file and segment files for each stream.
  172. The segment filename might contain pre-defined identifiers used with SegmentTemplate
  173. as defined in section 5.3.9.4.4 of the standard. Available identifiers are "$RepresentationID$",
  174. "$Number$", "$Bandwidth$" and "$Time$".
  175. In addition to the standard identifiers, an ffmpeg-specific "$ext$" identifier is also supported.
  176. When specified ffmpeg will replace $ext$ in the file name with muxing format's extensions such as mp4, webm etc.,
  177. @example
  178. ffmpeg -re -i <input> -map 0 -map 0 -c:a libfdk_aac -c:v libx264 \
  179. -b:v:0 800k -b:v:1 300k -s:v:1 320x170 -profile:v:1 baseline \
  180. -profile:v:0 main -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 \
  181. -b_strategy 0 -ar:a:1 22050 -use_timeline 1 -use_template 1 \
  182. -window_size 5 -adaptation_sets "id=0,streams=v id=1,streams=a" \
  183. -f dash /path/to/out.mpd
  184. @end example
  185. @table @option
  186. @item seg_duration @var{duration}
  187. Set the segment length in seconds (fractional value can be set). The value is
  188. treated as average segment duration when @var{use_template} is enabled and
  189. @var{use_timeline} is disabled and as minimum segment duration for all the other
  190. use cases.
  191. @item frag_duration @var{duration}
  192. Set the length in seconds of fragments within segments (fractional value can be set).
  193. @item frag_type @var{type}
  194. Set the type of interval for fragmentation.
  195. @item window_size @var{size}
  196. Set the maximum number of segments kept in the manifest.
  197. @item extra_window_size @var{size}
  198. Set the maximum number of segments kept outside of the manifest before removing from disk.
  199. @item remove_at_exit @var{remove}
  200. Enable (1) or disable (0) removal of all segments when finished.
  201. @item use_template @var{template}
  202. Enable (1) or disable (0) use of SegmentTemplate instead of SegmentList.
  203. @item use_timeline @var{timeline}
  204. Enable (1) or disable (0) use of SegmentTimeline in SegmentTemplate.
  205. @item single_file @var{single_file}
  206. Enable (1) or disable (0) storing all segments in one file, accessed using byte ranges.
  207. @item single_file_name @var{file_name}
  208. DASH-templated name to be used for baseURL. Implies @var{single_file} set to "1". In the template, "$ext$" is replaced with the file name extension specific for the segment format.
  209. @item init_seg_name @var{init_name}
  210. DASH-templated name to used for the initialization segment. Default is "init-stream$RepresentationID$.$ext$". "$ext$" is replaced with the file name extension specific for the segment format.
  211. @item media_seg_name @var{segment_name}
  212. DASH-templated name to used for the media segments. Default is "chunk-stream$RepresentationID$-$Number%05d$.$ext$". "$ext$" is replaced with the file name extension specific for the segment format.
  213. @item utc_timing_url @var{utc_url}
  214. URL of the page that will return the UTC timestamp in ISO format. Example: "https://time.akamai.com/?iso"
  215. @item method @var{method}
  216. Use the given HTTP method to create output files. Generally set to PUT or POST.
  217. @item http_user_agent @var{user_agent}
  218. Override User-Agent field in HTTP header. Applicable only for HTTP output.
  219. @item http_persistent @var{http_persistent}
  220. Use persistent HTTP connections. Applicable only for HTTP output.
  221. @item hls_playlist @var{hls_playlist}
  222. Generate HLS playlist files as well. The master playlist is generated with the filename @var{hls_master_name}.
  223. One media playlist file is generated for each stream with filenames media_0.m3u8, media_1.m3u8, etc.
  224. @item hls_master_name @var{file_name}
  225. HLS master playlist name. Default is "master.m3u8".
  226. @item streaming @var{streaming}
  227. Enable (1) or disable (0) chunk streaming mode of output. In chunk streaming
  228. mode, each frame will be a moof fragment which forms a chunk.
  229. @item adaptation_sets @var{adaptation_sets}
  230. Assign streams to AdaptationSets. Syntax is "id=x,streams=a,b,c id=y,streams=d,e" with x and y being the IDs
  231. of the adaptation sets and a,b,c,d and e are the indices of the mapped streams.
  232. To map all video (or audio) streams to an AdaptationSet, "v" (or "a") can be used as stream identifier instead of IDs.
  233. When no assignment is defined, this defaults to an AdaptationSet for each stream.
  234. Optional syntax is "id=x,seg_duration=x,frag_duration=x,frag_type=type,descriptor=descriptor_string,streams=a,b,c id=y,seg_duration=y,frag_type=type,streams=d,e" and so on,
  235. descriptor is useful to the scheme defined by ISO/IEC 23009-1:2014/Amd.2:2015.
  236. For example, -adaptation_sets "id=0,descriptor=<SupplementalProperty schemeIdUri=\"urn:mpeg:dash:srd:2014\" value=\"0,0,0,1,1,2,2\"/>,streams=v".
  237. Please note that descriptor string should be a self-closing xml tag.
  238. seg_duration, frag_duration and frag_type override the global option values for each adaptation set.
  239. For example, -adaptation_sets "id=0,seg_duration=2,frag_duration=1,frag_type=duration,streams=v id=1,seg_duration=2,frag_type=none,streams=a"
  240. type_id marks an adaptation set as containing streams meant to be used for Trick Mode for the referenced adaptation set.
  241. For example, -adaptation_sets "id=0,seg_duration=2,frag_type=none,streams=0 id=1,seg_duration=10,frag_type=none,trick_id=0,streams=1"
  242. @item timeout @var{timeout}
  243. Set timeout for socket I/O operations. Applicable only for HTTP output.
  244. @item index_correction @var{index_correction}
  245. Enable (1) or Disable (0) segment index correction logic. Applicable only when
  246. @var{use_template} is enabled and @var{use_timeline} is disabled.
  247. When enabled, the logic monitors the flow of segment indexes. If a streams's
  248. segment index value is not at the expected real time position, then the logic
  249. corrects that index value.
  250. Typically this logic is needed in live streaming use cases. The network bandwidth
  251. fluctuations are common during long run streaming. Each fluctuation can cause
  252. the segment indexes fall behind the expected real time position.
  253. @item format_options @var{options_list}
  254. Set container format (mp4/webm) options using a @code{:} separated list of
  255. key=value parameters. Values containing @code{:} special characters must be
  256. escaped.
  257. @item global_sidx @var{global_sidx}
  258. Write global SIDX atom. Applicable only for single file, mp4 output, non-streaming mode.
  259. @item dash_segment_type @var{dash_segment_type}
  260. Possible values:
  261. @table @option
  262. @item auto
  263. If this flag is set, the dash segment files format will be selected based on the stream codec. This is the default mode.
  264. @item mp4
  265. If this flag is set, the dash segment files will be in in ISOBMFF format.
  266. @item webm
  267. If this flag is set, the dash segment files will be in in WebM format.
  268. @end table
  269. @item ignore_io_errors @var{ignore_io_errors}
  270. Ignore IO errors during open and write. Useful for long-duration runs with network output.
  271. @item lhls @var{lhls}
  272. Enable Low-latency HLS(LHLS). Adds #EXT-X-PREFETCH tag with current segment's URI.
  273. hls.js player folks are trying to standardize an open LHLS spec. The draft spec is available in https://github.com/video-dev/hlsjs-rfcs/blob/lhls-spec/proposals/0001-lhls.md
  274. This option tries to comply with the above open spec.
  275. It enables @var{streaming} and @var{hls_playlist} options automatically.
  276. This is an experimental feature.
  277. Note: This is not Apple's version LHLS. See @url{https://datatracker.ietf.org/doc/html/draft-pantos-hls-rfc8216bis}
  278. @item ldash @var{ldash}
  279. Enable Low-latency Dash by constraining the presence and values of some elements.
  280. @item master_m3u8_publish_rate @var{master_m3u8_publish_rate}
  281. Publish master playlist repeatedly every after specified number of segment intervals.
  282. @item write_prft @var{write_prft}
  283. Write Producer Reference Time elements on supported streams. This also enables writing
  284. prft boxes in the underlying muxer. Applicable only when the @var{utc_url} option is enabled.
  285. It's set to auto by default, in which case the muxer will attempt to enable it only in modes
  286. that require it.
  287. @item mpd_profile @var{mpd_profile}
  288. Set one or more manifest profiles.
  289. @item http_opts @var{http_opts}
  290. A :-separated list of key=value options to pass to the underlying HTTP
  291. protocol. Applicable only for HTTP output.
  292. @item target_latency @var{target_latency}
  293. Set an intended target latency in seconds (fractional value can be set) for serving. Applicable only when @var{streaming} and @var{write_prft} options are enabled.
  294. This is an informative fields clients can use to measure the latency of the service.
  295. @item min_playback_rate @var{min_playback_rate}
  296. Set the minimum playback rate indicated as appropriate for the purposes of automatically
  297. adjusting playback latency and buffer occupancy during normal playback by clients.
  298. @item max_playback_rate @var{max_playback_rate}
  299. Set the maximum playback rate indicated as appropriate for the purposes of automatically
  300. adjusting playback latency and buffer occupancy during normal playback by clients.
  301. @item update_period @var{update_period}
  302. Set the mpd update period ,for dynamic content.
  303. The unit is second.
  304. @end table
  305. @anchor{fifo}
  306. @section fifo
  307. The fifo pseudo-muxer allows the separation of encoding and muxing by using
  308. first-in-first-out queue and running the actual muxer in a separate thread. This
  309. is especially useful in combination with the @ref{tee} muxer and can be used to
  310. send data to several destinations with different reliability/writing speed/latency.
  311. API users should be aware that callback functions (interrupt_callback,
  312. io_open and io_close) used within its AVFormatContext must be thread-safe.
  313. The behavior of the fifo muxer if the queue fills up or if the output fails is
  314. selectable,
  315. @itemize @bullet
  316. @item
  317. output can be transparently restarted with configurable delay between retries
  318. based on real time or time of the processed stream.
  319. @item
  320. encoding can be blocked during temporary failure, or continue transparently
  321. dropping packets in case fifo queue fills up.
  322. @end itemize
  323. @table @option
  324. @item fifo_format
  325. Specify the format name. Useful if it cannot be guessed from the
  326. output name suffix.
  327. @item queue_size
  328. Specify size of the queue (number of packets). Default value is 60.
  329. @item format_opts
  330. Specify format options for the underlying muxer. Muxer options can be specified
  331. as a list of @var{key}=@var{value} pairs separated by ':'.
  332. @item drop_pkts_on_overflow @var{bool}
  333. If set to 1 (true), in case the fifo queue fills up, packets will be dropped
  334. rather than blocking the encoder. This makes it possible to continue streaming without
  335. delaying the input, at the cost of omitting part of the stream. By default
  336. this option is set to 0 (false), so in such cases the encoder will be blocked
  337. until the muxer processes some of the packets and none of them is lost.
  338. @item attempt_recovery @var{bool}
  339. If failure occurs, attempt to recover the output. This is especially useful
  340. when used with network output, since it makes it possible to restart streaming transparently.
  341. By default this option is set to 0 (false).
  342. @item max_recovery_attempts
  343. Sets maximum number of successive unsuccessful recovery attempts after which
  344. the output fails permanently. By default this option is set to 0 (unlimited).
  345. @item recovery_wait_time @var{duration}
  346. Waiting time before the next recovery attempt after previous unsuccessful
  347. recovery attempt. Default value is 5 seconds.
  348. @item recovery_wait_streamtime @var{bool}
  349. If set to 0 (false), the real time is used when waiting for the recovery
  350. attempt (i.e. the recovery will be attempted after at least
  351. recovery_wait_time seconds).
  352. If set to 1 (true), the time of the processed stream is taken into account
  353. instead (i.e. the recovery will be attempted after at least @var{recovery_wait_time}
  354. seconds of the stream is omitted).
  355. By default, this option is set to 0 (false).
  356. @item recover_any_error @var{bool}
  357. If set to 1 (true), recovery will be attempted regardless of type of the error
  358. causing the failure. By default this option is set to 0 (false) and in case of
  359. certain (usually permanent) errors the recovery is not attempted even when
  360. @var{attempt_recovery} is set to 1.
  361. @item restart_with_keyframe @var{bool}
  362. Specify whether to wait for the keyframe after recovering from
  363. queue overflow or failure. This option is set to 0 (false) by default.
  364. @item timeshift @var{duration}
  365. Buffer the specified amount of packets and delay writing the output. Note that
  366. @var{queue_size} must be big enough to store the packets for timeshift. At the
  367. end of the input the fifo buffer is flushed at realtime speed.
  368. @end table
  369. @subsection Examples
  370. @itemize
  371. @item
  372. Stream something to rtmp server, continue processing the stream at real-time
  373. rate even in case of temporary failure (network outage) and attempt to recover
  374. streaming every second indefinitely.
  375. @example
  376. ffmpeg -re -i ... -c:v libx264 -c:a aac -f fifo -fifo_format flv -map 0:v -map 0:a
  377. -drop_pkts_on_overflow 1 -attempt_recovery 1 -recovery_wait_time 1 rtmp://example.com/live/stream_name
  378. @end example
  379. @end itemize
  380. @section flv
  381. Adobe Flash Video Format muxer.
  382. This muxer accepts the following options:
  383. @table @option
  384. @item flvflags @var{flags}
  385. Possible values:
  386. @table @samp
  387. @item aac_seq_header_detect
  388. Place AAC sequence header based on audio stream data.
  389. @item no_sequence_end
  390. Disable sequence end tag.
  391. @item no_metadata
  392. Disable metadata tag.
  393. @item no_duration_filesize
  394. Disable duration and filesize in metadata when they are equal to zero
  395. at the end of stream. (Be used to non-seekable living stream).
  396. @item add_keyframe_index
  397. Used to facilitate seeking; particularly for HTTP pseudo streaming.
  398. @end table
  399. @end table
  400. @anchor{framecrc}
  401. @section framecrc
  402. Per-packet CRC (Cyclic Redundancy Check) testing format.
  403. This muxer computes and prints the Adler-32 CRC for each audio
  404. and video packet. By default audio frames are converted to signed
  405. 16-bit raw audio and video frames to raw video before computing the
  406. CRC.
  407. The output of the muxer consists of a line for each audio and video
  408. packet of the form:
  409. @example
  410. @var{stream_index}, @var{packet_dts}, @var{packet_pts}, @var{packet_duration}, @var{packet_size}, 0x@var{CRC}
  411. @end example
  412. @var{CRC} is a hexadecimal number 0-padded to 8 digits containing the
  413. CRC of the packet.
  414. @subsection Examples
  415. For example to compute the CRC of the audio and video frames in
  416. @file{INPUT}, converted to raw audio and video packets, and store it
  417. in the file @file{out.crc}:
  418. @example
  419. ffmpeg -i INPUT -f framecrc out.crc
  420. @end example
  421. To print the information to stdout, use the command:
  422. @example
  423. ffmpeg -i INPUT -f framecrc -
  424. @end example
  425. With @command{ffmpeg}, you can select the output format to which the
  426. audio and video frames are encoded before computing the CRC for each
  427. packet by specifying the audio and video codec. For example, to
  428. compute the CRC of each decoded input audio frame converted to PCM
  429. unsigned 8-bit and of each decoded input video frame converted to
  430. MPEG-2 video, use the command:
  431. @example
  432. ffmpeg -i INPUT -c:a pcm_u8 -c:v mpeg2video -f framecrc -
  433. @end example
  434. See also the @ref{crc} muxer.
  435. @anchor{framehash}
  436. @section framehash
  437. Per-packet hash testing format.
  438. This muxer computes and prints a cryptographic hash for each audio
  439. and video packet. This can be used for packet-by-packet equality
  440. checks without having to individually do a binary comparison on each.
  441. By default audio frames are converted to signed 16-bit raw audio and
  442. video frames to raw video before computing the hash, but the output
  443. of explicit conversions to other codecs can also be used. It uses the
  444. SHA-256 cryptographic hash function by default, but supports several
  445. other algorithms.
  446. The output of the muxer consists of a line for each audio and video
  447. packet of the form:
  448. @example
  449. @var{stream_index}, @var{packet_dts}, @var{packet_pts}, @var{packet_duration}, @var{packet_size}, @var{hash}
  450. @end example
  451. @var{hash} is a hexadecimal number representing the computed hash
  452. for the packet.
  453. @table @option
  454. @item hash @var{algorithm}
  455. Use the cryptographic hash function specified by the string @var{algorithm}.
  456. Supported values include @code{MD5}, @code{murmur3}, @code{RIPEMD128},
  457. @code{RIPEMD160}, @code{RIPEMD256}, @code{RIPEMD320}, @code{SHA160},
  458. @code{SHA224}, @code{SHA256} (default), @code{SHA512/224}, @code{SHA512/256},
  459. @code{SHA384}, @code{SHA512}, @code{CRC32} and @code{adler32}.
  460. @end table
  461. @subsection Examples
  462. To compute the SHA-256 hash of the audio and video frames in @file{INPUT},
  463. converted to raw audio and video packets, and store it in the file
  464. @file{out.sha256}:
  465. @example
  466. ffmpeg -i INPUT -f framehash out.sha256
  467. @end example
  468. To print the information to stdout, using the MD5 hash function, use
  469. the command:
  470. @example
  471. ffmpeg -i INPUT -f framehash -hash md5 -
  472. @end example
  473. See also the @ref{hash} muxer.
  474. @anchor{framemd5}
  475. @section framemd5
  476. Per-packet MD5 testing format.
  477. This is a variant of the @ref{framehash} muxer. Unlike that muxer,
  478. it defaults to using the MD5 hash function.
  479. @subsection Examples
  480. To compute the MD5 hash of the audio and video frames in @file{INPUT},
  481. converted to raw audio and video packets, and store it in the file
  482. @file{out.md5}:
  483. @example
  484. ffmpeg -i INPUT -f framemd5 out.md5
  485. @end example
  486. To print the information to stdout, use the command:
  487. @example
  488. ffmpeg -i INPUT -f framemd5 -
  489. @end example
  490. See also the @ref{framehash} and @ref{md5} muxers.
  491. @anchor{gif}
  492. @section gif
  493. Animated GIF muxer.
  494. It accepts the following options:
  495. @table @option
  496. @item loop
  497. Set the number of times to loop the output. Use @code{-1} for no loop, @code{0}
  498. for looping indefinitely (default).
  499. @item final_delay
  500. Force the delay (expressed in centiseconds) after the last frame. Each frame
  501. ends with a delay until the next frame. The default is @code{-1}, which is a
  502. special value to tell the muxer to re-use the previous delay. In case of a
  503. loop, you might want to customize this value to mark a pause for instance.
  504. @end table
  505. For example, to encode a gif looping 10 times, with a 5 seconds delay between
  506. the loops:
  507. @example
  508. ffmpeg -i INPUT -loop 10 -final_delay 500 out.gif
  509. @end example
  510. Note 1: if you wish to extract the frames into separate GIF files, you need to
  511. force the @ref{image2} muxer:
  512. @example
  513. ffmpeg -i INPUT -c:v gif -f image2 "out%d.gif"
  514. @end example
  515. Note 2: the GIF format has a very large time base: the delay between two frames
  516. can therefore not be smaller than one centi second.
  517. @anchor{hash}
  518. @section hash
  519. Hash testing format.
  520. This muxer computes and prints a cryptographic hash of all the input
  521. audio and video frames. This can be used for equality checks without
  522. having to do a complete binary comparison.
  523. By default audio frames are converted to signed 16-bit raw audio and
  524. video frames to raw video before computing the hash, but the output
  525. of explicit conversions to other codecs can also be used. Timestamps
  526. are ignored. It uses the SHA-256 cryptographic hash function by default,
  527. but supports several other algorithms.
  528. The output of the muxer consists of a single line of the form:
  529. @var{algo}=@var{hash}, where @var{algo} is a short string representing
  530. the hash function used, and @var{hash} is a hexadecimal number
  531. representing the computed hash.
  532. @table @option
  533. @item hash @var{algorithm}
  534. Use the cryptographic hash function specified by the string @var{algorithm}.
  535. Supported values include @code{MD5}, @code{murmur3}, @code{RIPEMD128},
  536. @code{RIPEMD160}, @code{RIPEMD256}, @code{RIPEMD320}, @code{SHA160},
  537. @code{SHA224}, @code{SHA256} (default), @code{SHA512/224}, @code{SHA512/256},
  538. @code{SHA384}, @code{SHA512}, @code{CRC32} and @code{adler32}.
  539. @end table
  540. @subsection Examples
  541. To compute the SHA-256 hash of the input converted to raw audio and
  542. video, and store it in the file @file{out.sha256}:
  543. @example
  544. ffmpeg -i INPUT -f hash out.sha256
  545. @end example
  546. To print an MD5 hash to stdout use the command:
  547. @example
  548. ffmpeg -i INPUT -f hash -hash md5 -
  549. @end example
  550. See also the @ref{framehash} muxer.
  551. @anchor{hls}
  552. @section hls
  553. Apple HTTP Live Streaming muxer that segments MPEG-TS according to
  554. the HTTP Live Streaming (HLS) specification.
  555. It creates a playlist file, and one or more segment files. The output filename
  556. specifies the playlist filename.
  557. By default, the muxer creates a file for each segment produced. These files
  558. have the same name as the playlist, followed by a sequential number and a
  559. .ts extension.
  560. Make sure to require a closed GOP when encoding and to set the GOP
  561. size to fit your segment time constraint.
  562. For example, to convert an input file with @command{ffmpeg}:
  563. @example
  564. ffmpeg -i in.mkv -c:v h264 -flags +cgop -g 30 -hls_time 1 out.m3u8
  565. @end example
  566. This example will produce the playlist, @file{out.m3u8}, and segment files:
  567. @file{out0.ts}, @file{out1.ts}, @file{out2.ts}, etc.
  568. See also the @ref{segment} muxer, which provides a more generic and
  569. flexible implementation of a segmenter, and can be used to perform HLS
  570. segmentation.
  571. @subsection Options
  572. This muxer supports the following options:
  573. @table @option
  574. @item hls_init_time @var{duration}
  575. Set the initial target segment length. Default value is @var{0}.
  576. @var{duration} must be a time duration specification,
  577. see @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
  578. Segment will be cut on the next key frame after this time has passed on the first m3u8 list.
  579. After the initial playlist is filled @command{ffmpeg} will cut segments
  580. at duration equal to @code{hls_time}
  581. @item hls_time @var{duration}
  582. Set the target segment length. Default value is 2.
  583. @var{duration} must be a time duration specification,
  584. see @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
  585. Segment will be cut on the next key frame after this time has passed.
  586. @item hls_list_size @var{size}
  587. Set the maximum number of playlist entries. If set to 0 the list file
  588. will contain all the segments. Default value is 5.
  589. @item hls_delete_threshold @var{size}
  590. Set the number of unreferenced segments to keep on disk before @code{hls_flags delete_segments}
  591. deletes them. Increase this to allow continue clients to download segments which
  592. were recently referenced in the playlist. Default value is 1, meaning segments older than
  593. @code{hls_list_size+1} will be deleted.
  594. @item hls_start_number_source
  595. Start the playlist sequence number (@code{#EXT-X-MEDIA-SEQUENCE}) according to the specified source.
  596. Unless @code{hls_flags single_file} is set, it also specifies source of starting sequence numbers of
  597. segment and subtitle filenames. In any case, if @code{hls_flags append_list}
  598. is set and read playlist sequence number is greater than the specified start sequence number,
  599. then that value will be used as start value.
  600. It accepts the following values:
  601. @table @option
  602. @item generic (default)
  603. Set the starting sequence numbers according to @var{start_number} option value.
  604. @item epoch
  605. The start number will be the seconds since epoch (1970-01-01 00:00:00)
  606. @item epoch_us
  607. The start number will be the microseconds since epoch (1970-01-01 00:00:00)
  608. @item datetime
  609. The start number will be based on the current date/time as YYYYmmddHHMMSS. e.g. 20161231235759.
  610. @end table
  611. @item start_number @var{number}
  612. Start the playlist sequence number (@code{#EXT-X-MEDIA-SEQUENCE}) from the specified @var{number}
  613. when @var{hls_start_number_source} value is @var{generic}. (This is the default case.)
  614. Unless @code{hls_flags single_file} is set, it also specifies starting sequence numbers of segment and subtitle filenames.
  615. Default value is 0.
  616. @item hls_allow_cache @var{allowcache}
  617. Explicitly set whether the client MAY (1) or MUST NOT (0) cache media segments.
  618. @item hls_base_url @var{baseurl}
  619. Append @var{baseurl} to every entry in the playlist.
  620. Useful to generate playlists with absolute paths.
  621. Note that the playlist sequence number must be unique for each segment
  622. and it is not to be confused with the segment filename sequence number
  623. which can be cyclic, for example if the @option{wrap} option is
  624. specified.
  625. @item hls_segment_filename @var{filename}
  626. Set the segment filename. Unless @code{hls_flags single_file} is set,
  627. @var{filename} is used as a string format with the segment number:
  628. @example
  629. ffmpeg -i in.nut -hls_segment_filename 'file%03d.ts' out.m3u8
  630. @end example
  631. This example will produce the playlist, @file{out.m3u8}, and segment files:
  632. @file{file000.ts}, @file{file001.ts}, @file{file002.ts}, etc.
  633. @var{filename} may contain full path or relative path specification,
  634. but only the file name part without any path info will be contained in the m3u8 segment list.
  635. Should a relative path be specified, the path of the created segment
  636. files will be relative to the current working directory.
  637. When strftime_mkdir is set, the whole expanded value of @var{filename} will be written into the m3u8 segment list.
  638. When @code{var_stream_map} is set with two or more variant streams, the
  639. @var{filename} pattern must contain the string "%v", this string specifies
  640. the position of variant stream index in the generated segment file names.
  641. @example
  642. ffmpeg -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  643. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map "v:0,a:0 v:1,a:1" \
  644. -hls_segment_filename 'file_%v_%03d.ts' out_%v.m3u8
  645. @end example
  646. This example will produce the playlists segment file sets:
  647. @file{file_0_000.ts}, @file{file_0_001.ts}, @file{file_0_002.ts}, etc. and
  648. @file{file_1_000.ts}, @file{file_1_001.ts}, @file{file_1_002.ts}, etc.
  649. The string "%v" may be present in the filename or in the last directory name
  650. containing the file, but only in one of them. (Additionally, %v may appear multiple times in the last
  651. sub-directory or filename.) If the string %v is present in the directory name, then
  652. sub-directories are created after expanding the directory name pattern. This
  653. enables creation of segments corresponding to different variant streams in
  654. subdirectories.
  655. @example
  656. ffmpeg -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  657. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map "v:0,a:0 v:1,a:1" \
  658. -hls_segment_filename 'vs%v/file_%03d.ts' vs%v/out.m3u8
  659. @end example
  660. This example will produce the playlists segment file sets:
  661. @file{vs0/file_000.ts}, @file{vs0/file_001.ts}, @file{vs0/file_002.ts}, etc. and
  662. @file{vs1/file_000.ts}, @file{vs1/file_001.ts}, @file{vs1/file_002.ts}, etc.
  663. @item strftime
  664. Use strftime() on @var{filename} to expand the segment filename with localtime.
  665. The segment number is also available in this mode, but to use it, you need to specify second_level_segment_index
  666. hls_flag and %%d will be the specifier.
  667. @example
  668. ffmpeg -i in.nut -strftime 1 -hls_segment_filename 'file-%Y%m%d-%s.ts' out.m3u8
  669. @end example
  670. This example will produce the playlist, @file{out.m3u8}, and segment files:
  671. @file{file-20160215-1455569023.ts}, @file{file-20160215-1455569024.ts}, etc.
  672. Note: On some systems/environments, the @code{%s} specifier is not available. See
  673. @code{strftime()} documentation.
  674. @example
  675. ffmpeg -i in.nut -strftime 1 -hls_flags second_level_segment_index -hls_segment_filename 'file-%Y%m%d-%%04d.ts' out.m3u8
  676. @end example
  677. This example will produce the playlist, @file{out.m3u8}, and segment files:
  678. @file{file-20160215-0001.ts}, @file{file-20160215-0002.ts}, etc.
  679. @item strftime_mkdir
  680. Used together with -strftime_mkdir, it will create all subdirectories which
  681. is expanded in @var{filename}.
  682. @example
  683. ffmpeg -i in.nut -strftime 1 -strftime_mkdir 1 -hls_segment_filename '%Y%m%d/file-%Y%m%d-%s.ts' out.m3u8
  684. @end example
  685. This example will create a directory 201560215 (if it does not exist), and then
  686. produce the playlist, @file{out.m3u8}, and segment files:
  687. @file{20160215/file-20160215-1455569023.ts}, @file{20160215/file-20160215-1455569024.ts}, etc.
  688. @example
  689. ffmpeg -i in.nut -strftime 1 -strftime_mkdir 1 -hls_segment_filename '%Y/%m/%d/file-%Y%m%d-%s.ts' out.m3u8
  690. @end example
  691. This example will create a directory hierarchy 2016/02/15 (if any of them do not exist), and then
  692. produce the playlist, @file{out.m3u8}, and segment files:
  693. @file{2016/02/15/file-20160215-1455569023.ts}, @file{2016/02/15/file-20160215-1455569024.ts}, etc.
  694. @item hls_segment_options @var{options_list}
  695. Set output format options using a :-separated list of key=value
  696. parameters. Values containing @code{:} special characters must be
  697. escaped.
  698. @item hls_key_info_file @var{key_info_file}
  699. Use the information in @var{key_info_file} for segment encryption. The first
  700. line of @var{key_info_file} specifies the key URI written to the playlist. The
  701. key URL is used to access the encryption key during playback. The second line
  702. specifies the path to the key file used to obtain the key during the encryption
  703. process. The key file is read as a single packed array of 16 octets in binary
  704. format. The optional third line specifies the initialization vector (IV) as a
  705. hexadecimal string to be used instead of the segment sequence number (default)
  706. for encryption. Changes to @var{key_info_file} will result in segment
  707. encryption with the new key/IV and an entry in the playlist for the new key
  708. URI/IV if @code{hls_flags periodic_rekey} is enabled.
  709. Key info file format:
  710. @example
  711. @var{key URI}
  712. @var{key file path}
  713. @var{IV} (optional)
  714. @end example
  715. Example key URIs:
  716. @example
  717. http://server/file.key
  718. /path/to/file.key
  719. file.key
  720. @end example
  721. Example key file paths:
  722. @example
  723. file.key
  724. /path/to/file.key
  725. @end example
  726. Example IV:
  727. @example
  728. 0123456789ABCDEF0123456789ABCDEF
  729. @end example
  730. Key info file example:
  731. @example
  732. http://server/file.key
  733. /path/to/file.key
  734. 0123456789ABCDEF0123456789ABCDEF
  735. @end example
  736. Example shell script:
  737. @example
  738. #!/bin/sh
  739. BASE_URL=$@{1:-'.'@}
  740. openssl rand 16 > file.key
  741. echo $BASE_URL/file.key > file.keyinfo
  742. echo file.key >> file.keyinfo
  743. echo $(openssl rand -hex 16) >> file.keyinfo
  744. ffmpeg -f lavfi -re -i testsrc -c:v h264 -hls_flags delete_segments \
  745. -hls_key_info_file file.keyinfo out.m3u8
  746. @end example
  747. @item -hls_enc @var{enc}
  748. Enable (1) or disable (0) the AES128 encryption.
  749. When enabled every segment generated is encrypted and the encryption key
  750. is saved as @var{playlist name}.key.
  751. @item -hls_enc_key @var{key}
  752. 16-octet key to encrypt the segments, by default it
  753. is randomly generated.
  754. @item -hls_enc_key_url @var{keyurl}
  755. If set, @var{keyurl} is prepended instead of @var{baseurl} to the key filename
  756. in the playlist.
  757. @item -hls_enc_iv @var{iv}
  758. 16-octet initialization vector for every segment instead
  759. of the autogenerated ones.
  760. @item hls_segment_type @var{flags}
  761. Possible values:
  762. @table @samp
  763. @item mpegts
  764. Output segment files in MPEG-2 Transport Stream format. This is
  765. compatible with all HLS versions.
  766. @item fmp4
  767. Output segment files in fragmented MP4 format, similar to MPEG-DASH.
  768. fmp4 files may be used in HLS version 7 and above.
  769. @end table
  770. @item hls_fmp4_init_filename @var{filename}
  771. Set filename to the fragment files header file, default filename is @file{init.mp4}.
  772. Use @code{-strftime 1} on @var{filename} to expand the segment filename with localtime.
  773. @example
  774. ffmpeg -i in.nut -hls_segment_type fmp4 -strftime 1 -hls_fmp4_init_filename "%s_init.mp4" out.m3u8
  775. @end example
  776. This will produce init like this
  777. @file{1602678741_init.mp4}
  778. @item hls_fmp4_init_resend
  779. Resend init file after m3u8 file refresh every time, default is @var{0}.
  780. When @code{var_stream_map} is set with two or more variant streams, the
  781. @var{filename} pattern must contain the string "%v", this string specifies
  782. the position of variant stream index in the generated init file names.
  783. The string "%v" may be present in the filename or in the last directory name
  784. containing the file. If the string is present in the directory name, then
  785. sub-directories are created after expanding the directory name pattern. This
  786. enables creation of init files corresponding to different variant streams in
  787. subdirectories.
  788. @item hls_flags @var{flags}
  789. Possible values:
  790. @table @samp
  791. @item single_file
  792. If this flag is set, the muxer will store all segments in a single MPEG-TS
  793. file, and will use byte ranges in the playlist. HLS playlists generated with
  794. this way will have the version number 4.
  795. For example:
  796. @example
  797. ffmpeg -i in.nut -hls_flags single_file out.m3u8
  798. @end example
  799. Will produce the playlist, @file{out.m3u8}, and a single segment file,
  800. @file{out.ts}.
  801. @item delete_segments
  802. Segment files removed from the playlist are deleted after a period of time
  803. equal to the duration of the segment plus the duration of the playlist.
  804. @item append_list
  805. Append new segments into the end of old segment list,
  806. and remove the @code{#EXT-X-ENDLIST} from the old segment list.
  807. @item round_durations
  808. Round the duration info in the playlist file segment info to integer
  809. values, instead of using floating point.
  810. If there are no other features requiring higher HLS versions be used,
  811. then this will allow ffmpeg to output a HLS version 2 m3u8.
  812. @item discont_start
  813. Add the @code{#EXT-X-DISCONTINUITY} tag to the playlist, before the
  814. first segment's information.
  815. @item omit_endlist
  816. Do not append the @code{EXT-X-ENDLIST} tag at the end of the playlist.
  817. @item periodic_rekey
  818. The file specified by @code{hls_key_info_file} will be checked periodically and
  819. detect updates to the encryption info. Be sure to replace this file atomically,
  820. including the file containing the AES encryption key.
  821. @item independent_segments
  822. Add the @code{#EXT-X-INDEPENDENT-SEGMENTS} to playlists that has video segments
  823. and when all the segments of that playlist are guaranteed to start with a Key frame.
  824. @item iframes_only
  825. Add the @code{#EXT-X-I-FRAMES-ONLY} to playlists that has video segments
  826. and can play only I-frames in the @code{#EXT-X-BYTERANGE} mode.
  827. @item split_by_time
  828. Allow segments to start on frames other than keyframes. This improves
  829. behavior on some players when the time between keyframes is inconsistent,
  830. but may make things worse on others, and can cause some oddities during
  831. seeking. This flag should be used with the @code{hls_time} option.
  832. @item program_date_time
  833. Generate @code{EXT-X-PROGRAM-DATE-TIME} tags.
  834. @item second_level_segment_index
  835. Makes it possible to use segment indexes as %%d in hls_segment_filename expression
  836. besides date/time values when strftime is on.
  837. To get fixed width numbers with trailing zeroes, %%0xd format is available where x is the required width.
  838. @item second_level_segment_size
  839. Makes it possible to use segment sizes (counted in bytes) as %%s in hls_segment_filename
  840. expression besides date/time values when strftime is on.
  841. To get fixed width numbers with trailing zeroes, %%0xs format is available where x is the required width.
  842. @item second_level_segment_duration
  843. Makes it possible to use segment duration (calculated in microseconds) as %%t in hls_segment_filename
  844. expression besides date/time values when strftime is on.
  845. To get fixed width numbers with trailing zeroes, %%0xt format is available where x is the required width.
  846. @example
  847. ffmpeg -i sample.mpeg \
  848. -f hls -hls_time 3 -hls_list_size 5 \
  849. -hls_flags second_level_segment_index+second_level_segment_size+second_level_segment_duration \
  850. -strftime 1 -strftime_mkdir 1 -hls_segment_filename "segment_%Y%m%d%H%M%S_%%04d_%%08s_%%013t.ts" stream.m3u8
  851. @end example
  852. This will produce segments like this:
  853. @file{segment_20170102194334_0003_00122200_0000003000000.ts}, @file{segment_20170102194334_0004_00120072_0000003000000.ts} etc.
  854. @item temp_file
  855. Write segment data to filename.tmp and rename to filename only once the segment is complete. A webserver
  856. serving up segments can be configured to reject requests to *.tmp to prevent access to in-progress segments
  857. before they have been added to the m3u8 playlist. This flag also affects how m3u8 playlist files are created.
  858. If this flag is set, all playlist files will written into temporary file and renamed after they are complete, similarly as segments are handled.
  859. But playlists with @code{file} protocol and with type (@code{hls_playlist_type}) other than @code{vod}
  860. are always written into temporary file regardless of this flag. Master playlist files (@code{master_pl_name}), if any, with @code{file} protocol,
  861. are always written into temporary file regardless of this flag if @code{master_pl_publish_rate} value is other than zero.
  862. @end table
  863. @item hls_playlist_type event
  864. Emit @code{#EXT-X-PLAYLIST-TYPE:EVENT} in the m3u8 header. Forces
  865. @option{hls_list_size} to 0; the playlist can only be appended to.
  866. @item hls_playlist_type vod
  867. Emit @code{#EXT-X-PLAYLIST-TYPE:VOD} in the m3u8 header. Forces
  868. @option{hls_list_size} to 0; the playlist must not change.
  869. @item method
  870. Use the given HTTP method to create the hls files.
  871. @example
  872. ffmpeg -re -i in.ts -f hls -method PUT http://example.com/live/out.m3u8
  873. @end example
  874. This example will upload all the mpegts segment files to the HTTP
  875. server using the HTTP PUT method, and update the m3u8 files every
  876. @code{refresh} times using the same method.
  877. Note that the HTTP server must support the given method for uploading
  878. files.
  879. @item http_user_agent
  880. Override User-Agent field in HTTP header. Applicable only for HTTP output.
  881. @item var_stream_map
  882. Map string which specifies how to group the audio, video and subtitle streams
  883. into different variant streams. The variant stream groups are separated
  884. by space.
  885. Expected string format is like this "a:0,v:0 a:1,v:1 ....". Here a:, v:, s: are
  886. the keys to specify audio, video and subtitle streams respectively.
  887. Allowed values are 0 to 9 (limited just based on practical usage).
  888. When there are two or more variant streams, the output filename pattern must
  889. contain the string "%v", this string specifies the position of variant stream
  890. index in the output media playlist filenames. The string "%v" may be present in
  891. the filename or in the last directory name containing the file. If the string is
  892. present in the directory name, then sub-directories are created after expanding
  893. the directory name pattern. This enables creation of variant streams in
  894. subdirectories.
  895. @example
  896. ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  897. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map "v:0,a:0 v:1,a:1" \
  898. http://example.com/live/out_%v.m3u8
  899. @end example
  900. This example creates two hls variant streams. The first variant stream will
  901. contain video stream of bitrate 1000k and audio stream of bitrate 64k and the
  902. second variant stream will contain video stream of bitrate 256k and audio
  903. stream of bitrate 32k. Here, two media playlist with file names out_0.m3u8 and
  904. out_1.m3u8 will be created. If you want something meaningful text instead of indexes
  905. in result names, you may specify names for each or some of the variants
  906. as in the following example.
  907. @example
  908. ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  909. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map "v:0,a:0,name:my_hd v:1,a:1,name:my_sd" \
  910. http://example.com/live/out_%v.m3u8
  911. @end example
  912. This example creates two hls variant streams as in the previous one.
  913. But here, the two media playlist with file names out_my_hd.m3u8 and
  914. out_my_sd.m3u8 will be created.
  915. @example
  916. ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k \
  917. -map 0:v -map 0:a -map 0:v -f hls -var_stream_map "v:0 a:0 v:1" \
  918. http://example.com/live/out_%v.m3u8
  919. @end example
  920. This example creates three hls variant streams. The first variant stream will
  921. be a video only stream with video bitrate 1000k, the second variant stream will
  922. be an audio only stream with bitrate 64k and the third variant stream will be a
  923. video only stream with bitrate 256k. Here, three media playlist with file names
  924. out_0.m3u8, out_1.m3u8 and out_2.m3u8 will be created.
  925. @example
  926. ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  927. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map "v:0,a:0 v:1,a:1" \
  928. http://example.com/live/vs_%v/out.m3u8
  929. @end example
  930. This example creates the variant streams in subdirectories. Here, the first
  931. media playlist is created at @file{http://example.com/live/vs_0/out.m3u8} and
  932. the second one at @file{http://example.com/live/vs_1/out.m3u8}.
  933. @example
  934. ffmpeg -re -i in.ts -b:a:0 32k -b:a:1 64k -b:v:0 1000k -b:v:1 3000k \
  935. -map 0:a -map 0:a -map 0:v -map 0:v -f hls \
  936. -var_stream_map "a:0,agroup:aud_low a:1,agroup:aud_high v:0,agroup:aud_low v:1,agroup:aud_high" \
  937. -master_pl_name master.m3u8 \
  938. http://example.com/live/out_%v.m3u8
  939. @end example
  940. This example creates two audio only and two video only variant streams. In
  941. addition to the #EXT-X-STREAM-INF tag for each variant stream in the master
  942. playlist, #EXT-X-MEDIA tag is also added for the two audio only variant streams
  943. and they are mapped to the two video only variant streams with audio group names
  944. 'aud_low' and 'aud_high'.
  945. By default, a single hls variant containing all the encoded streams is created.
  946. @example
  947. ffmpeg -re -i in.ts -b:a:0 32k -b:a:1 64k -b:v:0 1000k \
  948. -map 0:a -map 0:a -map 0:v -f hls \
  949. -var_stream_map "a:0,agroup:aud_low,default:yes a:1,agroup:aud_low v:0,agroup:aud_low" \
  950. -master_pl_name master.m3u8 \
  951. http://example.com/live/out_%v.m3u8
  952. @end example
  953. This example creates two audio only and one video only variant streams. In
  954. addition to the #EXT-X-STREAM-INF tag for each variant stream in the master
  955. playlist, #EXT-X-MEDIA tag is also added for the two audio only variant streams
  956. and they are mapped to the one video only variant streams with audio group name
  957. 'aud_low', and the audio group have default stat is NO or YES.
  958. By default, a single hls variant containing all the encoded streams is created.
  959. @example
  960. ffmpeg -re -i in.ts -b:a:0 32k -b:a:1 64k -b:v:0 1000k \
  961. -map 0:a -map 0:a -map 0:v -f hls \
  962. -var_stream_map "a:0,agroup:aud_low,default:yes,language:ENG a:1,agroup:aud_low,language:CHN v:0,agroup:aud_low" \
  963. -master_pl_name master.m3u8 \
  964. http://example.com/live/out_%v.m3u8
  965. @end example
  966. This example creates two audio only and one video only variant streams. In
  967. addition to the #EXT-X-STREAM-INF tag for each variant stream in the master
  968. playlist, #EXT-X-MEDIA tag is also added for the two audio only variant streams
  969. and they are mapped to the one video only variant streams with audio group name
  970. 'aud_low', and the audio group have default stat is NO or YES, and one audio
  971. have and language is named ENG, the other audio language is named CHN.
  972. By default, a single hls variant containing all the encoded streams is created.
  973. @example
  974. ffmpeg -y -i input_with_subtitle.mkv \
  975. -b:v:0 5250k -c:v h264 -pix_fmt yuv420p -profile:v main -level 4.1 \
  976. -b:a:0 256k \
  977. -c:s webvtt -c:a mp2 -ar 48000 -ac 2 -map 0:v -map 0:a:0 -map 0:s:0 \
  978. -f hls -var_stream_map "v:0,a:0,s:0,sgroup:subtitle" \
  979. -master_pl_name master.m3u8 -t 300 -hls_time 10 -hls_init_time 4 -hls_list_size \
  980. 10 -master_pl_publish_rate 10 -hls_flags \
  981. delete_segments+discont_start+split_by_time ./tmp/video.m3u8
  982. @end example
  983. This example adds @code{#EXT-X-MEDIA} tag with @code{TYPE=SUBTITLES} in
  984. the master playlist with webvtt subtitle group name 'subtitle'. Please make sure
  985. the input file has one text subtitle stream at least.
  986. @item cc_stream_map
  987. Map string which specifies different closed captions groups and their
  988. attributes. The closed captions stream groups are separated by space.
  989. Expected string format is like this
  990. "ccgroup:<group name>,instreamid:<INSTREAM-ID>,language:<language code> ....".
  991. 'ccgroup' and 'instreamid' are mandatory attributes. 'language' is an optional
  992. attribute.
  993. The closed captions groups configured using this option are mapped to different
  994. variant streams by providing the same 'ccgroup' name in the
  995. @code{var_stream_map} string. If @code{var_stream_map} is not set, then the
  996. first available ccgroup in @code{cc_stream_map} is mapped to the output variant
  997. stream. The examples for these two use cases are given below.
  998. @example
  999. ffmpeg -re -i in.ts -b:v 1000k -b:a 64k -a53cc 1 -f hls \
  1000. -cc_stream_map "ccgroup:cc,instreamid:CC1,language:en" \
  1001. -master_pl_name master.m3u8 \
  1002. http://example.com/live/out.m3u8
  1003. @end example
  1004. This example adds @code{#EXT-X-MEDIA} tag with @code{TYPE=CLOSED-CAPTIONS} in
  1005. the master playlist with group name 'cc', language 'en' (english) and
  1006. INSTREAM-ID 'CC1'. Also, it adds @code{CLOSED-CAPTIONS} attribute with group
  1007. name 'cc' for the output variant stream.
  1008. @example
  1009. ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  1010. -a53cc:0 1 -a53cc:1 1\
  1011. -map 0:v -map 0:a -map 0:v -map 0:a -f hls \
  1012. -cc_stream_map "ccgroup:cc,instreamid:CC1,language:en ccgroup:cc,instreamid:CC2,language:sp" \
  1013. -var_stream_map "v:0,a:0,ccgroup:cc v:1,a:1,ccgroup:cc" \
  1014. -master_pl_name master.m3u8 \
  1015. http://example.com/live/out_%v.m3u8
  1016. @end example
  1017. This example adds two @code{#EXT-X-MEDIA} tags with @code{TYPE=CLOSED-CAPTIONS} in
  1018. the master playlist for the INSTREAM-IDs 'CC1' and 'CC2'. Also, it adds
  1019. @code{CLOSED-CAPTIONS} attribute with group name 'cc' for the two output variant
  1020. streams.
  1021. @item master_pl_name
  1022. Create HLS master playlist with the given name.
  1023. @example
  1024. ffmpeg -re -i in.ts -f hls -master_pl_name master.m3u8 http://example.com/live/out.m3u8
  1025. @end example
  1026. This example creates HLS master playlist with name master.m3u8 and it is
  1027. published at http://example.com/live/
  1028. @item master_pl_publish_rate
  1029. Publish master play list repeatedly every after specified number of segment intervals.
  1030. @example
  1031. ffmpeg -re -i in.ts -f hls -master_pl_name master.m3u8 \
  1032. -hls_time 2 -master_pl_publish_rate 30 http://example.com/live/out.m3u8
  1033. @end example
  1034. This example creates HLS master playlist with name master.m3u8 and keep
  1035. publishing it repeatedly every after 30 segments i.e. every after 60s.
  1036. @item http_persistent
  1037. Use persistent HTTP connections. Applicable only for HTTP output.
  1038. @item timeout
  1039. Set timeout for socket I/O operations. Applicable only for HTTP output.
  1040. @item -ignore_io_errors
  1041. Ignore IO errors during open, write and delete. Useful for long-duration runs with network output.
  1042. @item headers
  1043. Set custom HTTP headers, can override built in default headers. Applicable only for HTTP output.
  1044. @end table
  1045. @anchor{ico}
  1046. @section ico
  1047. ICO file muxer.
  1048. Microsoft's icon file format (ICO) has some strict limitations that should be noted:
  1049. @itemize
  1050. @item
  1051. Size cannot exceed 256 pixels in any dimension
  1052. @item
  1053. Only BMP and PNG images can be stored
  1054. @item
  1055. If a BMP image is used, it must be one of the following pixel formats:
  1056. @example
  1057. BMP Bit Depth FFmpeg Pixel Format
  1058. 1bit pal8
  1059. 4bit pal8
  1060. 8bit pal8
  1061. 16bit rgb555le
  1062. 24bit bgr24
  1063. 32bit bgra
  1064. @end example
  1065. @item
  1066. If a BMP image is used, it must use the BITMAPINFOHEADER DIB header
  1067. @item
  1068. If a PNG image is used, it must use the rgba pixel format
  1069. @end itemize
  1070. @anchor{image2}
  1071. @section image2
  1072. Image file muxer.
  1073. The image file muxer writes video frames to image files.
  1074. The output filenames are specified by a pattern, which can be used to
  1075. produce sequentially numbered series of files.
  1076. The pattern may contain the string "%d" or "%0@var{N}d", this string
  1077. specifies the position of the characters representing a numbering in
  1078. the filenames. If the form "%0@var{N}d" is used, the string
  1079. representing the number in each filename is 0-padded to @var{N}
  1080. digits. The literal character '%' can be specified in the pattern with
  1081. the string "%%".
  1082. If the pattern contains "%d" or "%0@var{N}d", the first filename of
  1083. the file list specified will contain the number 1, all the following
  1084. numbers will be sequential.
  1085. The pattern may contain a suffix which is used to automatically
  1086. determine the format of the image files to write.
  1087. For example the pattern "img-%03d.bmp" will specify a sequence of
  1088. filenames of the form @file{img-001.bmp}, @file{img-002.bmp}, ...,
  1089. @file{img-010.bmp}, etc.
  1090. The pattern "img%%-%d.jpg" will specify a sequence of filenames of the
  1091. form @file{img%-1.jpg}, @file{img%-2.jpg}, ..., @file{img%-10.jpg},
  1092. etc.
  1093. The image muxer supports the .Y.U.V image file format. This format is
  1094. special in that that each image frame consists of three files, for
  1095. each of the YUV420P components. To read or write this image file format,
  1096. specify the name of the '.Y' file. The muxer will automatically open the
  1097. '.U' and '.V' files as required.
  1098. @subsection Options
  1099. @table @option
  1100. @item frame_pts
  1101. If set to 1, expand the filename with pts from pkt->pts.
  1102. Default value is 0.
  1103. @item start_number
  1104. Start the sequence from the specified number. Default value is 1.
  1105. @item update
  1106. If set to 1, the filename will always be interpreted as just a
  1107. filename, not a pattern, and the corresponding file will be continuously
  1108. overwritten with new images. Default value is 0.
  1109. @item strftime
  1110. If set to 1, expand the filename with date and time information from
  1111. @code{strftime()}. Default value is 0.
  1112. @item atomic_writing
  1113. Write output to a temporary file, which is renamed to target filename once
  1114. writing is completed. Default is disabled.
  1115. @item protocol_opts @var{options_list}
  1116. Set protocol options as a :-separated list of key=value parameters. Values
  1117. containing the @code{:} special character must be escaped.
  1118. @end table
  1119. @subsection Examples
  1120. The following example shows how to use @command{ffmpeg} for creating a
  1121. sequence of files @file{img-001.jpeg}, @file{img-002.jpeg}, ...,
  1122. taking one image every second from the input video:
  1123. @example
  1124. ffmpeg -i in.avi -vsync cfr -r 1 -f image2 'img-%03d.jpeg'
  1125. @end example
  1126. Note that with @command{ffmpeg}, if the format is not specified with the
  1127. @code{-f} option and the output filename specifies an image file
  1128. format, the image2 muxer is automatically selected, so the previous
  1129. command can be written as:
  1130. @example
  1131. ffmpeg -i in.avi -vsync cfr -r 1 'img-%03d.jpeg'
  1132. @end example
  1133. Note also that the pattern must not necessarily contain "%d" or
  1134. "%0@var{N}d", for example to create a single image file
  1135. @file{img.jpeg} from the start of the input video you can employ the command:
  1136. @example
  1137. ffmpeg -i in.avi -f image2 -frames:v 1 img.jpeg
  1138. @end example
  1139. The @option{strftime} option allows you to expand the filename with
  1140. date and time information. Check the documentation of
  1141. the @code{strftime()} function for the syntax.
  1142. For example to generate image files from the @code{strftime()}
  1143. "%Y-%m-%d_%H-%M-%S" pattern, the following @command{ffmpeg} command
  1144. can be used:
  1145. @example
  1146. ffmpeg -f v4l2 -r 1 -i /dev/video0 -f image2 -strftime 1 "%Y-%m-%d_%H-%M-%S.jpg"
  1147. @end example
  1148. You can set the file name with current frame's PTS:
  1149. @example
  1150. ffmpeg -f v4l2 -r 1 -i /dev/video0 -copyts -f image2 -frame_pts true %d.jpg"
  1151. @end example
  1152. A more complex example is to publish contents of your desktop directly to a
  1153. WebDAV server every second:
  1154. @example
  1155. ffmpeg -f x11grab -framerate 1 -i :0.0 -q:v 6 -update 1 -protocol_opts method=PUT http://example.com/desktop.jpg
  1156. @end example
  1157. @section matroska
  1158. Matroska container muxer.
  1159. This muxer implements the matroska and webm container specs.
  1160. @subsection Metadata
  1161. The recognized metadata settings in this muxer are:
  1162. @table @option
  1163. @item title
  1164. Set title name provided to a single track. This gets mapped to
  1165. the FileDescription element for a stream written as attachment.
  1166. @item language
  1167. Specify the language of the track in the Matroska languages form.
  1168. The language can be either the 3 letters bibliographic ISO-639-2 (ISO
  1169. 639-2/B) form (like "fre" for French), or a language code mixed with a
  1170. country code for specialities in languages (like "fre-ca" for Canadian
  1171. French).
  1172. @item stereo_mode
  1173. Set stereo 3D video layout of two views in a single video track.
  1174. The following values are recognized:
  1175. @table @samp
  1176. @item mono
  1177. video is not stereo
  1178. @item left_right
  1179. Both views are arranged side by side, Left-eye view is on the left
  1180. @item bottom_top
  1181. Both views are arranged in top-bottom orientation, Left-eye view is at bottom
  1182. @item top_bottom
  1183. Both views are arranged in top-bottom orientation, Left-eye view is on top
  1184. @item checkerboard_rl
  1185. Each view is arranged in a checkerboard interleaved pattern, Left-eye view being first
  1186. @item checkerboard_lr
  1187. Each view is arranged in a checkerboard interleaved pattern, Right-eye view being first
  1188. @item row_interleaved_rl
  1189. Each view is constituted by a row based interleaving, Right-eye view is first row
  1190. @item row_interleaved_lr
  1191. Each view is constituted by a row based interleaving, Left-eye view is first row
  1192. @item col_interleaved_rl
  1193. Both views are arranged in a column based interleaving manner, Right-eye view is first column
  1194. @item col_interleaved_lr
  1195. Both views are arranged in a column based interleaving manner, Left-eye view is first column
  1196. @item anaglyph_cyan_red
  1197. All frames are in anaglyph format viewable through red-cyan filters
  1198. @item right_left
  1199. Both views are arranged side by side, Right-eye view is on the left
  1200. @item anaglyph_green_magenta
  1201. All frames are in anaglyph format viewable through green-magenta filters
  1202. @item block_lr
  1203. Both eyes laced in one Block, Left-eye view is first
  1204. @item block_rl
  1205. Both eyes laced in one Block, Right-eye view is first
  1206. @end table
  1207. @end table
  1208. For example a 3D WebM clip can be created using the following command line:
  1209. @example
  1210. ffmpeg -i sample_left_right_clip.mpg -an -c:v libvpx -metadata stereo_mode=left_right -y stereo_clip.webm
  1211. @end example
  1212. @subsection Options
  1213. This muxer supports the following options:
  1214. @table @option
  1215. @item reserve_index_space
  1216. By default, this muxer writes the index for seeking (called cues in Matroska
  1217. terms) at the end of the file, because it cannot know in advance how much space
  1218. to leave for the index at the beginning of the file. However for some use cases
  1219. -- e.g. streaming where seeking is possible but slow -- it is useful to put the
  1220. index at the beginning of the file.
  1221. If this option is set to a non-zero value, the muxer will reserve a given amount
  1222. of space in the file header and then try to write the cues there when the muxing
  1223. finishes. If the reserved space does not suffice, no Cues will be written, the
  1224. file will be finalized and writing the trailer will return an error.
  1225. A safe size for most use cases should be about 50kB per hour of video.
  1226. Note that cues are only written if the output is seekable and this option will
  1227. have no effect if it is not.
  1228. @item cues_to_front
  1229. If set, the muxer will write the index at the beginning of the file
  1230. by shifting the main data if necessary. This can be combined with
  1231. reserve_index_space in which case the data is only shifted if
  1232. the initially reserved space turns out to be insufficient.
  1233. This option is ignored if the output is unseekable.
  1234. @item default_mode
  1235. This option controls how the FlagDefault of the output tracks will be set.
  1236. It influences which tracks players should play by default. The default mode
  1237. is @samp{passthrough}.
  1238. @table @samp
  1239. @item infer
  1240. Every track with disposition default will have the FlagDefault set.
  1241. Additionally, for each type of track (audio, video or subtitle), if no track
  1242. with disposition default of this type exists, then the first track of this type
  1243. will be marked as default (if existing). This ensures that the default flag
  1244. is set in a sensible way even if the input originated from containers that
  1245. lack the concept of default tracks.
  1246. @item infer_no_subs
  1247. This mode is the same as infer except that if no subtitle track with
  1248. disposition default exists, no subtitle track will be marked as default.
  1249. @item passthrough
  1250. In this mode the FlagDefault is set if and only if the AV_DISPOSITION_DEFAULT
  1251. flag is set in the disposition of the corresponding stream.
  1252. @end table
  1253. @item flipped_raw_rgb
  1254. If set to true, store positive height for raw RGB bitmaps, which indicates
  1255. bitmap is stored bottom-up. Note that this option does not flip the bitmap
  1256. which has to be done manually beforehand, e.g. by using the vflip filter.
  1257. Default is @var{false} and indicates bitmap is stored top down.
  1258. @end table
  1259. @anchor{md5}
  1260. @section md5
  1261. MD5 testing format.
  1262. This is a variant of the @ref{hash} muxer. Unlike that muxer, it
  1263. defaults to using the MD5 hash function.
  1264. @subsection Examples
  1265. To compute the MD5 hash of the input converted to raw
  1266. audio and video, and store it in the file @file{out.md5}:
  1267. @example
  1268. ffmpeg -i INPUT -f md5 out.md5
  1269. @end example
  1270. You can print the MD5 to stdout with the command:
  1271. @example
  1272. ffmpeg -i INPUT -f md5 -
  1273. @end example
  1274. See also the @ref{hash} and @ref{framemd5} muxers.
  1275. @section mov, mp4, ismv
  1276. MOV/MP4/ISMV (Smooth Streaming) muxer.
  1277. The mov/mp4/ismv muxer supports fragmentation. Normally, a MOV/MP4
  1278. file has all the metadata about all packets stored in one location
  1279. (written at the end of the file, it can be moved to the start for
  1280. better playback by adding @var{faststart} to the @var{movflags}, or
  1281. using the @command{qt-faststart} tool). A fragmented
  1282. file consists of a number of fragments, where packets and metadata
  1283. about these packets are stored together. Writing a fragmented
  1284. file has the advantage that the file is decodable even if the
  1285. writing is interrupted (while a normal MOV/MP4 is undecodable if
  1286. it is not properly finished), and it requires less memory when writing
  1287. very long files (since writing normal MOV/MP4 files stores info about
  1288. every single packet in memory until the file is closed). The downside
  1289. is that it is less compatible with other applications.
  1290. @subsection Options
  1291. Fragmentation is enabled by setting one of the AVOptions that define
  1292. how to cut the file into fragments:
  1293. @table @option
  1294. @item -moov_size @var{bytes}
  1295. Reserves space for the moov atom at the beginning of the file instead of placing the
  1296. moov atom at the end. If the space reserved is insufficient, muxing will fail.
  1297. @item -movflags frag_keyframe
  1298. Start a new fragment at each video keyframe.
  1299. @item -frag_duration @var{duration}
  1300. Create fragments that are @var{duration} microseconds long.
  1301. @item -frag_size @var{size}
  1302. Create fragments that contain up to @var{size} bytes of payload data.
  1303. @item -movflags frag_custom
  1304. Allow the caller to manually choose when to cut fragments, by
  1305. calling @code{av_write_frame(ctx, NULL)} to write a fragment with
  1306. the packets written so far. (This is only useful with other
  1307. applications integrating libavformat, not from @command{ffmpeg}.)
  1308. @item -min_frag_duration @var{duration}
  1309. Don't create fragments that are shorter than @var{duration} microseconds long.
  1310. @end table
  1311. If more than one condition is specified, fragments are cut when
  1312. one of the specified conditions is fulfilled. The exception to this is
  1313. @code{-min_frag_duration}, which has to be fulfilled for any of the other
  1314. conditions to apply.
  1315. Additionally, the way the output file is written can be adjusted
  1316. through a few other options:
  1317. @table @option
  1318. @item -movflags empty_moov
  1319. Write an initial moov atom directly at the start of the file, without
  1320. describing any samples in it. Generally, an mdat/moov pair is written
  1321. at the start of the file, as a normal MOV/MP4 file, containing only
  1322. a short portion of the file. With this option set, there is no initial
  1323. mdat atom, and the moov atom only describes the tracks but has
  1324. a zero duration.
  1325. This option is implicitly set when writing ismv (Smooth Streaming) files.
  1326. @item -movflags separate_moof
  1327. Write a separate moof (movie fragment) atom for each track. Normally,
  1328. packets for all tracks are written in a moof atom (which is slightly
  1329. more efficient), but with this option set, the muxer writes one moof/mdat
  1330. pair for each track, making it easier to separate tracks.
  1331. This option is implicitly set when writing ismv (Smooth Streaming) files.
  1332. @item -movflags skip_sidx
  1333. Skip writing of sidx atom. When bitrate overhead due to sidx atom is high,
  1334. this option could be used for cases where sidx atom is not mandatory.
  1335. When global_sidx flag is enabled, this option will be ignored.
  1336. @item -movflags faststart
  1337. Run a second pass moving the index (moov atom) to the beginning of the file.
  1338. This operation can take a while, and will not work in various situations such
  1339. as fragmented output, thus it is not enabled by default.
  1340. @item -movflags rtphint
  1341. Add RTP hinting tracks to the output file.
  1342. @item -movflags disable_chpl
  1343. Disable Nero chapter markers (chpl atom). Normally, both Nero chapters
  1344. and a QuickTime chapter track are written to the file. With this option
  1345. set, only the QuickTime chapter track will be written. Nero chapters can
  1346. cause failures when the file is reprocessed with certain tagging programs, like
  1347. mp3Tag 2.61a and iTunes 11.3, most likely other versions are affected as well.
  1348. @item -movflags omit_tfhd_offset
  1349. Do not write any absolute base_data_offset in tfhd atoms. This avoids
  1350. tying fragments to absolute byte positions in the file/streams.
  1351. @item -movflags default_base_moof
  1352. Similarly to the omit_tfhd_offset, this flag avoids writing the
  1353. absolute base_data_offset field in tfhd atoms, but does so by using
  1354. the new default-base-is-moof flag instead. This flag is new from
  1355. 14496-12:2012. This may make the fragments easier to parse in certain
  1356. circumstances (avoiding basing track fragment location calculations
  1357. on the implicit end of the previous track fragment).
  1358. @item -write_tmcd
  1359. Specify @code{on} to force writing a timecode track, @code{off} to disable it
  1360. and @code{auto} to write a timecode track only for mov and mp4 output (default).
  1361. @item -movflags negative_cts_offsets
  1362. Enables utilization of version 1 of the CTTS box, in which the CTS offsets can
  1363. be negative. This enables the initial sample to have DTS/CTS of zero, and
  1364. reduces the need for edit lists for some cases such as video tracks with
  1365. B-frames. Additionally, eases conformance with the DASH-IF interoperability
  1366. guidelines.
  1367. This option is implicitly set when writing ismv (Smooth Streaming) files.
  1368. @item -write_btrt @var{bool}
  1369. Force or disable writing bitrate box inside stsd box of a track.
  1370. The box contains decoding buffer size (in bytes), maximum bitrate and
  1371. average bitrate for the track. The box will be skipped if none of these values
  1372. can be computed.
  1373. Default is @code{-1} or @code{auto}, which will write the box only in MP4 mode.
  1374. @item -write_prft
  1375. Write producer time reference box (PRFT) with a specified time source for the
  1376. NTP field in the PRFT box. Set value as @samp{wallclock} to specify timesource
  1377. as wallclock time and @samp{pts} to specify timesource as input packets' PTS
  1378. values.
  1379. Setting value to @samp{pts} is applicable only for a live encoding use case,
  1380. where PTS values are set as as wallclock time at the source. For example, an
  1381. encoding use case with decklink capture source where @option{video_pts} and
  1382. @option{audio_pts} are set to @samp{abs_wallclock}.
  1383. @item -empty_hdlr_name @var{bool}
  1384. Enable to skip writing the name inside a @code{hdlr} box.
  1385. Default is @code{false}.
  1386. @item -movie_timescale @var{scale}
  1387. Set the timescale written in the movie header box (@code{mvhd}).
  1388. Range is 1 to INT_MAX. Default is 1000.
  1389. @item -video_track_timescale @var{scale}
  1390. Set the timescale used for video tracks. Range is 0 to INT_MAX.
  1391. If set to @code{0}, the timescale is automatically set based on
  1392. the native stream time base. Default is 0.
  1393. @end table
  1394. @subsection Example
  1395. Smooth Streaming content can be pushed in real time to a publishing
  1396. point on IIS with this muxer. Example:
  1397. @example
  1398. ffmpeg -re @var{<normal input/transcoding options>} -movflags isml+frag_keyframe -f ismv http://server/publishingpoint.isml/Streams(Encoder1)
  1399. @end example
  1400. @section mp3
  1401. The MP3 muxer writes a raw MP3 stream with the following optional features:
  1402. @itemize @bullet
  1403. @item
  1404. An ID3v2 metadata header at the beginning (enabled by default). Versions 2.3 and
  1405. 2.4 are supported, the @code{id3v2_version} private option controls which one is
  1406. used (3 or 4). Setting @code{id3v2_version} to 0 disables the ID3v2 header
  1407. completely.
  1408. The muxer supports writing attached pictures (APIC frames) to the ID3v2 header.
  1409. The pictures are supplied to the muxer in form of a video stream with a single
  1410. packet. There can be any number of those streams, each will correspond to a
  1411. single APIC frame. The stream metadata tags @var{title} and @var{comment} map
  1412. to APIC @var{description} and @var{picture type} respectively. See
  1413. @url{http://id3.org/id3v2.4.0-frames} for allowed picture types.
  1414. Note that the APIC frames must be written at the beginning, so the muxer will
  1415. buffer the audio frames until it gets all the pictures. It is therefore advised
  1416. to provide the pictures as soon as possible to avoid excessive buffering.
  1417. @item
  1418. A Xing/LAME frame right after the ID3v2 header (if present). It is enabled by
  1419. default, but will be written only if the output is seekable. The
  1420. @code{write_xing} private option can be used to disable it. The frame contains
  1421. various information that may be useful to the decoder, like the audio duration
  1422. or encoder delay.
  1423. @item
  1424. A legacy ID3v1 tag at the end of the file (disabled by default). It may be
  1425. enabled with the @code{write_id3v1} private option, but as its capabilities are
  1426. very limited, its usage is not recommended.
  1427. @end itemize
  1428. Examples:
  1429. Write an mp3 with an ID3v2.3 header and an ID3v1 footer:
  1430. @example
  1431. ffmpeg -i INPUT -id3v2_version 3 -write_id3v1 1 out.mp3
  1432. @end example
  1433. To attach a picture to an mp3 file select both the audio and the picture stream
  1434. with @code{map}:
  1435. @example
  1436. ffmpeg -i input.mp3 -i cover.png -c copy -map 0 -map 1
  1437. -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3
  1438. @end example
  1439. Write a "clean" MP3 without any extra features:
  1440. @example
  1441. ffmpeg -i input.wav -write_xing 0 -id3v2_version 0 out.mp3
  1442. @end example
  1443. @section mpegts
  1444. MPEG transport stream muxer.
  1445. This muxer implements ISO 13818-1 and part of ETSI EN 300 468.
  1446. The recognized metadata settings in mpegts muxer are @code{service_provider}
  1447. and @code{service_name}. If they are not set the default for
  1448. @code{service_provider} is @samp{FFmpeg} and the default for
  1449. @code{service_name} is @samp{Service01}.
  1450. @subsection Options
  1451. The muxer options are:
  1452. @table @option
  1453. @item mpegts_transport_stream_id @var{integer}
  1454. Set the @samp{transport_stream_id}. This identifies a transponder in DVB.
  1455. Default is @code{0x0001}.
  1456. @item mpegts_original_network_id @var{integer}
  1457. Set the @samp{original_network_id}. This is unique identifier of a
  1458. network in DVB. Its main use is in the unique identification of a service
  1459. through the path @samp{Original_Network_ID, Transport_Stream_ID}. Default
  1460. is @code{0x0001}.
  1461. @item mpegts_service_id @var{integer}
  1462. Set the @samp{service_id}, also known as program in DVB. Default is
  1463. @code{0x0001}.
  1464. @item mpegts_service_type @var{integer}
  1465. Set the program @samp{service_type}. Default is @code{digital_tv}.
  1466. Accepts the following options:
  1467. @table @samp
  1468. @item hex_value
  1469. Any hexadecimal value between @code{0x01} and @code{0xff} as defined in
  1470. ETSI 300 468.
  1471. @item digital_tv
  1472. Digital TV service.
  1473. @item digital_radio
  1474. Digital Radio service.
  1475. @item teletext
  1476. Teletext service.
  1477. @item advanced_codec_digital_radio
  1478. Advanced Codec Digital Radio service.
  1479. @item mpeg2_digital_hdtv
  1480. MPEG2 Digital HDTV service.
  1481. @item advanced_codec_digital_sdtv
  1482. Advanced Codec Digital SDTV service.
  1483. @item advanced_codec_digital_hdtv
  1484. Advanced Codec Digital HDTV service.
  1485. @end table
  1486. @item mpegts_pmt_start_pid @var{integer}
  1487. Set the first PID for PMTs. Default is @code{0x1000}, minimum is @code{0x0020},
  1488. maximum is @code{0x1ffa}. This option has no effect in m2ts mode where the PMT
  1489. PID is fixed @code{0x0100}.
  1490. @item mpegts_start_pid @var{integer}
  1491. Set the first PID for elementary streams. Default is @code{0x0100}, minimum is
  1492. @code{0x0020}, maximum is @code{0x1ffa}. This option has no effect in m2ts mode
  1493. where the elementary stream PIDs are fixed.
  1494. @item mpegts_m2ts_mode @var{boolean}
  1495. Enable m2ts mode if set to @code{1}. Default value is @code{-1} which
  1496. disables m2ts mode.
  1497. @item muxrate @var{integer}
  1498. Set a constant muxrate. Default is VBR.
  1499. @item pes_payload_size @var{integer}
  1500. Set minimum PES packet payload in bytes. Default is @code{2930}.
  1501. @item mpegts_flags @var{flags}
  1502. Set mpegts flags. Accepts the following options:
  1503. @table @samp
  1504. @item resend_headers
  1505. Reemit PAT/PMT before writing the next packet.
  1506. @item latm
  1507. Use LATM packetization for AAC.
  1508. @item pat_pmt_at_frames
  1509. Reemit PAT and PMT at each video frame.
  1510. @item system_b
  1511. Conform to System B (DVB) instead of System A (ATSC).
  1512. @item initial_discontinuity
  1513. Mark the initial packet of each stream as discontinuity.
  1514. @item nit
  1515. Emit NIT table.
  1516. @item omit_rai
  1517. Disable writing of random access indicator.
  1518. @end table
  1519. @item mpegts_copyts @var{boolean}
  1520. Preserve original timestamps, if value is set to @code{1}. Default value
  1521. is @code{-1}, which results in shifting timestamps so that they start from 0.
  1522. @item omit_video_pes_length @var{boolean}
  1523. Omit the PES packet length for video packets. Default is @code{1} (true).
  1524. @item pcr_period @var{integer}
  1525. Override the default PCR retransmission time in milliseconds. Default is
  1526. @code{-1} which means that the PCR interval will be determined automatically:
  1527. 20 ms is used for CBR streams, the highest multiple of the frame duration which
  1528. is less than 100 ms is used for VBR streams.
  1529. @item pat_period @var{duration}
  1530. Maximum time in seconds between PAT/PMT tables. Default is @code{0.1}.
  1531. @item sdt_period @var{duration}
  1532. Maximum time in seconds between SDT tables. Default is @code{0.5}.
  1533. @item nit_period @var{duration}
  1534. Maximum time in seconds between NIT tables. Default is @code{0.5}.
  1535. @item tables_version @var{integer}
  1536. Set PAT, PMT, SDT and NIT version (default @code{0}, valid values are from 0 to 31, inclusively).
  1537. This option allows updating stream structure so that standard consumer may
  1538. detect the change. To do so, reopen output @code{AVFormatContext} (in case of API
  1539. usage) or restart @command{ffmpeg} instance, cyclically changing
  1540. @option{tables_version} value:
  1541. @example
  1542. ffmpeg -i source1.ts -codec copy -f mpegts -tables_version 0 udp://1.1.1.1:1111
  1543. ffmpeg -i source2.ts -codec copy -f mpegts -tables_version 1 udp://1.1.1.1:1111
  1544. ...
  1545. ffmpeg -i source3.ts -codec copy -f mpegts -tables_version 31 udp://1.1.1.1:1111
  1546. ffmpeg -i source1.ts -codec copy -f mpegts -tables_version 0 udp://1.1.1.1:1111
  1547. ffmpeg -i source2.ts -codec copy -f mpegts -tables_version 1 udp://1.1.1.1:1111
  1548. ...
  1549. @end example
  1550. @end table
  1551. @subsection Example
  1552. @example
  1553. ffmpeg -i file.mpg -c copy \
  1554. -mpegts_original_network_id 0x1122 \
  1555. -mpegts_transport_stream_id 0x3344 \
  1556. -mpegts_service_id 0x5566 \
  1557. -mpegts_pmt_start_pid 0x1500 \
  1558. -mpegts_start_pid 0x150 \
  1559. -metadata service_provider="Some provider" \
  1560. -metadata service_name="Some Channel" \
  1561. out.ts
  1562. @end example
  1563. @section mxf, mxf_d10, mxf_opatom
  1564. MXF muxer.
  1565. @subsection Options
  1566. The muxer options are:
  1567. @table @option
  1568. @item store_user_comments @var{bool}
  1569. Set if user comments should be stored if available or never.
  1570. IRT D-10 does not allow user comments. The default is thus to write them for
  1571. mxf and mxf_opatom but not for mxf_d10
  1572. @end table
  1573. @section null
  1574. Null muxer.
  1575. This muxer does not generate any output file, it is mainly useful for
  1576. testing or benchmarking purposes.
  1577. For example to benchmark decoding with @command{ffmpeg} you can use the
  1578. command:
  1579. @example
  1580. ffmpeg -benchmark -i INPUT -f null out.null
  1581. @end example
  1582. Note that the above command does not read or write the @file{out.null}
  1583. file, but specifying the output file is required by the @command{ffmpeg}
  1584. syntax.
  1585. Alternatively you can write the command as:
  1586. @example
  1587. ffmpeg -benchmark -i INPUT -f null -
  1588. @end example
  1589. @section nut
  1590. @table @option
  1591. @item -syncpoints @var{flags}
  1592. Change the syncpoint usage in nut:
  1593. @table @option
  1594. @item @var{default} use the normal low-overhead seeking aids.
  1595. @item @var{none} do not use the syncpoints at all, reducing the overhead but making the stream non-seekable;
  1596. Use of this option is not recommended, as the resulting files are very damage
  1597. sensitive and seeking is not possible. Also in general the overhead from
  1598. syncpoints is negligible. Note, -@code{write_index} 0 can be used to disable
  1599. all growing data tables, allowing to mux endless streams with limited memory
  1600. and without these disadvantages.
  1601. @item @var{timestamped} extend the syncpoint with a wallclock field.
  1602. @end table
  1603. The @var{none} and @var{timestamped} flags are experimental.
  1604. @item -write_index @var{bool}
  1605. Write index at the end, the default is to write an index.
  1606. @end table
  1607. @example
  1608. ffmpeg -i INPUT -f_strict experimental -syncpoints none - | processor
  1609. @end example
  1610. @section ogg
  1611. Ogg container muxer.
  1612. @table @option
  1613. @item -page_duration @var{duration}
  1614. Preferred page duration, in microseconds. The muxer will attempt to create
  1615. pages that are approximately @var{duration} microseconds long. This allows the
  1616. user to compromise between seek granularity and container overhead. The default
  1617. is 1 second. A value of 0 will fill all segments, making pages as large as
  1618. possible. A value of 1 will effectively use 1 packet-per-page in most
  1619. situations, giving a small seek granularity at the cost of additional container
  1620. overhead.
  1621. @item -serial_offset @var{value}
  1622. Serial value from which to set the streams serial number.
  1623. Setting it to different and sufficiently large values ensures that the produced
  1624. ogg files can be safely chained.
  1625. @end table
  1626. @anchor{raw muxers}
  1627. @section raw muxers
  1628. Raw muxers accept a single stream matching the designated codec. They do not store timestamps or metadata.
  1629. The recognized extension is the same as the muxer name unless indicated otherwise.
  1630. @subsection ac3
  1631. Dolby Digital, also known as AC-3, audio.
  1632. @subsection adx
  1633. CRI Middleware ADX audio.
  1634. This muxer will write out the total sample count near the start of the first packet
  1635. when the output is seekable and the count can be stored in 32 bits.
  1636. @subsection aptx
  1637. aptX (Audio Processing Technology for Bluetooth) audio.
  1638. @subsection aptx_hd
  1639. aptX HD (Audio Processing Technology for Bluetooth) audio.
  1640. Extensions: aptxhd
  1641. @subsection avs2
  1642. AVS2-P2/IEEE1857.4 video.
  1643. Extensions: avs, avs2
  1644. @subsection cavsvideo
  1645. Chinese AVS (Audio Video Standard) video.
  1646. Extensions: cavs
  1647. @subsection codec2raw
  1648. Codec 2 audio.
  1649. No extension is registered so format name has to be supplied e.g. with the ffmpeg CLI tool @code{-f codec2raw}.
  1650. @subsection data
  1651. Data muxer accepts a single stream with any codec of any type.
  1652. The input stream has to be selected using the @code{-map} option with the ffmpeg CLI tool.
  1653. No extension is registered so format name has to be supplied e.g. with the ffmpeg CLI tool @code{-f data}.
  1654. @subsection dirac
  1655. BBC Dirac video. The Dirac Pro codec is a subset and is standardized as SMPTE VC-2.
  1656. Extensions: drc, vc2
  1657. @subsection dnxhd
  1658. Avid DNxHD video. It is standardized as SMPTE VC-3. Accepts DNxHR streams.
  1659. Extensions: dnxhd, dnxhr
  1660. @subsection dts
  1661. DTS Coherent Acoustics (DCA) audio.
  1662. @subsection eac3
  1663. Dolby Digital Plus, also known as Enhanced AC-3, audio.
  1664. @subsection g722
  1665. ITU-T G.722 audio.
  1666. @subsection g723_1
  1667. ITU-T G.723.1 audio.
  1668. Extensions: tco, rco
  1669. @subsection g726
  1670. ITU-T G.726 big-endian ("left-justified") audio.
  1671. No extension is registered so format name has to be supplied e.g. with the ffmpeg CLI tool @code{-f g726}.
  1672. @subsection g726le
  1673. ITU-T G.726 little-endian ("right-justified") audio.
  1674. No extension is registered so format name has to be supplied e.g. with the ffmpeg CLI tool @code{-f g726le}.
  1675. @subsection gsm
  1676. Global System for Mobile Communications audio.
  1677. @subsection h261
  1678. ITU-T H.261 video.
  1679. @subsection h263
  1680. ITU-T H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2 video.
  1681. @subsection h264
  1682. ITU-T H.264 / MPEG-4 Part 10 AVC video. Bitstream shall be converted to Annex B syntax if it's in length-prefixed mode.
  1683. Extensions: h264, 264
  1684. @subsection hevc
  1685. ITU-T H.265 / MPEG-H Part 2 HEVC video. Bitstream shall be converted to Annex B syntax if it's in length-prefixed mode.
  1686. Extensions: hevc, h265, 265
  1687. @subsection m4v
  1688. MPEG-4 Part 2 video.
  1689. @subsection mjpeg
  1690. Motion JPEG video.
  1691. Extensions: mjpg, mjpeg
  1692. @subsection mlp
  1693. Meridian Lossless Packing, also known as Packed PCM, audio.
  1694. @subsection mp2
  1695. MPEG-1 Audio Layer II audio.
  1696. Extensions: mp2, m2a, mpa
  1697. @subsection mpeg1video
  1698. MPEG-1 Part 2 video.
  1699. Extensions: mpg, mpeg, m1v
  1700. @subsection mpeg2video
  1701. ITU-T H.262 / MPEG-2 Part 2 video.
  1702. Extensions: m2v
  1703. @subsection obu
  1704. AV1 low overhead Open Bitstream Units muxer. Temporal delimiter OBUs will be inserted in all temporal units of the stream.
  1705. @subsection rawvideo
  1706. Raw uncompressed video.
  1707. Extensions: yuv, rgb
  1708. @subsection sbc
  1709. Bluetooth SIG low-complexity subband codec audio.
  1710. Extensions: sbc, msbc
  1711. @subsection truehd
  1712. Dolby TrueHD audio.
  1713. Extensions: thd
  1714. @subsection vc1
  1715. SMPTE 421M / VC-1 video.
  1716. @anchor{segment}
  1717. @section segment, stream_segment, ssegment
  1718. Basic stream segmenter.
  1719. This muxer outputs streams to a number of separate files of nearly
  1720. fixed duration. Output filename pattern can be set in a fashion
  1721. similar to @ref{image2}, or by using a @code{strftime} template if
  1722. the @option{strftime} option is enabled.
  1723. @code{stream_segment} is a variant of the muxer used to write to
  1724. streaming output formats, i.e. which do not require global headers,
  1725. and is recommended for outputting e.g. to MPEG transport stream segments.
  1726. @code{ssegment} is a shorter alias for @code{stream_segment}.
  1727. Every segment starts with a keyframe of the selected reference stream,
  1728. which is set through the @option{reference_stream} option.
  1729. Note that if you want accurate splitting for a video file, you need to
  1730. make the input key frames correspond to the exact splitting times
  1731. expected by the segmenter, or the segment muxer will start the new
  1732. segment with the key frame found next after the specified start
  1733. time.
  1734. The segment muxer works best with a single constant frame rate video.
  1735. Optionally it can generate a list of the created segments, by setting
  1736. the option @var{segment_list}. The list type is specified by the
  1737. @var{segment_list_type} option. The entry filenames in the segment
  1738. list are set by default to the basename of the corresponding segment
  1739. files.
  1740. See also the @ref{hls} muxer, which provides a more specific
  1741. implementation for HLS segmentation.
  1742. @subsection Options
  1743. The segment muxer supports the following options:
  1744. @table @option
  1745. @item increment_tc @var{1|0}
  1746. if set to @code{1}, increment timecode between each segment
  1747. If this is selected, the input need to have
  1748. a timecode in the first video stream. Default value is
  1749. @code{0}.
  1750. @item reference_stream @var{specifier}
  1751. Set the reference stream, as specified by the string @var{specifier}.
  1752. If @var{specifier} is set to @code{auto}, the reference is chosen
  1753. automatically. Otherwise it must be a stream specifier (see the ``Stream
  1754. specifiers'' chapter in the ffmpeg manual) which specifies the
  1755. reference stream. The default value is @code{auto}.
  1756. @item segment_format @var{format}
  1757. Override the inner container format, by default it is guessed by the filename
  1758. extension.
  1759. @item segment_format_options @var{options_list}
  1760. Set output format options using a :-separated list of key=value
  1761. parameters. Values containing the @code{:} special character must be
  1762. escaped.
  1763. @item segment_list @var{name}
  1764. Generate also a listfile named @var{name}. If not specified no
  1765. listfile is generated.
  1766. @item segment_list_flags @var{flags}
  1767. Set flags affecting the segment list generation.
  1768. It currently supports the following flags:
  1769. @table @samp
  1770. @item cache
  1771. Allow caching (only affects M3U8 list files).
  1772. @item live
  1773. Allow live-friendly file generation.
  1774. @end table
  1775. @item segment_list_size @var{size}
  1776. Update the list file so that it contains at most @var{size}
  1777. segments. If 0 the list file will contain all the segments. Default
  1778. value is 0.
  1779. @item segment_list_entry_prefix @var{prefix}
  1780. Prepend @var{prefix} to each entry. Useful to generate absolute paths.
  1781. By default no prefix is applied.
  1782. @item segment_list_type @var{type}
  1783. Select the listing format.
  1784. The following values are recognized:
  1785. @table @samp
  1786. @item flat
  1787. Generate a flat list for the created segments, one segment per line.
  1788. @item csv, ext
  1789. Generate a list for the created segments, one segment per line,
  1790. each line matching the format (comma-separated values):
  1791. @example
  1792. @var{segment_filename},@var{segment_start_time},@var{segment_end_time}
  1793. @end example
  1794. @var{segment_filename} is the name of the output file generated by the
  1795. muxer according to the provided pattern. CSV escaping (according to
  1796. RFC4180) is applied if required.
  1797. @var{segment_start_time} and @var{segment_end_time} specify
  1798. the segment start and end time expressed in seconds.
  1799. A list file with the suffix @code{".csv"} or @code{".ext"} will
  1800. auto-select this format.
  1801. @samp{ext} is deprecated in favor or @samp{csv}.
  1802. @item ffconcat
  1803. Generate an ffconcat file for the created segments. The resulting file
  1804. can be read using the FFmpeg @ref{concat} demuxer.
  1805. A list file with the suffix @code{".ffcat"} or @code{".ffconcat"} will
  1806. auto-select this format.
  1807. @item m3u8
  1808. Generate an extended M3U8 file, version 3, compliant with
  1809. @url{http://tools.ietf.org/id/draft-pantos-http-live-streaming}.
  1810. A list file with the suffix @code{".m3u8"} will auto-select this format.
  1811. @end table
  1812. If not specified the type is guessed from the list file name suffix.
  1813. @item segment_time @var{time}
  1814. Set segment duration to @var{time}, the value must be a duration
  1815. specification. Default value is "2". See also the
  1816. @option{segment_times} option.
  1817. Note that splitting may not be accurate, unless you force the
  1818. reference stream key-frames at the given time. See the introductory
  1819. notice and the examples below.
  1820. @item min_seg_duration @var{time}
  1821. Set minimum segment duration to @var{time}, the value must be a duration
  1822. specification. This prevents the muxer ending segments at a duration below
  1823. this value. Only effective with @code{segment_time}. Default value is "0".
  1824. @item segment_atclocktime @var{1|0}
  1825. If set to "1" split at regular clock time intervals starting from 00:00
  1826. o'clock. The @var{time} value specified in @option{segment_time} is
  1827. used for setting the length of the splitting interval.
  1828. For example with @option{segment_time} set to "900" this makes it possible
  1829. to create files at 12:00 o'clock, 12:15, 12:30, etc.
  1830. Default value is "0".
  1831. @item segment_clocktime_offset @var{duration}
  1832. Delay the segment splitting times with the specified duration when using
  1833. @option{segment_atclocktime}.
  1834. For example with @option{segment_time} set to "900" and
  1835. @option{segment_clocktime_offset} set to "300" this makes it possible to
  1836. create files at 12:05, 12:20, 12:35, etc.
  1837. Default value is "0".
  1838. @item segment_clocktime_wrap_duration @var{duration}
  1839. Force the segmenter to only start a new segment if a packet reaches the muxer
  1840. within the specified duration after the segmenting clock time. This way you
  1841. can make the segmenter more resilient to backward local time jumps, such as
  1842. leap seconds or transition to standard time from daylight savings time.
  1843. Default is the maximum possible duration which means starting a new segment
  1844. regardless of the elapsed time since the last clock time.
  1845. @item segment_time_delta @var{delta}
  1846. Specify the accuracy time when selecting the start time for a
  1847. segment, expressed as a duration specification. Default value is "0".
  1848. When delta is specified a key-frame will start a new segment if its
  1849. PTS satisfies the relation:
  1850. @example
  1851. PTS >= start_time - time_delta
  1852. @end example
  1853. This option is useful when splitting video content, which is always
  1854. split at GOP boundaries, in case a key frame is found just before the
  1855. specified split time.
  1856. In particular may be used in combination with the @file{ffmpeg} option
  1857. @var{force_key_frames}. The key frame times specified by
  1858. @var{force_key_frames} may not be set accurately because of rounding
  1859. issues, with the consequence that a key frame time may result set just
  1860. before the specified time. For constant frame rate videos a value of
  1861. 1/(2*@var{frame_rate}) should address the worst case mismatch between
  1862. the specified time and the time set by @var{force_key_frames}.
  1863. @item segment_times @var{times}
  1864. Specify a list of split points. @var{times} contains a list of comma
  1865. separated duration specifications, in increasing order. See also
  1866. the @option{segment_time} option.
  1867. @item segment_frames @var{frames}
  1868. Specify a list of split video frame numbers. @var{frames} contains a
  1869. list of comma separated integer numbers, in increasing order.
  1870. This option specifies to start a new segment whenever a reference
  1871. stream key frame is found and the sequential number (starting from 0)
  1872. of the frame is greater or equal to the next value in the list.
  1873. @item segment_wrap @var{limit}
  1874. Wrap around segment index once it reaches @var{limit}.
  1875. @item segment_start_number @var{number}
  1876. Set the sequence number of the first segment. Defaults to @code{0}.
  1877. @item strftime @var{1|0}
  1878. Use the @code{strftime} function to define the name of the new
  1879. segments to write. If this is selected, the output segment name must
  1880. contain a @code{strftime} function template. Default value is
  1881. @code{0}.
  1882. @item break_non_keyframes @var{1|0}
  1883. If enabled, allow segments to start on frames other than keyframes. This
  1884. improves behavior on some players when the time between keyframes is
  1885. inconsistent, but may make things worse on others, and can cause some oddities
  1886. during seeking. Defaults to @code{0}.
  1887. @item reset_timestamps @var{1|0}
  1888. Reset timestamps at the beginning of each segment, so that each segment
  1889. will start with near-zero timestamps. It is meant to ease the playback
  1890. of the generated segments. May not work with some combinations of
  1891. muxers/codecs. It is set to @code{0} by default.
  1892. @item initial_offset @var{offset}
  1893. Specify timestamp offset to apply to the output packet timestamps. The
  1894. argument must be a time duration specification, and defaults to 0.
  1895. @item write_empty_segments @var{1|0}
  1896. If enabled, write an empty segment if there are no packets during the period a
  1897. segment would usually span. Otherwise, the segment will be filled with the next
  1898. packet written. Defaults to @code{0}.
  1899. @end table
  1900. Make sure to require a closed GOP when encoding and to set the GOP
  1901. size to fit your segment time constraint.
  1902. @subsection Examples
  1903. @itemize
  1904. @item
  1905. Remux the content of file @file{in.mkv} to a list of segments
  1906. @file{out-000.nut}, @file{out-001.nut}, etc., and write the list of
  1907. generated segments to @file{out.list}:
  1908. @example
  1909. ffmpeg -i in.mkv -codec hevc -flags +cgop -g 60 -map 0 -f segment -segment_list out.list out%03d.nut
  1910. @end example
  1911. @item
  1912. Segment input and set output format options for the output segments:
  1913. @example
  1914. ffmpeg -i in.mkv -f segment -segment_time 10 -segment_format_options movflags=+faststart out%03d.mp4
  1915. @end example
  1916. @item
  1917. Segment the input file according to the split points specified by the
  1918. @var{segment_times} option:
  1919. @example
  1920. ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.csv -segment_times 1,2,3,5,8,13,21 out%03d.nut
  1921. @end example
  1922. @item
  1923. Use the @command{ffmpeg} @option{force_key_frames}
  1924. option to force key frames in the input at the specified location, together
  1925. with the segment option @option{segment_time_delta} to account for
  1926. possible roundings operated when setting key frame times.
  1927. @example
  1928. ffmpeg -i in.mkv -force_key_frames 1,2,3,5,8,13,21 -codec:v mpeg4 -codec:a pcm_s16le -map 0 \
  1929. -f segment -segment_list out.csv -segment_times 1,2,3,5,8,13,21 -segment_time_delta 0.05 out%03d.nut
  1930. @end example
  1931. In order to force key frames on the input file, transcoding is
  1932. required.
  1933. @item
  1934. Segment the input file by splitting the input file according to the
  1935. frame numbers sequence specified with the @option{segment_frames} option:
  1936. @example
  1937. ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.csv -segment_frames 100,200,300,500,800 out%03d.nut
  1938. @end example
  1939. @item
  1940. Convert the @file{in.mkv} to TS segments using the @code{libx264}
  1941. and @code{aac} encoders:
  1942. @example
  1943. ffmpeg -i in.mkv -map 0 -codec:v libx264 -codec:a aac -f ssegment -segment_list out.list out%03d.ts
  1944. @end example
  1945. @item
  1946. Segment the input file, and create an M3U8 live playlist (can be used
  1947. as live HLS source):
  1948. @example
  1949. ffmpeg -re -i in.mkv -codec copy -map 0 -f segment -segment_list playlist.m3u8 \
  1950. -segment_list_flags +live -segment_time 10 out%03d.mkv
  1951. @end example
  1952. @end itemize
  1953. @section smoothstreaming
  1954. Smooth Streaming muxer generates a set of files (Manifest, chunks) suitable for serving with conventional web server.
  1955. @table @option
  1956. @item window_size
  1957. Specify the number of fragments kept in the manifest. Default 0 (keep all).
  1958. @item extra_window_size
  1959. Specify the number of fragments kept outside of the manifest before removing from disk. Default 5.
  1960. @item lookahead_count
  1961. Specify the number of lookahead fragments. Default 2.
  1962. @item min_frag_duration
  1963. Specify the minimum fragment duration (in microseconds). Default 5000000.
  1964. @item remove_at_exit
  1965. Specify whether to remove all fragments when finished. Default 0 (do not remove).
  1966. @end table
  1967. @anchor{streamhash}
  1968. @section streamhash
  1969. Per stream hash testing format.
  1970. This muxer computes and prints a cryptographic hash of all the input frames,
  1971. on a per-stream basis. This can be used for equality checks without having
  1972. to do a complete binary comparison.
  1973. By default audio frames are converted to signed 16-bit raw audio and
  1974. video frames to raw video before computing the hash, but the output
  1975. of explicit conversions to other codecs can also be used. Timestamps
  1976. are ignored. It uses the SHA-256 cryptographic hash function by default,
  1977. but supports several other algorithms.
  1978. The output of the muxer consists of one line per stream of the form:
  1979. @var{streamindex},@var{streamtype},@var{algo}=@var{hash}, where
  1980. @var{streamindex} is the index of the mapped stream, @var{streamtype} is a
  1981. single character indicating the type of stream, @var{algo} is a short string
  1982. representing the hash function used, and @var{hash} is a hexadecimal number
  1983. representing the computed hash.
  1984. @table @option
  1985. @item hash @var{algorithm}
  1986. Use the cryptographic hash function specified by the string @var{algorithm}.
  1987. Supported values include @code{MD5}, @code{murmur3}, @code{RIPEMD128},
  1988. @code{RIPEMD160}, @code{RIPEMD256}, @code{RIPEMD320}, @code{SHA160},
  1989. @code{SHA224}, @code{SHA256} (default), @code{SHA512/224}, @code{SHA512/256},
  1990. @code{SHA384}, @code{SHA512}, @code{CRC32} and @code{adler32}.
  1991. @end table
  1992. @subsection Examples
  1993. To compute the SHA-256 hash of the input converted to raw audio and
  1994. video, and store it in the file @file{out.sha256}:
  1995. @example
  1996. ffmpeg -i INPUT -f streamhash out.sha256
  1997. @end example
  1998. To print an MD5 hash to stdout use the command:
  1999. @example
  2000. ffmpeg -i INPUT -f streamhash -hash md5 -
  2001. @end example
  2002. See also the @ref{hash} and @ref{framehash} muxers.
  2003. @anchor{tee}
  2004. @section tee
  2005. The tee muxer can be used to write the same data to several outputs, such as files or streams.
  2006. It can be used, for example, to stream a video over a network and save it to disk at the same time.
  2007. It is different from specifying several outputs to the @command{ffmpeg}
  2008. command-line tool. With the tee muxer, the audio and video data will be encoded only once.
  2009. With conventional multiple outputs, multiple encoding operations in parallel are initiated,
  2010. which can be a very expensive process. The tee muxer is not useful when using the libavformat API
  2011. directly because it is then possible to feed the same packets to several muxers directly.
  2012. Since the tee muxer does not represent any particular output format, ffmpeg cannot auto-select
  2013. output streams. So all streams intended for output must be specified using @code{-map}. See
  2014. the examples below.
  2015. Some encoders may need different options depending on the output format;
  2016. the auto-detection of this can not work with the tee muxer, so they need to be explicitly specified.
  2017. The main example is the @option{global_header} flag.
  2018. The slave outputs are specified in the file name given to the muxer,
  2019. separated by '|'. If any of the slave name contains the '|' separator,
  2020. leading or trailing spaces or any special character, those must be
  2021. escaped (see @ref{quoting_and_escaping,,the "Quoting and escaping"
  2022. section in the ffmpeg-utils(1) manual,ffmpeg-utils}).
  2023. @subsection Options
  2024. @table @option
  2025. @item use_fifo @var{bool}
  2026. If set to 1, slave outputs will be processed in separate threads using the @ref{fifo}
  2027. muxer. This allows to compensate for different speed/latency/reliability of
  2028. outputs and setup transparent recovery. By default this feature is turned off.
  2029. @item fifo_options
  2030. Options to pass to fifo pseudo-muxer instances. See @ref{fifo}.
  2031. @end table
  2032. Muxer options can be specified for each slave by prepending them as a list of
  2033. @var{key}=@var{value} pairs separated by ':', between square brackets. If
  2034. the options values contain a special character or the ':' separator, they
  2035. must be escaped; note that this is a second level escaping.
  2036. The following special options are also recognized:
  2037. @table @option
  2038. @item f
  2039. Specify the format name. Required if it cannot be guessed from the
  2040. output URL.
  2041. @item bsfs[/@var{spec}]
  2042. Specify a list of bitstream filters to apply to the specified
  2043. output.
  2044. It is possible to specify to which streams a given bitstream filter
  2045. applies, by appending a stream specifier to the option separated by
  2046. @code{/}. @var{spec} must be a stream specifier (see @ref{Format
  2047. stream specifiers}).
  2048. If the stream specifier is not specified, the bitstream filters will be
  2049. applied to all streams in the output. This will cause that output operation
  2050. to fail if the output contains streams to which the bitstream filter cannot
  2051. be applied e.g. @code{h264_mp4toannexb} being applied to an output containing an audio stream.
  2052. Options for a bitstream filter must be specified in the form of @code{opt=value}.
  2053. Several bitstream filters can be specified, separated by ",".
  2054. @item use_fifo @var{bool}
  2055. This allows to override tee muxer use_fifo option for individual slave muxer.
  2056. @item fifo_options
  2057. This allows to override tee muxer fifo_options for individual slave muxer.
  2058. See @ref{fifo}.
  2059. @item select
  2060. Select the streams that should be mapped to the slave output,
  2061. specified by a stream specifier. If not specified, this defaults to
  2062. all the mapped streams. This will cause that output operation to fail
  2063. if the output format does not accept all mapped streams.
  2064. You may use multiple stream specifiers separated by commas (@code{,}) e.g.: @code{a:0,v}
  2065. @item onfail
  2066. Specify behaviour on output failure. This can be set to either @code{abort} (which is
  2067. default) or @code{ignore}. @code{abort} will cause whole process to fail in case of failure
  2068. on this slave output. @code{ignore} will ignore failure on this output, so other outputs
  2069. will continue without being affected.
  2070. @end table
  2071. @subsection Examples
  2072. @itemize
  2073. @item
  2074. Encode something and both archive it in a WebM file and stream it
  2075. as MPEG-TS over UDP:
  2076. @example
  2077. ffmpeg -i ... -c:v libx264 -c:a mp2 -f tee -map 0:v -map 0:a
  2078. "archive-20121107.mkv|[f=mpegts]udp://10.0.1.255:1234/"
  2079. @end example
  2080. @item
  2081. As above, but continue streaming even if output to local file fails
  2082. (for example local drive fills up):
  2083. @example
  2084. ffmpeg -i ... -c:v libx264 -c:a mp2 -f tee -map 0:v -map 0:a
  2085. "[onfail=ignore]archive-20121107.mkv|[f=mpegts]udp://10.0.1.255:1234/"
  2086. @end example
  2087. @item
  2088. Use @command{ffmpeg} to encode the input, and send the output
  2089. to three different destinations. The @code{dump_extra} bitstream
  2090. filter is used to add extradata information to all the output video
  2091. keyframes packets, as requested by the MPEG-TS format. The select
  2092. option is applied to @file{out.aac} in order to make it contain only
  2093. audio packets.
  2094. @example
  2095. ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac
  2096. -f tee "[bsfs/v=dump_extra=freq=keyframe]out.ts|[movflags=+faststart]out.mp4|[select=a]out.aac"
  2097. @end example
  2098. @item
  2099. As above, but select only stream @code{a:1} for the audio output. Note
  2100. that a second level escaping must be performed, as ":" is a special
  2101. character used to separate options.
  2102. @example
  2103. ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac
  2104. -f tee "[bsfs/v=dump_extra=freq=keyframe]out.ts|[movflags=+faststart]out.mp4|[select=\'a:1\']out.aac"
  2105. @end example
  2106. @end itemize
  2107. @section webm_chunk
  2108. WebM Live Chunk Muxer.
  2109. This muxer writes out WebM headers and chunks as separate files which can be
  2110. consumed by clients that support WebM Live streams via DASH.
  2111. @subsection Options
  2112. This muxer supports the following options:
  2113. @table @option
  2114. @item chunk_start_index
  2115. Index of the first chunk (defaults to 0).
  2116. @item header
  2117. Filename of the header where the initialization data will be written.
  2118. @item audio_chunk_duration
  2119. Duration of each audio chunk in milliseconds (defaults to 5000).
  2120. @end table
  2121. @subsection Example
  2122. @example
  2123. ffmpeg -f v4l2 -i /dev/video0 \
  2124. -f alsa -i hw:0 \
  2125. -map 0:0 \
  2126. -c:v libvpx-vp9 \
  2127. -s 640x360 -keyint_min 30 -g 30 \
  2128. -f webm_chunk \
  2129. -header webm_live_video_360.hdr \
  2130. -chunk_start_index 1 \
  2131. webm_live_video_360_%d.chk \
  2132. -map 1:0 \
  2133. -c:a libvorbis \
  2134. -b:a 128k \
  2135. -f webm_chunk \
  2136. -header webm_live_audio_128.hdr \
  2137. -chunk_start_index 1 \
  2138. -audio_chunk_duration 1000 \
  2139. webm_live_audio_128_%d.chk
  2140. @end example
  2141. @section webm_dash_manifest
  2142. WebM DASH Manifest muxer.
  2143. This muxer implements the WebM DASH Manifest specification to generate the DASH
  2144. manifest XML. It also supports manifest generation for DASH live streams.
  2145. For more information see:
  2146. @itemize @bullet
  2147. @item
  2148. WebM DASH Specification: @url{https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/webm-dash-specification}
  2149. @item
  2150. ISO DASH Specification: @url{http://standards.iso.org/ittf/PubliclyAvailableStandards/c065274_ISO_IEC_23009-1_2014.zip}
  2151. @end itemize
  2152. @subsection Options
  2153. This muxer supports the following options:
  2154. @table @option
  2155. @item adaptation_sets
  2156. This option has the following syntax: "id=x,streams=a,b,c id=y,streams=d,e" where x and y are the
  2157. unique identifiers of the adaptation sets and a,b,c,d and e are the indices of the corresponding
  2158. audio and video streams. Any number of adaptation sets can be added using this option.
  2159. @item live
  2160. Set this to 1 to create a live stream DASH Manifest. Default: 0.
  2161. @item chunk_start_index
  2162. Start index of the first chunk. This will go in the @samp{startNumber} attribute
  2163. of the @samp{SegmentTemplate} element in the manifest. Default: 0.
  2164. @item chunk_duration_ms
  2165. Duration of each chunk in milliseconds. This will go in the @samp{duration}
  2166. attribute of the @samp{SegmentTemplate} element in the manifest. Default: 1000.
  2167. @item utc_timing_url
  2168. URL of the page that will return the UTC timestamp in ISO format. This will go
  2169. in the @samp{value} attribute of the @samp{UTCTiming} element in the manifest.
  2170. Default: None.
  2171. @item time_shift_buffer_depth
  2172. Smallest time (in seconds) shifting buffer for which any Representation is
  2173. guaranteed to be available. This will go in the @samp{timeShiftBufferDepth}
  2174. attribute of the @samp{MPD} element. Default: 60.
  2175. @item minimum_update_period
  2176. Minimum update period (in seconds) of the manifest. This will go in the
  2177. @samp{minimumUpdatePeriod} attribute of the @samp{MPD} element. Default: 0.
  2178. @end table
  2179. @subsection Example
  2180. @example
  2181. ffmpeg -f webm_dash_manifest -i video1.webm \
  2182. -f webm_dash_manifest -i video2.webm \
  2183. -f webm_dash_manifest -i audio1.webm \
  2184. -f webm_dash_manifest -i audio2.webm \
  2185. -map 0 -map 1 -map 2 -map 3 \
  2186. -c copy \
  2187. -f webm_dash_manifest \
  2188. -adaptation_sets "id=0,streams=0,1 id=1,streams=2,3" \
  2189. manifest.xml
  2190. @end example
  2191. @c man end MUXERS