ffmpeg-formats.html 315 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Created by , GNU Texinfo 7.1.1 -->
  4. <head>
  5. <meta charset="utf-8">
  6. <title>
  7. FFmpeg Formats Documentation
  8. </title>
  9. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  10. <link rel="stylesheet" type="text/css" href="bootstrap.min.css">
  11. <link rel="stylesheet" type="text/css" href="style.min.css">
  12. </head>
  13. <body>
  14. <div class="container">
  15. <h1>
  16. FFmpeg Formats Documentation
  17. </h1>
  18. <a name="SEC_Top"></a>
  19. <div class="element-contents" id="SEC_Contents">
  20. <h2 class="contents-heading">Table of Contents</h2>
  21. <div class="contents">
  22. <ul class="toc-numbered-mark">
  23. <li><a id="toc-Description" href="#Description">1 Description</a></li>
  24. <li><a id="toc-Format-Options" href="#Format-Options">2 Format Options</a>
  25. <ul class="toc-numbered-mark">
  26. <li><a id="toc-Format-stream-specifiers-1" href="#Format-stream-specifiers-1">2.1 Format stream specifiers</a></li>
  27. </ul></li>
  28. <li><a id="toc-Demuxers" href="#Demuxers">3 Demuxers</a>
  29. <ul class="toc-numbered-mark">
  30. <li><a id="toc-aa" href="#aa">3.1 aa</a></li>
  31. <li><a id="toc-aac" href="#aac">3.2 aac</a></li>
  32. <li><a id="toc-apng" href="#apng">3.3 apng</a></li>
  33. <li><a id="toc-asf-1" href="#asf-1">3.4 asf</a></li>
  34. <li><a id="toc-concat-1" href="#concat-1">3.5 concat</a>
  35. <ul class="toc-numbered-mark">
  36. <li><a id="toc-Syntax" href="#Syntax">3.5.1 Syntax</a></li>
  37. <li><a id="toc-Options" href="#Options">3.5.2 Options</a></li>
  38. <li><a id="toc-Examples" href="#Examples">3.5.3 Examples</a></li>
  39. </ul></li>
  40. <li><a id="toc-dash-1" href="#dash-1">3.6 dash</a>
  41. <ul class="toc-numbered-mark">
  42. <li><a id="toc-Options-1" href="#Options-1">3.6.1 Options</a></li>
  43. </ul></li>
  44. <li><a id="toc-dvdvideo" href="#dvdvideo">3.7 dvdvideo</a>
  45. <ul class="toc-numbered-mark">
  46. <li><a id="toc-Background" href="#Background">3.7.1 Background</a></li>
  47. <li><a id="toc-Options-2" href="#Options-2">3.7.2 Options</a></li>
  48. <li><a id="toc-Examples-1" href="#Examples-1">3.7.3 Examples</a></li>
  49. </ul></li>
  50. <li><a id="toc-ea" href="#ea">3.8 ea</a>
  51. <ul class="toc-numbered-mark">
  52. <li><a id="toc-Options-3" href="#Options-3">3.8.1 Options</a></li>
  53. </ul></li>
  54. <li><a id="toc-imf" href="#imf">3.9 imf</a></li>
  55. <li><a id="toc-flv_002c-live_005fflv_002c-kux" href="#flv_002c-live_005fflv_002c-kux">3.10 flv, live_flv, kux</a></li>
  56. <li><a id="toc-gif-1" href="#gif-1">3.11 gif</a></li>
  57. <li><a id="toc-hls-1" href="#hls-1">3.12 hls</a></li>
  58. <li><a id="toc-image2-1" href="#image2-1">3.13 image2</a>
  59. <ul class="toc-numbered-mark">
  60. <li><a id="toc-Examples-2" href="#Examples-2">3.13.1 Examples</a></li>
  61. </ul></li>
  62. <li><a id="toc-libgme" href="#libgme">3.14 libgme</a></li>
  63. <li><a id="toc-libmodplug" href="#libmodplug">3.15 libmodplug</a></li>
  64. <li><a id="toc-libopenmpt" href="#libopenmpt">3.16 libopenmpt</a></li>
  65. <li><a id="toc-mcc" href="#mcc">3.17 mcc</a>
  66. <ul class="toc-numbered-mark">
  67. <li><a id="toc-Examples-3" href="#Examples-3">3.17.1 Examples</a></li>
  68. </ul></li>
  69. <li><a id="toc-mov_002fmp4_002f3gp" href="#mov_002fmp4_002f3gp">3.18 mov/mp4/3gp</a>
  70. <ul class="toc-numbered-mark">
  71. <li><a id="toc-Options-4" href="#Options-4">3.18.1 Options</a></li>
  72. <li><a id="toc-Audible-AAX" href="#Audible-AAX">3.18.2 Audible AAX</a></li>
  73. </ul></li>
  74. <li><a id="toc-mpegts" href="#mpegts">3.19 mpegts</a></li>
  75. <li><a id="toc-mpjpeg" href="#mpjpeg">3.20 mpjpeg</a></li>
  76. <li><a id="toc-rawvideo" href="#rawvideo">3.21 rawvideo</a></li>
  77. <li><a id="toc-rcwt" href="#rcwt">3.22 rcwt</a>
  78. <ul class="toc-numbered-mark">
  79. <li><a id="toc-Examples-4" href="#Examples-4">3.22.1 Examples</a></li>
  80. </ul></li>
  81. <li><a id="toc-sbg" href="#sbg">3.23 sbg</a></li>
  82. <li><a id="toc-tedcaptions" href="#tedcaptions">3.24 tedcaptions</a></li>
  83. <li><a id="toc-vapoursynth" href="#vapoursynth">3.25 vapoursynth</a></li>
  84. <li><a id="toc-w64" href="#w64">3.26 w64</a></li>
  85. <li><a id="toc-wav-1" href="#wav-1">3.27 wav</a></li>
  86. </ul></li>
  87. <li><a id="toc-Muxers" href="#Muxers">4 Muxers</a>
  88. <ul class="toc-numbered-mark">
  89. <li><a id="toc-Raw-muxers" href="#Raw-muxers">4.1 Raw muxers</a>
  90. <ul class="toc-numbered-mark">
  91. <li><a id="toc-Examples-5" href="#Examples-5">4.1.1 Examples</a></li>
  92. </ul></li>
  93. <li><a id="toc-Raw-PCM-muxers" href="#Raw-PCM-muxers">4.2 Raw PCM muxers</a></li>
  94. <li><a id="toc-MPEG_002d1_002fMPEG_002d2-program-stream-muxers" href="#MPEG_002d1_002fMPEG_002d2-program-stream-muxers">4.3 MPEG-1/MPEG-2 program stream muxers</a>
  95. <ul class="toc-numbered-mark">
  96. <li><a id="toc-Options-5" href="#Options-5">4.3.1 Options</a></li>
  97. </ul></li>
  98. <li><a id="toc-MOV_002fMPEG_002d4_002fISOMBFF-muxers" href="#MOV_002fMPEG_002d4_002fISOMBFF-muxers">4.4 MOV/MPEG-4/ISOMBFF muxers</a>
  99. <ul class="toc-numbered-mark">
  100. <li><a id="toc-Fragmentation" href="#Fragmentation">4.4.1 Fragmentation</a></li>
  101. <li><a id="toc-Options-6" href="#Options-6">4.4.2 Options</a></li>
  102. <li><a id="toc-Examples-6" href="#Examples-6">4.4.3 Examples</a></li>
  103. </ul></li>
  104. <li><a id="toc-a64-1" href="#a64-1">4.5 a64</a></li>
  105. <li><a id="toc-ac4" href="#ac4">4.6 ac4</a>
  106. <ul class="toc-numbered-mark">
  107. <li><a id="toc-Options-7" href="#Options-7">4.6.1 Options</a></li>
  108. </ul></li>
  109. <li><a id="toc-adts-1" href="#adts-1">4.7 adts</a>
  110. <ul class="toc-numbered-mark">
  111. <li><a id="toc-Options-8" href="#Options-8">4.7.1 Options</a></li>
  112. </ul></li>
  113. <li><a id="toc-aea-1" href="#aea-1">4.8 aea</a></li>
  114. <li><a id="toc-aiff-1" href="#aiff-1">4.9 aiff</a>
  115. <ul class="toc-numbered-mark">
  116. <li><a id="toc-Options-9" href="#Options-9">4.9.1 Options</a></li>
  117. </ul></li>
  118. <li><a id="toc-alp-1" href="#alp-1">4.10 alp</a>
  119. <ul class="toc-numbered-mark">
  120. <li><a id="toc-Options-10" href="#Options-10">4.10.1 Options</a></li>
  121. </ul></li>
  122. <li><a id="toc-amr" href="#amr">4.11 amr</a></li>
  123. <li><a id="toc-amv" href="#amv">4.12 amv</a></li>
  124. <li><a id="toc-apm" href="#apm">4.13 apm</a></li>
  125. <li><a id="toc-apng-1" href="#apng-1">4.14 apng</a>
  126. <ul class="toc-numbered-mark">
  127. <li><a id="toc-Options-11" href="#Options-11">4.14.1 Options</a></li>
  128. <li><a id="toc-Examples-7" href="#Examples-7">4.14.2 Examples</a></li>
  129. </ul></li>
  130. <li><a id="toc-argo_005fasf" href="#argo_005fasf">4.15 argo_asf</a>
  131. <ul class="toc-numbered-mark">
  132. <li><a id="toc-Options-12" href="#Options-12">4.15.1 Options</a></li>
  133. </ul></li>
  134. <li><a id="toc-argo_005fcvg" href="#argo_005fcvg">4.16 argo_cvg</a>
  135. <ul class="toc-numbered-mark">
  136. <li><a id="toc-Options-13" href="#Options-13">4.16.1 Options</a></li>
  137. </ul></li>
  138. <li><a id="toc-asf_002c-asf_005fstream" href="#asf_002c-asf_005fstream">4.17 asf, asf_stream</a>
  139. <ul class="toc-numbered-mark">
  140. <li><a id="toc-Options-14" href="#Options-14">4.17.1 Options</a></li>
  141. </ul></li>
  142. <li><a id="toc-ass" href="#ass">4.18 ass</a>
  143. <ul class="toc-numbered-mark">
  144. <li><a id="toc-Options-15" href="#Options-15">4.18.1 Options</a></li>
  145. </ul></li>
  146. <li><a id="toc-ast" href="#ast">4.19 ast</a>
  147. <ul class="toc-numbered-mark">
  148. <li><a id="toc-Options-16" href="#Options-16">4.19.1 Options</a></li>
  149. </ul></li>
  150. <li><a id="toc-au" href="#au">4.20 au</a></li>
  151. <li><a id="toc-avi-1" href="#avi-1">4.21 avi</a>
  152. <ul class="toc-numbered-mark">
  153. <li><a id="toc-Options-17" href="#Options-17">4.21.1 Options</a></li>
  154. </ul></li>
  155. <li><a id="toc-avif" href="#avif">4.22 avif</a>
  156. <ul class="toc-numbered-mark">
  157. <li><a id="toc-Options-18" href="#Options-18">4.22.1 Options</a></li>
  158. </ul></li>
  159. <li><a id="toc-avm2" href="#avm2">4.23 avm2</a></li>
  160. <li><a id="toc-bit" href="#bit">4.24 bit</a></li>
  161. <li><a id="toc-caf" href="#caf">4.25 caf</a></li>
  162. <li><a id="toc-codec2" href="#codec2">4.26 codec2</a></li>
  163. <li><a id="toc-chromaprint-1" href="#chromaprint-1">4.27 chromaprint</a>
  164. <ul class="toc-numbered-mark">
  165. <li><a id="toc-Options-19" href="#Options-19">4.27.1 Options</a></li>
  166. </ul></li>
  167. <li><a id="toc-crc-1" href="#crc-1">4.28 crc</a>
  168. <ul class="toc-numbered-mark">
  169. <li><a id="toc-Examples-8" href="#Examples-8">4.28.1 Examples</a></li>
  170. </ul></li>
  171. <li><a id="toc-dash-2" href="#dash-2">4.29 dash</a>
  172. <ul class="toc-numbered-mark">
  173. <li><a id="toc-Options-20" href="#Options-20">4.29.1 Options</a></li>
  174. <li><a id="toc-Example" href="#Example">4.29.2 Example</a></li>
  175. </ul></li>
  176. <li><a id="toc-daud" href="#daud">4.30 daud</a>
  177. <ul class="toc-numbered-mark">
  178. <li><a id="toc-Example-1" href="#Example-1">4.30.1 Example</a></li>
  179. </ul></li>
  180. <li><a id="toc-dv" href="#dv">4.31 dv</a>
  181. <ul class="toc-numbered-mark">
  182. <li><a id="toc-Example-2" href="#Example-2">4.31.1 Example</a></li>
  183. </ul></li>
  184. <li><a id="toc-ffmetadata" href="#ffmetadata">4.32 ffmetadata</a>
  185. <ul class="toc-numbered-mark">
  186. <li><a id="toc-Example-3" href="#Example-3">4.32.1 Example</a></li>
  187. </ul></li>
  188. <li><a id="toc-fifo-1" href="#fifo-1">4.33 fifo</a>
  189. <ul class="toc-numbered-mark">
  190. <li><a id="toc-Options-21" href="#Options-21">4.33.1 Options</a></li>
  191. <li><a id="toc-Example-4" href="#Example-4">4.33.2 Example</a></li>
  192. </ul></li>
  193. <li><a id="toc-film_005fcpk" href="#film_005fcpk">4.34 film_cpk</a></li>
  194. <li><a id="toc-filmstrip" href="#filmstrip">4.35 filmstrip</a></li>
  195. <li><a id="toc-fits" href="#fits">4.36 fits</a></li>
  196. <li><a id="toc-flac" href="#flac">4.37 flac</a>
  197. <ul class="toc-numbered-mark">
  198. <li><a id="toc-Options-22" href="#Options-22">4.37.1 Options</a></li>
  199. <li><a id="toc-Example-5" href="#Example-5">4.37.2 Example</a></li>
  200. </ul></li>
  201. <li><a id="toc-flv" href="#flv">4.38 flv</a>
  202. <ul class="toc-numbered-mark">
  203. <li><a id="toc-Options-23" href="#Options-23">4.38.1 Options</a></li>
  204. </ul></li>
  205. <li><a id="toc-framecrc-1" href="#framecrc-1">4.39 framecrc</a>
  206. <ul class="toc-numbered-mark">
  207. <li><a id="toc-Examples-9" href="#Examples-9">4.39.1 Examples</a></li>
  208. </ul></li>
  209. <li><a id="toc-framehash-1" href="#framehash-1">4.40 framehash</a>
  210. <ul class="toc-numbered-mark">
  211. <li><a id="toc-Examples-10" href="#Examples-10">4.40.1 Examples</a></li>
  212. </ul></li>
  213. <li><a id="toc-framemd5-1" href="#framemd5-1">4.41 framemd5</a>
  214. <ul class="toc-numbered-mark">
  215. <li><a id="toc-Examples-11" href="#Examples-11">4.41.1 Examples</a></li>
  216. </ul></li>
  217. <li><a id="toc-gif-2" href="#gif-2">4.42 gif</a>
  218. <ul class="toc-numbered-mark">
  219. <li><a id="toc-Options-24" href="#Options-24">4.42.1 Options</a></li>
  220. <li><a id="toc-Example-6" href="#Example-6">4.42.2 Example</a></li>
  221. </ul></li>
  222. <li><a id="toc-gxf" href="#gxf">4.43 gxf</a></li>
  223. <li><a id="toc-hash-1" href="#hash-1">4.44 hash</a>
  224. <ul class="toc-numbered-mark">
  225. <li><a id="toc-Examples-12" href="#Examples-12">4.44.1 Examples</a></li>
  226. </ul></li>
  227. <li><a id="toc-hds-1" href="#hds-1">4.45 hds</a>
  228. <ul class="toc-numbered-mark">
  229. <li><a id="toc-Options-25" href="#Options-25">4.45.1 Options</a></li>
  230. <li><a id="toc-Example-7" href="#Example-7">4.45.2 Example</a></li>
  231. </ul></li>
  232. <li><a id="toc-hls-2" href="#hls-2">4.46 hls</a>
  233. <ul class="toc-numbered-mark">
  234. <li><a id="toc-Options-26" href="#Options-26">4.46.1 Options</a></li>
  235. </ul></li>
  236. <li><a id="toc-iamf" href="#iamf">4.47 iamf</a></li>
  237. <li><a id="toc-ico-1" href="#ico-1">4.48 ico</a></li>
  238. <li><a id="toc-ilbc" href="#ilbc">4.49 ilbc</a></li>
  239. <li><a id="toc-image2_002c-image2pipe" href="#image2_002c-image2pipe">4.50 image2, image2pipe</a>
  240. <ul class="toc-numbered-mark">
  241. <li><a id="toc-Options-27" href="#Options-27">4.50.1 Options</a></li>
  242. <li><a id="toc-Examples-13" href="#Examples-13">4.50.2 Examples</a></li>
  243. </ul></li>
  244. <li><a id="toc-ircam" href="#ircam">4.51 ircam</a></li>
  245. <li><a id="toc-ivf" href="#ivf">4.52 ivf</a></li>
  246. <li><a id="toc-jacosub" href="#jacosub">4.53 jacosub</a></li>
  247. <li><a id="toc-kvag" href="#kvag">4.54 kvag</a></li>
  248. <li><a id="toc-lc3" href="#lc3">4.55 lc3</a></li>
  249. <li><a id="toc-lrc" href="#lrc">4.56 lrc</a>
  250. <ul class="toc-numbered-mark">
  251. <li><a id="toc-Metadata" href="#Metadata">4.56.1 Metadata</a></li>
  252. </ul></li>
  253. <li><a id="toc-matroska" href="#matroska">4.57 matroska</a>
  254. <ul class="toc-numbered-mark">
  255. <li><a id="toc-Metadata-1" href="#Metadata-1">4.57.1 Metadata</a></li>
  256. <li><a id="toc-Options-28" href="#Options-28">4.57.2 Options</a></li>
  257. </ul></li>
  258. <li><a id="toc-md5-1" href="#md5-1">4.58 md5</a>
  259. <ul class="toc-numbered-mark">
  260. <li><a id="toc-Examples-14" href="#Examples-14">4.58.1 Examples</a></li>
  261. </ul></li>
  262. <li><a id="toc-mcc-1" href="#mcc-1">4.59 mcc</a>
  263. <ul class="toc-numbered-mark">
  264. <li><a id="toc-Options-29" href="#Options-29">4.59.1 Options</a></li>
  265. <li><a id="toc-Examples-15" href="#Examples-15">4.59.2 Examples</a></li>
  266. </ul></li>
  267. <li><a id="toc-microdvd" href="#microdvd">4.60 microdvd</a></li>
  268. <li><a id="toc-mmf" href="#mmf">4.61 mmf</a></li>
  269. <li><a id="toc-mp3" href="#mp3">4.62 mp3</a></li>
  270. <li><a id="toc-mpegts-1" href="#mpegts-1">4.63 mpegts</a>
  271. <ul class="toc-numbered-mark">
  272. <li><a id="toc-Options-30" href="#Options-30">4.63.1 Options</a></li>
  273. <li><a id="toc-Example-8" href="#Example-8">4.63.2 Example</a></li>
  274. </ul></li>
  275. <li><a id="toc-mxf_002c-mxf_005fd10_002c-mxf_005fopatom" href="#mxf_002c-mxf_005fd10_002c-mxf_005fopatom">4.64 mxf, mxf_d10, mxf_opatom</a>
  276. <ul class="toc-numbered-mark">
  277. <li><a id="toc-Options-31" href="#Options-31">4.64.1 Options</a></li>
  278. </ul></li>
  279. <li><a id="toc-null" href="#null">4.65 null</a></li>
  280. <li><a id="toc-nut" href="#nut">4.66 nut</a></li>
  281. <li><a id="toc-ogg" href="#ogg">4.67 ogg</a></li>
  282. <li><a id="toc-rcwt-1" href="#rcwt-1">4.68 rcwt</a>
  283. <ul class="toc-numbered-mark">
  284. <li><a id="toc-Examples-16" href="#Examples-16">4.68.1 Examples</a></li>
  285. </ul></li>
  286. <li><a id="toc-segment_002c-stream_005fsegment_002c-ssegment" href="#segment_002c-stream_005fsegment_002c-ssegment">4.69 segment, stream_segment, ssegment</a>
  287. <ul class="toc-numbered-mark">
  288. <li><a id="toc-Options-32" href="#Options-32">4.69.1 Options</a></li>
  289. <li><a id="toc-Examples-17" href="#Examples-17">4.69.2 Examples</a></li>
  290. </ul></li>
  291. <li><a id="toc-smoothstreaming" href="#smoothstreaming">4.70 smoothstreaming</a></li>
  292. <li><a id="toc-streamhash-1" href="#streamhash-1">4.71 streamhash</a>
  293. <ul class="toc-numbered-mark">
  294. <li><a id="toc-Examples-18" href="#Examples-18">4.71.1 Examples</a></li>
  295. </ul></li>
  296. <li><a id="toc-tee-1" href="#tee-1">4.72 tee</a>
  297. <ul class="toc-numbered-mark">
  298. <li><a id="toc-Options-33" href="#Options-33">4.72.1 Options</a></li>
  299. <li><a id="toc-Examples-19" href="#Examples-19">4.72.2 Examples</a></li>
  300. </ul></li>
  301. <li><a id="toc-webm_005fchunk" href="#webm_005fchunk">4.73 webm_chunk</a>
  302. <ul class="toc-numbered-mark">
  303. <li><a id="toc-Options-34" href="#Options-34">4.73.1 Options</a></li>
  304. <li><a id="toc-Example-9" href="#Example-9">4.73.2 Example</a></li>
  305. </ul></li>
  306. <li><a id="toc-webm_005fdash_005fmanifest" href="#webm_005fdash_005fmanifest">4.74 webm_dash_manifest</a>
  307. <ul class="toc-numbered-mark">
  308. <li><a id="toc-Options-35" href="#Options-35">4.74.1 Options</a></li>
  309. <li><a id="toc-Example-10" href="#Example-10">4.74.2 Example</a></li>
  310. </ul></li>
  311. <li><a id="toc-whip-1" href="#whip-1">4.75 whip</a>
  312. <ul class="toc-numbered-mark">
  313. <li><a id="toc-Options-36" href="#Options-36">4.75.1 Options</a></li>
  314. </ul></li>
  315. </ul></li>
  316. <li><a id="toc-Metadata-2" href="#Metadata-2">5 Metadata</a></li>
  317. <li><a id="toc-See-Also" href="#See-Also">6 See Also</a></li>
  318. <li><a id="toc-Authors" href="#Authors">7 Authors</a></li>
  319. </ul>
  320. </div>
  321. </div>
  322. <a name="Description"></a>
  323. <h2 class="chapter">1 Description<span class="pull-right"><a class="anchor hidden-xs" href="#Description" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Description" aria-hidden="true">TOC</a></span></h2>
  324. <p>This document describes the supported formats (muxers and demuxers)
  325. provided by the libavformat library.
  326. </p>
  327. <a name="Format-Options"></a>
  328. <h2 class="chapter">2 Format Options<span class="pull-right"><a class="anchor hidden-xs" href="#Format-Options" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Format-Options" aria-hidden="true">TOC</a></span></h2>
  329. <p>The libavformat library provides some generic global options, which
  330. can be set on all the muxers and demuxers. In addition each muxer or
  331. demuxer may support so-called private options, which are specific for
  332. that component.
  333. </p>
  334. <p>Options may be set by specifying -<var class="var">option</var> <var class="var">value</var> in the
  335. FFmpeg tools, or by setting the value explicitly in the
  336. <code class="code">AVFormatContext</code> options or using the <samp class="file">libavutil/opt.h</samp> API
  337. for programmatic use.
  338. </p>
  339. <p>The list of supported options follows:
  340. </p>
  341. <dl class="table">
  342. <dt><samp class="option">avioflags <var class="var">flags</var> (<em class="emph">input/output</em>)</samp></dt>
  343. <dd><p>Possible values:
  344. </p><dl class="table">
  345. <dt>&lsquo;<samp class="samp">direct</samp>&rsquo;</dt>
  346. <dd><p>Reduce buffering.
  347. </p></dd>
  348. </dl>
  349. </dd>
  350. <dt><samp class="option">probesize <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  351. <dd><p>Set probing size in bytes, i.e. the size of the data to analyze to get
  352. stream information. A higher value will enable detecting more
  353. information in case it is dispersed into the stream, but will increase
  354. latency. Must be an integer not lesser than 32. It is 5000000 by default.
  355. </p>
  356. </dd>
  357. <dt><samp class="option">max_probe_packets <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  358. <dd><p>Set the maximum number of buffered packets when probing a codec.
  359. Default is 2500 packets.
  360. </p>
  361. </dd>
  362. <dt><samp class="option">packetsize <var class="var">integer</var> (<em class="emph">output</em>)</samp></dt>
  363. <dd><p>Set packet size.
  364. </p>
  365. </dd>
  366. <dt><samp class="option">fflags <var class="var">flags</var></samp></dt>
  367. <dd><p>Set format flags. Some are implemented for a limited number of formats.
  368. </p>
  369. <p>Possible values for input files:
  370. </p><dl class="table">
  371. <dt>&lsquo;<samp class="samp">discardcorrupt</samp>&rsquo;</dt>
  372. <dd><p>Discard corrupted packets.
  373. </p></dd>
  374. <dt>&lsquo;<samp class="samp">fastseek</samp>&rsquo;</dt>
  375. <dd><p>Enable fast, but inaccurate seeks for some formats.
  376. </p></dd>
  377. <dt>&lsquo;<samp class="samp">genpts</samp>&rsquo;</dt>
  378. <dd><p>Generate missing PTS if DTS is present.
  379. </p></dd>
  380. <dt>&lsquo;<samp class="samp">igndts</samp>&rsquo;</dt>
  381. <dd><p>Ignore DTS if PTS is also set. In case the PTS is set, the DTS value
  382. is set to NOPTS. This is ignored when the <code class="code">nofillin</code> flag is set.
  383. </p></dd>
  384. <dt>&lsquo;<samp class="samp">ignidx</samp>&rsquo;</dt>
  385. <dd><p>Ignore index.
  386. </p></dd>
  387. <dt>&lsquo;<samp class="samp">nobuffer</samp>&rsquo;</dt>
  388. <dd><p>Reduce the latency introduced by buffering during initial input streams analysis.
  389. </p></dd>
  390. <dt>&lsquo;<samp class="samp">nofillin</samp>&rsquo;</dt>
  391. <dd><p>Do not fill in missing values in packet fields that can be exactly calculated.
  392. </p></dd>
  393. <dt>&lsquo;<samp class="samp">noparse</samp>&rsquo;</dt>
  394. <dd><p>Disable AVParsers, this needs <code class="code">+nofillin</code> too.
  395. </p></dd>
  396. <dt>&lsquo;<samp class="samp">sortdts</samp>&rsquo;</dt>
  397. <dd><p>Try to interleave output packets by DTS. At present, available only for AVIs with an index.
  398. </p></dd>
  399. </dl>
  400. <p>Possible values for output files:
  401. </p><dl class="table">
  402. <dt>&lsquo;<samp class="samp">autobsf</samp>&rsquo;</dt>
  403. <dd><p>Automatically apply bitstream filters as required by the output format. Enabled by default.
  404. </p></dd>
  405. <dt>&lsquo;<samp class="samp">bitexact</samp>&rsquo;</dt>
  406. <dd><p>Only write platform-, build- and time-independent data.
  407. This ensures that file and data checksums are reproducible and match between
  408. platforms. Its primary use is for regression testing.
  409. </p></dd>
  410. <dt>&lsquo;<samp class="samp">flush_packets</samp>&rsquo;</dt>
  411. <dd><p>Write out packets immediately.
  412. </p></dd>
  413. <dt>&lsquo;<samp class="samp">shortest</samp>&rsquo;</dt>
  414. <dd><p>Stop muxing at the end of the shortest stream.
  415. It may be needed to increase max_interleave_delta to avoid flushing the longer
  416. streams before EOF.
  417. </p></dd>
  418. </dl>
  419. </dd>
  420. <dt><samp class="option">seek2any <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  421. <dd><p>Allow seeking to non-keyframes on demuxer level when supported if set to 1.
  422. Default is 0.
  423. </p>
  424. </dd>
  425. <dt><samp class="option">analyzeduration <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  426. <dd><p>Specify how many microseconds are analyzed to probe the input. A
  427. higher value will enable detecting more accurate information, but will
  428. increase latency. It defaults to 5,000,000 microseconds = 5 seconds.
  429. </p>
  430. </dd>
  431. <dt><samp class="option">cryptokey <var class="var">hexadecimal string</var> (<em class="emph">input</em>)</samp></dt>
  432. <dd><p>Set decryption key.
  433. </p>
  434. </dd>
  435. <dt><samp class="option">indexmem <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  436. <dd><p>Set max memory used for timestamp index (per stream).
  437. </p>
  438. </dd>
  439. <dt><samp class="option">rtbufsize <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  440. <dd><p>Set max memory used for buffering real-time frames.
  441. </p>
  442. </dd>
  443. <dt><samp class="option">fdebug <var class="var">flags</var> (<em class="emph">input/output</em>)</samp></dt>
  444. <dd><p>Print specific debug info.
  445. </p>
  446. <p>Possible values:
  447. </p><dl class="table">
  448. <dt>&lsquo;<samp class="samp">ts</samp>&rsquo;</dt>
  449. </dl>
  450. </dd>
  451. <dt><samp class="option">max_delay <var class="var">integer</var> (<em class="emph">input/output</em>)</samp></dt>
  452. <dd><p>Set maximum muxing or demuxing delay in microseconds.
  453. </p>
  454. </dd>
  455. <dt><samp class="option">fpsprobesize <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  456. <dd><p>Set number of frames used to probe fps.
  457. </p>
  458. </dd>
  459. <dt><samp class="option">audio_preload <var class="var">integer</var> (<em class="emph">output</em>)</samp></dt>
  460. <dd><p>Set microseconds by which audio packets should be interleaved earlier.
  461. </p>
  462. </dd>
  463. <dt><samp class="option">chunk_duration <var class="var">integer</var> (<em class="emph">output</em>)</samp></dt>
  464. <dd><p>Set microseconds for each chunk.
  465. </p>
  466. </dd>
  467. <dt><samp class="option">chunk_size <var class="var">integer</var> (<em class="emph">output</em>)</samp></dt>
  468. <dd><p>Set size in bytes for each chunk.
  469. </p>
  470. </dd>
  471. <dt><samp class="option">err_detect, f_err_detect <var class="var">flags</var> (<em class="emph">input</em>)</samp></dt>
  472. <dd><p>Set error detection flags. <code class="code">f_err_detect</code> is deprecated and
  473. should be used only via the <code class="command">ffmpeg</code> tool.
  474. </p>
  475. <p>Possible values:
  476. </p><dl class="table">
  477. <dt>&lsquo;<samp class="samp">crccheck</samp>&rsquo;</dt>
  478. <dd><p>Verify embedded CRCs.
  479. </p></dd>
  480. <dt>&lsquo;<samp class="samp">bitstream</samp>&rsquo;</dt>
  481. <dd><p>Detect bitstream specification deviations.
  482. </p></dd>
  483. <dt>&lsquo;<samp class="samp">buffer</samp>&rsquo;</dt>
  484. <dd><p>Detect improper bitstream length.
  485. </p></dd>
  486. <dt>&lsquo;<samp class="samp">explode</samp>&rsquo;</dt>
  487. <dd><p>Abort decoding on minor error detection.
  488. </p></dd>
  489. <dt>&lsquo;<samp class="samp">careful</samp>&rsquo;</dt>
  490. <dd><p>Consider things that violate the spec and have not been seen in the
  491. wild as errors.
  492. </p></dd>
  493. <dt>&lsquo;<samp class="samp">compliant</samp>&rsquo;</dt>
  494. <dd><p>Consider all spec non compliancies as errors.
  495. </p></dd>
  496. <dt>&lsquo;<samp class="samp">aggressive</samp>&rsquo;</dt>
  497. <dd><p>Consider things that a sane encoder should not do as an error.
  498. </p></dd>
  499. </dl>
  500. </dd>
  501. <dt><samp class="option">max_interleave_delta <var class="var">integer</var> (<em class="emph">output</em>)</samp></dt>
  502. <dd><p>Set maximum buffering duration for interleaving. The duration is
  503. expressed in microseconds, and defaults to 10000000 (10 seconds).
  504. </p>
  505. <p>To ensure all the streams are interleaved correctly, libavformat will
  506. wait until it has at least one packet for each stream before actually
  507. writing any packets to the output file. When some streams are
  508. &quot;sparse&quot; (i.e. there are large gaps between successive packets), this
  509. can result in excessive buffering.
  510. </p>
  511. <p>This field specifies the maximum difference between the timestamps of the
  512. first and the last packet in the muxing queue, above which libavformat
  513. will output a packet regardless of whether it has queued a packet for all
  514. the streams.
  515. </p>
  516. <p>If set to 0, libavformat will continue buffering packets until it has
  517. a packet for each stream, regardless of the maximum timestamp
  518. difference between the buffered packets.
  519. </p>
  520. </dd>
  521. <dt><samp class="option">use_wallclock_as_timestamps <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  522. <dd><p>Use wallclock as timestamps if set to 1. Default is 0.
  523. </p>
  524. </dd>
  525. <dt><samp class="option">avoid_negative_ts <var class="var">integer</var> (<em class="emph">output</em>)</samp></dt>
  526. <dd>
  527. <p>Possible values:
  528. </p><dl class="table">
  529. <dt>&lsquo;<samp class="samp">make_non_negative</samp>&rsquo;</dt>
  530. <dd><p>Shift timestamps to make them non-negative.
  531. Also note that this affects only leading negative timestamps, and not
  532. non-monotonic negative timestamps.
  533. </p></dd>
  534. <dt>&lsquo;<samp class="samp">make_zero</samp>&rsquo;</dt>
  535. <dd><p>Shift timestamps so that the first timestamp is 0.
  536. </p></dd>
  537. <dt>&lsquo;<samp class="samp">auto (default)</samp>&rsquo;</dt>
  538. <dd><p>Enables shifting when required by the target format.
  539. </p></dd>
  540. <dt>&lsquo;<samp class="samp">disabled</samp>&rsquo;</dt>
  541. <dd><p>Disables shifting of timestamp.
  542. </p></dd>
  543. </dl>
  544. <p>When shifting is enabled, all output timestamps are shifted by the
  545. same amount. Audio, video, and subtitles desynching and relative
  546. timestamp differences are preserved compared to how they would have
  547. been without shifting.
  548. </p>
  549. </dd>
  550. <dt><samp class="option">skip_initial_bytes <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  551. <dd><p>Set number of bytes to skip before reading header and frames if set to 1.
  552. Default is 0.
  553. </p>
  554. </dd>
  555. <dt><samp class="option">correct_ts_overflow <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  556. <dd><p>Correct single timestamp overflows if set to 1. Default is 1.
  557. </p>
  558. </dd>
  559. <dt><samp class="option">flush_packets <var class="var">integer</var> (<em class="emph">output</em>)</samp></dt>
  560. <dd><p>Flush the underlying I/O stream after each packet. Default is -1 (auto), which
  561. means that the underlying protocol will decide, 1 enables it, and has the
  562. effect of reducing the latency, 0 disables it and may increase IO throughput in
  563. some cases.
  564. </p>
  565. </dd>
  566. <dt><samp class="option">output_ts_offset <var class="var">offset</var> (<em class="emph">output</em>)</samp></dt>
  567. <dd><p>Set the output time offset.
  568. </p>
  569. <p><var class="var">offset</var> must be a time duration specification,
  570. see <a data-manual="ffmpeg-utils" href="ffmpeg-utils.html#time-duration-syntax">the Time duration section in the ffmpeg-utils(1) manual</a>.
  571. </p>
  572. <p>The offset is added by the muxer to the output timestamps.
  573. </p>
  574. <p>Specifying a positive offset means that the corresponding streams are
  575. delayed bt the time duration specified in <var class="var">offset</var>. Default value
  576. is <code class="code">0</code> (meaning that no offset is applied).
  577. </p>
  578. </dd>
  579. <dt><samp class="option">format_whitelist <var class="var">list</var> (<em class="emph">input</em>)</samp></dt>
  580. <dd><p>&quot;,&quot; separated list of allowed demuxers. By default all are allowed.
  581. </p>
  582. </dd>
  583. <dt><samp class="option">dump_separator <var class="var">string</var> (<em class="emph">input</em>)</samp></dt>
  584. <dd><p>Separator used to separate the fields printed on the command line about the
  585. Stream parameters.
  586. For example, to separate the fields with newlines and indentation:
  587. </p><div class="example">
  588. <pre class="example-preformatted">ffprobe -dump_separator &quot;
  589. &quot; -i ~/videos/matrixbench_mpeg2.mpg
  590. </pre></div>
  591. </dd>
  592. <dt><samp class="option">max_streams <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  593. <dd><p>Specifies the maximum number of streams. This can be used to reject files that
  594. would require too many resources due to a large number of streams.
  595. </p>
  596. </dd>
  597. <dt><samp class="option">skip_estimate_duration_from_pts <var class="var">bool</var> (<em class="emph">input</em>)</samp></dt>
  598. <dd><p>Skip estimation of input duration if it requires an additional probing for PTS at end of file.
  599. At present, applicable for MPEG-PS and MPEG-TS.
  600. </p>
  601. </dd>
  602. <dt><samp class="option">duration_probesize <var class="var">integer</var> (<em class="emph">input</em>)</samp></dt>
  603. <dd><p>Set probing size, in bytes, for input duration estimation when it actually requires
  604. an additional probing for PTS at end of file (at present: MPEG-PS and MPEG-TS).
  605. It is aimed at users interested in better durations probing for itself, or indirectly
  606. because using the concat demuxer, for example.
  607. The typical use case is an MPEG-TS CBR with a high bitrate, high video buffering and
  608. ending cleaning with similar PTS for video and audio: in such a scenario, the large
  609. physical gap between the last video packet and the last audio packet makes it necessary
  610. to read many bytes in order to get the video stream duration.
  611. Another use case is where the default probing behaviour only reaches a single video frame which is
  612. not the last one of the stream due to frame reordering, so the duration is not accurate.
  613. Setting this option has a performance impact even for small files because the probing
  614. size is fixed.
  615. Default behaviour is a general purpose trade-off, largely adaptive, but the probing size
  616. will not be extended to get streams durations at all costs.
  617. Must be an integer not lesser than 1, or 0 for default behaviour.
  618. </p>
  619. </dd>
  620. <dt><samp class="option">strict, f_strict <var class="var">integer</var> (<em class="emph">input/output</em>)</samp></dt>
  621. <dd><p>Specify how strictly to follow the standards. <code class="code">f_strict</code> is deprecated and
  622. should be used only via the <code class="command">ffmpeg</code> tool.
  623. </p>
  624. <p>Possible values:
  625. </p><dl class="table">
  626. <dt>&lsquo;<samp class="samp">very</samp>&rsquo;</dt>
  627. <dd><p>strictly conform to an older more strict version of the spec or reference software
  628. </p></dd>
  629. <dt>&lsquo;<samp class="samp">strict</samp>&rsquo;</dt>
  630. <dd><p>strictly conform to all the things in the spec no matter what consequences
  631. </p></dd>
  632. <dt>&lsquo;<samp class="samp">normal</samp>&rsquo;</dt>
  633. <dt>&lsquo;<samp class="samp">unofficial</samp>&rsquo;</dt>
  634. <dd><p>allow unofficial extensions
  635. </p></dd>
  636. <dt>&lsquo;<samp class="samp">experimental</samp>&rsquo;</dt>
  637. <dd><p>allow non standardized experimental things, experimental
  638. (unfinished/work in progress/not well tested) decoders and encoders.
  639. Note: experimental decoders can pose a security risk, do not use this for
  640. decoding untrusted input.
  641. </p></dd>
  642. </dl>
  643. </dd>
  644. </dl>
  645. <a class="anchor" id="Format-stream-specifiers"></a><a name="Format-stream-specifiers-1"></a>
  646. <h3 class="section">2.1 Format stream specifiers<span class="pull-right"><a class="anchor hidden-xs" href="#Format-stream-specifiers-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Format-stream-specifiers-1" aria-hidden="true">TOC</a></span></h3>
  647. <p>Format stream specifiers allow selection of one or more streams that
  648. match specific properties.
  649. </p>
  650. <p>The exact semantics of stream specifiers is defined by the
  651. <code class="code">avformat_match_stream_specifier()</code> function declared in the
  652. <samp class="file">libavformat/avformat.h</samp> header and documented in the
  653. <a data-manual="ffmpeg" href="ffmpeg.html#Stream-specifiers">Stream specifiers section in the ffmpeg(1) manual</a>.
  654. </p>
  655. <a name="Demuxers"></a>
  656. <h2 class="chapter">3 Demuxers<span class="pull-right"><a class="anchor hidden-xs" href="#Demuxers" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Demuxers" aria-hidden="true">TOC</a></span></h2>
  657. <p>Demuxers are configured elements in FFmpeg that can read the
  658. multimedia streams from a particular type of file.
  659. </p>
  660. <p>When you configure your FFmpeg build, all the supported demuxers
  661. are enabled by default. You can list all available ones using the
  662. configure option <code class="code">--list-demuxers</code>.
  663. </p>
  664. <p>You can disable all the demuxers using the configure option
  665. <code class="code">--disable-demuxers</code>, and selectively enable a single demuxer with
  666. the option <code class="code">--enable-demuxer=<var class="var">DEMUXER</var></code>, or disable it
  667. with the option <code class="code">--disable-demuxer=<var class="var">DEMUXER</var></code>.
  668. </p>
  669. <p>The option <code class="code">-demuxers</code> of the ff* tools will display the list of
  670. enabled demuxers. Use <code class="code">-formats</code> to view a combined list of
  671. enabled demuxers and muxers.
  672. </p>
  673. <p>The description of some of the currently available demuxers follows.
  674. </p>
  675. <a name="aa"></a>
  676. <h3 class="section">3.1 aa<span class="pull-right"><a class="anchor hidden-xs" href="#aa" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-aa" aria-hidden="true">TOC</a></span></h3>
  677. <p>Audible Format 2, 3, and 4 demuxer.
  678. </p>
  679. <p>This demuxer is used to demux Audible Format 2, 3, and 4 (.aa) files.
  680. </p>
  681. <a name="aac"></a>
  682. <h3 class="section">3.2 aac<span class="pull-right"><a class="anchor hidden-xs" href="#aac" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-aac" aria-hidden="true">TOC</a></span></h3>
  683. <p>Raw Audio Data Transport Stream AAC demuxer.
  684. </p>
  685. <p>This demuxer is used to demux an ADTS input containing a single AAC stream
  686. alongwith any ID3v1/2 or APE tags in it.
  687. </p>
  688. <a name="apng"></a>
  689. <h3 class="section">3.3 apng<span class="pull-right"><a class="anchor hidden-xs" href="#apng" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-apng" aria-hidden="true">TOC</a></span></h3>
  690. <p>Animated Portable Network Graphics demuxer.
  691. </p>
  692. <p>This demuxer is used to demux APNG files.
  693. All headers, but the PNG signature, up to (but not including) the first
  694. fcTL chunk are transmitted as extradata.
  695. Frames are then split as being all the chunks between two fcTL ones, or
  696. between the last fcTL and IEND chunks.
  697. </p>
  698. <dl class="table">
  699. <dt><samp class="option">-ignore_loop <var class="var">bool</var></samp></dt>
  700. <dd><p>Ignore the loop variable in the file if set. Default is enabled.
  701. </p>
  702. </dd>
  703. <dt><samp class="option">-max_fps <var class="var">int</var></samp></dt>
  704. <dd><p>Maximum framerate in frames per second. Default of 0 imposes no limit.
  705. </p>
  706. </dd>
  707. <dt><samp class="option">-default_fps <var class="var">int</var></samp></dt>
  708. <dd><p>Default framerate in frames per second when none is specified in the file
  709. (0 meaning as fast as possible). Default is 15.
  710. </p>
  711. </dd>
  712. </dl>
  713. <a name="asf-1"></a>
  714. <h3 class="section">3.4 asf<span class="pull-right"><a class="anchor hidden-xs" href="#asf-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-asf-1" aria-hidden="true">TOC</a></span></h3>
  715. <p>Advanced Systems Format demuxer.
  716. </p>
  717. <p>This demuxer is used to demux ASF files and MMS network streams.
  718. </p>
  719. <dl class="table">
  720. <dt><samp class="option">-no_resync_search <var class="var">bool</var></samp></dt>
  721. <dd><p>Do not try to resynchronize by looking for a certain optional start code.
  722. </p></dd>
  723. </dl>
  724. <a class="anchor" id="concat"></a><a name="concat-1"></a>
  725. <h3 class="section">3.5 concat<span class="pull-right"><a class="anchor hidden-xs" href="#concat-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-concat-1" aria-hidden="true">TOC</a></span></h3>
  726. <p>Virtual concatenation script demuxer.
  727. </p>
  728. <p>This demuxer reads a list of files and other directives from a text file and
  729. demuxes them one after the other, as if all their packets had been muxed
  730. together.
  731. </p>
  732. <p>The timestamps in the files are adjusted so that the first file starts at 0
  733. and each next file starts where the previous one finishes. Note that it is
  734. done globally and may cause gaps if all streams do not have exactly the same
  735. length.
  736. </p>
  737. <p>All files must have the same streams (same codecs, same time base, etc.).
  738. </p>
  739. <p>The duration of each file is used to adjust the timestamps of the next file:
  740. if the duration is incorrect (because it was computed using the bit-rate or
  741. because the file is truncated, for example), it can cause artifacts. The
  742. <code class="code">duration</code> directive can be used to override the duration stored in
  743. each file.
  744. </p>
  745. <a name="Syntax"></a>
  746. <h4 class="subsection">3.5.1 Syntax<span class="pull-right"><a class="anchor hidden-xs" href="#Syntax" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Syntax" aria-hidden="true">TOC</a></span></h4>
  747. <p>The script is a text file in extended-ASCII, with one directive per line.
  748. Empty lines, leading spaces and lines starting with &rsquo;#&rsquo; are ignored. The
  749. following directive is recognized:
  750. </p>
  751. <dl class="table">
  752. <dt><samp class="option"><code class="code">file <var class="var">path</var></code></samp></dt>
  753. <dd><p>Path to a file to read; special characters and spaces must be escaped with
  754. backslash or single quotes.
  755. </p>
  756. <p>All subsequent file-related directives apply to that file.
  757. </p>
  758. </dd>
  759. <dt><samp class="option"><code class="code">ffconcat version 1.0</code></samp></dt>
  760. <dd><p>Identify the script type and version.
  761. </p>
  762. <p>To make FFmpeg recognize the format automatically, this directive must
  763. appear exactly as is (no extra space or byte-order-mark) on the very first
  764. line of the script.
  765. </p>
  766. </dd>
  767. <dt><samp class="option"><code class="code">duration <var class="var">dur</var></code></samp></dt>
  768. <dd><p>Duration of the file. This information can be specified from the file;
  769. specifying it here may be more efficient or help if the information from the
  770. file is not available or accurate.
  771. </p>
  772. <p>If the duration is set for all files, then it is possible to seek in the
  773. whole concatenated video.
  774. </p>
  775. </dd>
  776. <dt><samp class="option"><code class="code">inpoint <var class="var">timestamp</var></code></samp></dt>
  777. <dd><p>In point of the file. When the demuxer opens the file it instantly seeks to the
  778. specified timestamp. Seeking is done so that all streams can be presented
  779. successfully at In point.
  780. </p>
  781. <p>This directive works best with intra frame codecs, because for non-intra frame
  782. ones you will usually get extra packets before the actual In point and the
  783. decoded content will most likely contain frames before In point too.
  784. </p>
  785. <p>For each file, packets before the file In point will have timestamps less than
  786. the calculated start timestamp of the file (negative in case of the first
  787. file), and the duration of the files (if not specified by the <code class="code">duration</code>
  788. directive) will be reduced based on their specified In point.
  789. </p>
  790. <p>Because of potential packets before the specified In point, packet timestamps
  791. may overlap between two concatenated files.
  792. </p>
  793. </dd>
  794. <dt><samp class="option"><code class="code">outpoint <var class="var">timestamp</var></code></samp></dt>
  795. <dd><p>Out point of the file. When the demuxer reaches the specified decoding
  796. timestamp in any of the streams, it handles it as an end of file condition and
  797. skips the current and all the remaining packets from all streams.
  798. </p>
  799. <p>Out point is exclusive, which means that the demuxer will not output packets
  800. with a decoding timestamp greater or equal to Out point.
  801. </p>
  802. <p>This directive works best with intra frame codecs and formats where all streams
  803. are tightly interleaved. For non-intra frame codecs you will usually get
  804. additional packets with presentation timestamp after Out point therefore the
  805. decoded content will most likely contain frames after Out point too. If your
  806. streams are not tightly interleaved you may not get all the packets from all
  807. streams before Out point and you may only will be able to decode the earliest
  808. stream until Out point.
  809. </p>
  810. <p>The duration of the files (if not specified by the <code class="code">duration</code>
  811. directive) will be reduced based on their specified Out point.
  812. </p>
  813. </dd>
  814. <dt><samp class="option"><code class="code">file_packet_metadata <var class="var">key=value</var></code></samp></dt>
  815. <dd><p>Metadata of the packets of the file. The specified metadata will be set for
  816. each file packet. You can specify this directive multiple times to add multiple
  817. metadata entries.
  818. This directive is deprecated, use <code class="code">file_packet_meta</code> instead.
  819. </p>
  820. </dd>
  821. <dt><samp class="option"><code class="code">file_packet_meta <var class="var">key</var> <var class="var">value</var></code></samp></dt>
  822. <dd><p>Metadata of the packets of the file. The specified metadata will be set for
  823. each file packet. You can specify this directive multiple times to add multiple
  824. metadata entries.
  825. </p>
  826. </dd>
  827. <dt><samp class="option"><code class="code">option <var class="var">key</var> <var class="var">value</var></code></samp></dt>
  828. <dd><p>Option to access, open and probe the file.
  829. Can be present multiple times.
  830. </p>
  831. </dd>
  832. <dt><samp class="option"><code class="code">stream</code></samp></dt>
  833. <dd><p>Introduce a stream in the virtual file.
  834. All subsequent stream-related directives apply to the last introduced
  835. stream.
  836. Some streams properties must be set in order to allow identifying the
  837. matching streams in the subfiles.
  838. If no streams are defined in the script, the streams from the first file are
  839. copied.
  840. </p>
  841. </dd>
  842. <dt><samp class="option"><code class="code">exact_stream_id <var class="var">id</var></code></samp></dt>
  843. <dd><p>Set the id of the stream.
  844. If this directive is given, the string with the corresponding id in the
  845. subfiles will be used.
  846. This is especially useful for MPEG-PS (VOB) files, where the order of the
  847. streams is not reliable.
  848. </p>
  849. </dd>
  850. <dt><samp class="option"><code class="code">stream_meta <var class="var">key</var> <var class="var">value</var></code></samp></dt>
  851. <dd><p>Metadata for the stream.
  852. Can be present multiple times.
  853. </p>
  854. </dd>
  855. <dt><samp class="option"><code class="code">stream_codec <var class="var">value</var></code></samp></dt>
  856. <dd><p>Codec for the stream.
  857. </p>
  858. </dd>
  859. <dt><samp class="option"><code class="code">stream_extradata <var class="var">hex_string</var></code></samp></dt>
  860. <dd><p>Extradata for the string, encoded in hexadecimal.
  861. </p>
  862. </dd>
  863. <dt><samp class="option"><code class="code">chapter <var class="var">id</var> <var class="var">start</var> <var class="var">end</var></code></samp></dt>
  864. <dd><p>Add a chapter. <var class="var">id</var> is an unique identifier, possibly small and
  865. consecutive.
  866. </p>
  867. </dd>
  868. </dl>
  869. <a name="Options"></a>
  870. <h4 class="subsection">3.5.2 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options" aria-hidden="true">TOC</a></span></h4>
  871. <p>This demuxer accepts the following option:
  872. </p>
  873. <dl class="table">
  874. <dt><samp class="option">safe</samp></dt>
  875. <dd><p>If set to 1, reject unsafe file paths and directives.
  876. A file path is considered safe if it
  877. does not contain a protocol specification and is relative and all components
  878. only contain characters from the portable character set (letters, digits,
  879. period, underscore and hyphen) and have no period at the beginning of a
  880. component.
  881. </p>
  882. <p>If set to 0, any file name is accepted.
  883. </p>
  884. <p>The default is 1.
  885. </p>
  886. </dd>
  887. <dt><samp class="option">auto_convert</samp></dt>
  888. <dd><p>If set to 1, try to perform automatic conversions on packet data to make the
  889. streams concatenable.
  890. The default is 1.
  891. </p>
  892. <p>Currently, the only conversion is adding the h264_mp4toannexb bitstream
  893. filter to H.264 streams in MP4 format. This is necessary in particular if
  894. there are resolution changes.
  895. </p>
  896. </dd>
  897. <dt><samp class="option">segment_time_metadata</samp></dt>
  898. <dd><p>If set to 1, every packet will contain the <var class="var">lavf.concat.start_time</var> and the
  899. <var class="var">lavf.concat.duration</var> packet metadata values which are the start_time and
  900. the duration of the respective file segments in the concatenated output
  901. expressed in microseconds. The duration metadata is only set if it is known
  902. based on the concat file.
  903. The default is 0.
  904. </p>
  905. </dd>
  906. </dl>
  907. <a name="Examples"></a>
  908. <h4 class="subsection">3.5.3 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples" aria-hidden="true">TOC</a></span></h4>
  909. <ul class="itemize mark-bullet">
  910. <li>Use absolute filenames and include some comments:
  911. <div class="example">
  912. <pre class="example-preformatted"># my first filename
  913. file /mnt/share/file-1.wav
  914. # my second filename including whitespace
  915. file '/mnt/share/file 2.wav'
  916. # my third filename including whitespace plus single quote
  917. file '/mnt/share/file 3'\''.wav'
  918. </pre></div>
  919. </li><li>Allow for input format auto-probing, use safe filenames and set the duration of
  920. the first file:
  921. <div class="example">
  922. <pre class="example-preformatted">ffconcat version 1.0
  923. file file-1.wav
  924. duration 20.0
  925. file subdir/file-2.wav
  926. </pre></div>
  927. </li></ul>
  928. <a name="dash-1"></a>
  929. <h3 class="section">3.6 dash<span class="pull-right"><a class="anchor hidden-xs" href="#dash-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-dash-1" aria-hidden="true">TOC</a></span></h3>
  930. <p>Dynamic Adaptive Streaming over HTTP demuxer.
  931. </p>
  932. <p>This demuxer presents all AVStreams found in the manifest.
  933. By setting the discard flags on AVStreams the caller can decide
  934. which streams to actually receive.
  935. Each stream mirrors the <code class="code">id</code> and <code class="code">bandwidth</code> properties from the
  936. <code class="code">&lt;Representation&gt;</code> as metadata keys named &quot;id&quot; and &quot;variant_bitrate&quot; respectively.
  937. </p>
  938. <a name="Options-1"></a>
  939. <h4 class="subsection">3.6.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-1" aria-hidden="true">TOC</a></span></h4>
  940. <p>This demuxer accepts the following option:
  941. </p>
  942. <dl class="table">
  943. <dt><samp class="option">cenc_decryption_key</samp></dt>
  944. <dd><p>16-byte key, in hex, to decrypt files encrypted using ISO Common Encryption (CENC/AES-128 CTR; ISO/IEC 23001-7).
  945. </p>
  946. </dd>
  947. </dl>
  948. <a name="dvdvideo"></a>
  949. <h3 class="section">3.7 dvdvideo<span class="pull-right"><a class="anchor hidden-xs" href="#dvdvideo" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-dvdvideo" aria-hidden="true">TOC</a></span></h3>
  950. <p>DVD-Video demuxer, powered by libdvdnav and libdvdread.
  951. </p>
  952. <p>Can directly ingest DVD titles, specifically sequential PGCs, into
  953. a conversion pipeline. Menu assets, such as background video or audio,
  954. can also be demuxed given the menu&rsquo;s coordinates (at best effort).
  955. </p>
  956. <p>Block devices (DVD drives), ISO files, and directory structures are accepted.
  957. Activate with <code class="code">-f dvdvideo</code> in front of one of these inputs.
  958. </p>
  959. <p>This demuxer does NOT have decryption code of any kind. You are on your own
  960. working with encrypted DVDs, and should not expect support on the matter.
  961. </p>
  962. <p>Underlying playback is handled by libdvdnav, and structure parsing by libdvdread.
  963. FFmpeg must be built with GPL library support available as well as the
  964. configure switches <code class="code">--enable-libdvdnav</code> and <code class="code">--enable-libdvdread</code>.
  965. </p>
  966. <p>You will need to provide either the desired &quot;title number&quot; or exact PGC/PG coordinates.
  967. Many open-source DVD players and tools can aid in providing this information.
  968. If not specified, the demuxer will default to title 1 which works for many discs.
  969. However, due to the flexibility of the format, it is recommended to check manually.
  970. There are many discs that are authored strangely or with invalid headers.
  971. </p>
  972. <p>If the input is a real DVD drive, please note that there are some drives which may
  973. silently fail on reading bad sectors from the disc, returning random bits instead
  974. which is effectively corrupt data. This is especially prominent on aging or rotting discs.
  975. A second pass and integrity checks would be needed to detect the corruption.
  976. This is not an FFmpeg issue.
  977. </p>
  978. <a name="Background"></a>
  979. <h4 class="subsection">3.7.1 Background<span class="pull-right"><a class="anchor hidden-xs" href="#Background" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Background" aria-hidden="true">TOC</a></span></h4>
  980. <p>DVD-Video is not a directly accessible, linear container format in the
  981. traditional sense. Instead, it allows for complex and programmatic playback of
  982. carefully muxed MPEG-PS streams that are stored in headerless VOB files.
  983. To the end-user, these streams are known simply as &quot;titles&quot;, but the actual
  984. logical playback sequence is defined by one or more &quot;PGCs&quot;, or Program Group Chains,
  985. within the title. The PGC is in turn comprised of multiple &quot;PGs&quot;, or Programs&quot;,
  986. which are the actual video segments (and for a typical video feature, sequentially
  987. ordered). The PGC structure, along with stream layout and metadata, are stored in
  988. IFO files that need to be parsed. PGCs can be thought of as playlists in easier terms.
  989. </p>
  990. <p>An actual DVD player relies on user GUI interaction via menus and an internal VM
  991. to drive the direction of demuxing. Generally, the user would either navigate (via menus)
  992. or automatically be redirected to the PGC of their choice. During this process and
  993. the subsequent playback, the DVD player&rsquo;s internal VM also maintains a state and
  994. executes instructions that can create jumps to different sectors during playback.
  995. This is why libdvdnav is involved, as a linear read of the MPEG-PS blobs on the
  996. disc (VOBs) is not enough to produce the right sequence in many cases.
  997. </p>
  998. <p>There are many other DVD structures (a long subject) that will not be discussed here.
  999. NAV packets, in particular, are handled by this demuxer to build accurate timing
  1000. but not emitted as a stream. For a good high-level understanding, refer to:
  1001. <a class="url" href="https://code.videolan.org/videolan/libdvdnav/-/blob/master/doc/dvd_structures">https://code.videolan.org/videolan/libdvdnav/-/blob/master/doc/dvd_structures</a>
  1002. </p>
  1003. <a name="Options-2"></a>
  1004. <h4 class="subsection">3.7.2 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-2" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-2" aria-hidden="true">TOC</a></span></h4>
  1005. <p>This demuxer accepts the following options:
  1006. </p>
  1007. <dl class="table">
  1008. <dt><samp class="option">title <var class="var">int</var></samp></dt>
  1009. <dd><p>The title number to play. Must be set if <samp class="option">pgc</samp> and <samp class="option">pg</samp> are not set.
  1010. Not applicable to menus.
  1011. Default is 0 (auto), which currently only selects the first available title (title 1)
  1012. and notifies the user about the implications.
  1013. </p>
  1014. </dd>
  1015. <dt><samp class="option">chapter_start <var class="var">int</var></samp></dt>
  1016. <dd><p>The chapter, or PTT (part-of-title), number to start at. Not applicable to menus.
  1017. Default is 1.
  1018. </p>
  1019. </dd>
  1020. <dt><samp class="option">chapter_end <var class="var">int</var></samp></dt>
  1021. <dd><p>The chapter, or PTT (part-of-title), number to end at. Not applicable to menus.
  1022. Default is 0, which is a special value to signal end at the last possible chapter.
  1023. </p>
  1024. </dd>
  1025. <dt><samp class="option">angle <var class="var">int</var></samp></dt>
  1026. <dd><p>The video angle number, referring to what is essentially an additional
  1027. video stream that is composed from alternate frames interleaved in the VOBs.
  1028. Not applicable to menus.
  1029. Default is 1.
  1030. </p>
  1031. </dd>
  1032. <dt><samp class="option">region <var class="var">int</var></samp></dt>
  1033. <dd><p>The region code to use for playback. Some discs may use this to default playback
  1034. at a particular angle in different regions. This option will not affect the region code
  1035. of a real DVD drive, if used as an input. Not applicable to menus.
  1036. Default is 0, &quot;world&quot;.
  1037. </p>
  1038. </dd>
  1039. <dt><samp class="option">menu <var class="var">bool</var></samp></dt>
  1040. <dd><p>Demux menu assets instead of navigating a title. Requires exact coordinates
  1041. of the menu (<samp class="option">menu_lu</samp>, <samp class="option">menu_vts</samp>, <samp class="option">pgc</samp>, <samp class="option">pg</samp>).
  1042. Default is false.
  1043. </p>
  1044. </dd>
  1045. <dt><samp class="option">menu_lu <var class="var">int</var></samp></dt>
  1046. <dd><p>The menu language to demux. In DVD, menus are grouped by language.
  1047. Default is 1, the first language unit.
  1048. </p>
  1049. </dd>
  1050. <dt><samp class="option">menu_vts <var class="var">int</var></samp></dt>
  1051. <dd><p>The VTS where the menu lives, or 0 if it is a VMG menu (root-level).
  1052. Default is 1, menu of the first VTS.
  1053. </p>
  1054. </dd>
  1055. <dt><samp class="option">pgc <var class="var">int</var></samp></dt>
  1056. <dd><p>The entry PGC to start playback, in conjunction with <samp class="option">pg</samp>.
  1057. Alternative to setting <samp class="option">title</samp>.
  1058. Chapter markers are not supported at this time.
  1059. Must be explicitly set for menus.
  1060. Default is 0, automatically resolve from value of <samp class="option">title</samp>.
  1061. </p>
  1062. </dd>
  1063. <dt><samp class="option">pg <var class="var">int</var></samp></dt>
  1064. <dd><p>The entry PG to start playback, in conjunction with <samp class="option">pgc</samp>.
  1065. Alternative to setting <samp class="option">title</samp>.
  1066. Chapter markers are not supported at this time.
  1067. Default is 1, the first PG of the PGC.
  1068. </p>
  1069. </dd>
  1070. <dt><samp class="option">preindex <var class="var">bool</var></samp></dt>
  1071. <dd><p>Enable this to have accurate chapter (PTT) markers and duration measurement,
  1072. which requires a slow second pass read in order to index the chapter marker
  1073. timestamps from NAV packets. This is non-ideal extra work for real optical drives.
  1074. It is recommended and faster to use this option with a backup of the DVD structure
  1075. stored on a hard drive. Not compatible with <samp class="option">pgc</samp> and <samp class="option">pg</samp>.
  1076. Default is 0, false.
  1077. </p>
  1078. </dd>
  1079. <dt><samp class="option">trim <var class="var">bool</var></samp></dt>
  1080. <dd><p>Skip padding cells (i.e. cells shorter than 1 second) from the beginning.
  1081. There exist many discs with filler segments at the beginning of the PGC,
  1082. often with junk data intended for controlling a real DVD player&rsquo;s
  1083. buffering speed and with no other material data value.
  1084. Not applicable to menus.
  1085. Default is 1, true.
  1086. </p>
  1087. </dd>
  1088. </dl>
  1089. <a name="Examples-1"></a>
  1090. <h4 class="subsection">3.7.3 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-1" aria-hidden="true">TOC</a></span></h4>
  1091. <ul class="itemize mark-bullet">
  1092. <li>Open title 3 from a given DVD structure:
  1093. <div class="example">
  1094. <pre class="example-preformatted">ffmpeg -f dvdvideo -title 3 -i &lt;path to DVD&gt; ...
  1095. </pre></div>
  1096. </li><li>Open chapters 3-6 from title 1 from a given DVD structure:
  1097. <div class="example">
  1098. <pre class="example-preformatted">ffmpeg -f dvdvideo -chapter_start 3 -chapter_end 6 -title 1 -i &lt;path to DVD&gt; ...
  1099. </pre></div>
  1100. </li><li>Open only chapter 5 from title 1 from a given DVD structure:
  1101. <div class="example">
  1102. <pre class="example-preformatted">ffmpeg -f dvdvideo -chapter_start 5 -chapter_end 5 -title 1 -i &lt;path to DVD&gt; ...
  1103. </pre></div>
  1104. </li><li>Demux menu with language 1 from VTS 1, PGC 1, starting at PG 1:
  1105. <div class="example">
  1106. <pre class="example-preformatted">ffmpeg -f dvdvideo -menu 1 -menu_lu 1 -menu_vts 1 -pgc 1 -pg 1 -i &lt;path to DVD&gt; ...
  1107. </pre></div>
  1108. </li></ul>
  1109. <a name="ea"></a>
  1110. <h3 class="section">3.8 ea<span class="pull-right"><a class="anchor hidden-xs" href="#ea" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ea" aria-hidden="true">TOC</a></span></h3>
  1111. <p>Electronic Arts Multimedia format demuxer.
  1112. </p>
  1113. <p>This format is used by various Electronic Arts games.
  1114. </p>
  1115. <a name="Options-3"></a>
  1116. <h4 class="subsection">3.8.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-3" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-3" aria-hidden="true">TOC</a></span></h4>
  1117. <dl class="table">
  1118. <dt><samp class="option">merge_alpha <var class="var">bool</var></samp></dt>
  1119. <dd>
  1120. <p>Normally the VP6 alpha channel (if exists) is returned as a secondary video
  1121. stream, by setting this option you can make the demuxer return a single video
  1122. stream which contains the alpha channel in addition to the ordinary video.
  1123. </p>
  1124. </dd>
  1125. </dl>
  1126. <a name="imf"></a>
  1127. <h3 class="section">3.9 imf<span class="pull-right"><a class="anchor hidden-xs" href="#imf" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-imf" aria-hidden="true">TOC</a></span></h3>
  1128. <p>Interoperable Master Format demuxer.
  1129. </p>
  1130. <p>This demuxer presents audio and video streams found in an IMF Composition, as
  1131. specified in <a class="url" href="https://doi.org/10.5594/SMPTE.ST2067-2.2020">SMPTE ST 2067-2</a>.
  1132. </p>
  1133. <div class="example">
  1134. <pre class="example-preformatted">ffmpeg [-assetmaps &lt;path of ASSETMAP1&gt;,&lt;path of ASSETMAP2&gt;,...] -i &lt;path of CPL&gt; ...
  1135. </pre></div>
  1136. <p>If <code class="code">-assetmaps</code> is not specified, the demuxer looks for a file called
  1137. <samp class="file">ASSETMAP.xml</samp> in the same directory as the CPL.
  1138. </p>
  1139. <a name="flv_002c-live_005fflv_002c-kux"></a>
  1140. <h3 class="section">3.10 flv, live_flv, kux<span class="pull-right"><a class="anchor hidden-xs" href="#flv_002c-live_005fflv_002c-kux" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-flv_002c-live_005fflv_002c-kux" aria-hidden="true">TOC</a></span></h3>
  1141. <p>Adobe Flash Video Format demuxer.
  1142. </p>
  1143. <p>This demuxer is used to demux FLV files and RTMP network streams. In case of live network streams, if you force format, you may use live_flv option instead of flv to survive timestamp discontinuities.
  1144. KUX is a flv variant used on the Youku platform.
  1145. </p>
  1146. <div class="example">
  1147. <pre class="example-preformatted">ffmpeg -f flv -i myfile.flv ...
  1148. ffmpeg -f live_flv -i rtmp://&lt;any.server&gt;/anything/key ....
  1149. </pre></div>
  1150. <dl class="table">
  1151. <dt><samp class="option">-flv_metadata <var class="var">bool</var></samp></dt>
  1152. <dd><p>Allocate the streams according to the onMetaData array content.
  1153. </p>
  1154. </dd>
  1155. <dt><samp class="option">-flv_ignore_prevtag <var class="var">bool</var></samp></dt>
  1156. <dd><p>Ignore the size of previous tag value.
  1157. </p>
  1158. </dd>
  1159. <dt><samp class="option">-flv_full_metadata <var class="var">bool</var></samp></dt>
  1160. <dd><p>Output all context of the onMetadata.
  1161. </p></dd>
  1162. </dl>
  1163. <a name="gif-1"></a>
  1164. <h3 class="section">3.11 gif<span class="pull-right"><a class="anchor hidden-xs" href="#gif-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-gif-1" aria-hidden="true">TOC</a></span></h3>
  1165. <p>Animated GIF demuxer.
  1166. </p>
  1167. <p>It accepts the following options:
  1168. </p>
  1169. <dl class="table">
  1170. <dt><samp class="option">min_delay</samp></dt>
  1171. <dd><p>Set the minimum valid delay between frames in hundredths of seconds.
  1172. Range is 0 to 6000. Default value is 2.
  1173. </p>
  1174. </dd>
  1175. <dt><samp class="option">max_gif_delay</samp></dt>
  1176. <dd><p>Set the maximum valid delay between frames in hundredth of seconds.
  1177. Range is 0 to 65535. Default value is 65535 (nearly eleven minutes),
  1178. the maximum value allowed by the specification.
  1179. </p>
  1180. </dd>
  1181. <dt><samp class="option">default_delay</samp></dt>
  1182. <dd><p>Set the default delay between frames in hundredths of seconds.
  1183. Range is 0 to 6000. Default value is 10.
  1184. </p>
  1185. </dd>
  1186. <dt><samp class="option">ignore_loop</samp></dt>
  1187. <dd><p>GIF files can contain information to loop a certain number of times (or
  1188. infinitely). If <samp class="option">ignore_loop</samp> is set to 1, then the loop setting
  1189. from the input will be ignored and looping will not occur. If set to 0,
  1190. then looping will occur and will cycle the number of times according to
  1191. the GIF. Default value is 1.
  1192. </p></dd>
  1193. </dl>
  1194. <p>For example, with the overlay filter, place an infinitely looping GIF
  1195. over another video:
  1196. </p><div class="example">
  1197. <pre class="example-preformatted">ffmpeg -i input.mp4 -ignore_loop 0 -i input.gif -filter_complex overlay=shortest=1 out.mkv
  1198. </pre></div>
  1199. <p>Note that in the above example the shortest option for overlay filter is
  1200. used to end the output video at the length of the shortest input file,
  1201. which in this case is <samp class="file">input.mp4</samp> as the GIF in this example loops
  1202. infinitely.
  1203. </p>
  1204. <a name="hls-1"></a>
  1205. <h3 class="section">3.12 hls<span class="pull-right"><a class="anchor hidden-xs" href="#hls-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-hls-1" aria-hidden="true">TOC</a></span></h3>
  1206. <p>HLS demuxer
  1207. </p>
  1208. <p>Apple HTTP Live Streaming demuxer.
  1209. </p>
  1210. <p>This demuxer presents all AVStreams from all variant streams.
  1211. The id field is set to the bitrate variant index number. By setting
  1212. the discard flags on AVStreams (by pressing &rsquo;a&rsquo; or &rsquo;v&rsquo; in ffplay),
  1213. the caller can decide which variant streams to actually receive.
  1214. The total bitrate of the variant that the stream belongs to is
  1215. available in a metadata key named &quot;variant_bitrate&quot;.
  1216. </p>
  1217. <p>It accepts the following options:
  1218. </p>
  1219. <dl class="table">
  1220. <dt><samp class="option">live_start_index</samp></dt>
  1221. <dd><p>segment index to start live streams at (negative values are from the end).
  1222. </p>
  1223. </dd>
  1224. <dt><samp class="option">prefer_x_start</samp></dt>
  1225. <dd><p>prefer to use #EXT-X-START if it&rsquo;s in playlist instead of live_start_index.
  1226. </p>
  1227. </dd>
  1228. <dt><samp class="option">allowed_extensions</samp></dt>
  1229. <dd><p>&rsquo;,&rsquo; separated list of file extensions that hls is allowed to access.
  1230. </p>
  1231. </dd>
  1232. <dt><samp class="option">extension_picky</samp></dt>
  1233. <dd><p>This blocks disallowed extensions from probing
  1234. It also requires all available segments to have matching extensions to the format
  1235. except mpegts, which is always allowed.
  1236. It is recommended to set the whitelists correctly instead of depending on extensions
  1237. Enabled by default.
  1238. </p>
  1239. </dd>
  1240. <dt><samp class="option">max_reload</samp></dt>
  1241. <dd><p>Maximum number of times a insufficient list is attempted to be reloaded.
  1242. Default value is 1000.
  1243. </p>
  1244. </dd>
  1245. <dt><samp class="option">m3u8_hold_counters</samp></dt>
  1246. <dd><p>The maximum number of times to load m3u8 when it refreshes without new segments.
  1247. Default value is 1000.
  1248. </p>
  1249. </dd>
  1250. <dt><samp class="option">http_persistent</samp></dt>
  1251. <dd><p>Use persistent HTTP connections. Applicable only for HTTP streams.
  1252. Enabled by default.
  1253. </p>
  1254. </dd>
  1255. <dt><samp class="option">http_multiple</samp></dt>
  1256. <dd><p>Use multiple HTTP connections for downloading HTTP segments.
  1257. Enabled by default for HTTP/1.1 servers.
  1258. </p>
  1259. </dd>
  1260. <dt><samp class="option">http_seekable</samp></dt>
  1261. <dd><p>Use HTTP partial requests for downloading HTTP segments.
  1262. 0 = disable, 1 = enable, -1 = auto, Default is auto.
  1263. </p>
  1264. </dd>
  1265. <dt><samp class="option">seg_format_options</samp></dt>
  1266. <dd><p>Set options for the demuxer of media segments using a list of key=value pairs separated by <code class="code">:</code>.
  1267. </p>
  1268. </dd>
  1269. <dt><samp class="option">seg_max_retry</samp></dt>
  1270. <dd><p>Maximum number of times to reload a segment on error, useful when segment skip on network error is not desired.
  1271. Default value is 0.
  1272. </p></dd>
  1273. </dl>
  1274. <a name="image2-1"></a>
  1275. <h3 class="section">3.13 image2<span class="pull-right"><a class="anchor hidden-xs" href="#image2-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-image2-1" aria-hidden="true">TOC</a></span></h3>
  1276. <p>Image file demuxer.
  1277. </p>
  1278. <p>This demuxer reads from a list of image files specified by a pattern.
  1279. The syntax and meaning of the pattern is specified by the
  1280. option <var class="var">pattern_type</var>.
  1281. </p>
  1282. <p>The pattern may contain a suffix which is used to automatically
  1283. determine the format of the images contained in the files.
  1284. </p>
  1285. <p>The size, the pixel format, and the format of each image must be the
  1286. same for all the files in the sequence.
  1287. </p>
  1288. <p>This demuxer accepts the following options:
  1289. </p><dl class="table">
  1290. <dt><samp class="option">framerate</samp></dt>
  1291. <dd><p>Set the frame rate for the video stream. It defaults to 25.
  1292. </p></dd>
  1293. <dt><samp class="option">loop</samp></dt>
  1294. <dd><p>If set to 1, loop over the input. Default value is 0.
  1295. </p></dd>
  1296. <dt><samp class="option">pattern_type</samp></dt>
  1297. <dd><p>Select the pattern type used to interpret the provided filename.
  1298. </p>
  1299. <p><var class="var">pattern_type</var> accepts one of the following values.
  1300. </p><dl class="table">
  1301. <dt><samp class="option">none</samp></dt>
  1302. <dd><p>Disable pattern matching, therefore the video will only contain the specified
  1303. image. You should use this option if you do not want to create sequences from
  1304. multiple images and your filenames may contain special pattern characters.
  1305. </p></dd>
  1306. <dt><samp class="option">sequence</samp></dt>
  1307. <dd><p>Select a sequence pattern type, used to specify a sequence of files
  1308. indexed by sequential numbers.
  1309. </p>
  1310. <p>A sequence pattern may contain the string &quot;%d&quot; or &quot;%0<var class="var">N</var>d&quot;, which
  1311. specifies the position of the characters representing a sequential
  1312. number in each filename matched by the pattern. If the form
  1313. &quot;%d0<var class="var">N</var>d&quot; is used, the string representing the number in each
  1314. filename is 0-padded and <var class="var">N</var> is the total number of 0-padded
  1315. digits representing the number. The literal character &rsquo;%&rsquo; can be
  1316. specified in the pattern with the string &quot;%%&quot;.
  1317. </p>
  1318. <p>If the sequence pattern contains &quot;%d&quot; or &quot;%0<var class="var">N</var>d&quot;, the first filename of
  1319. the file list specified by the pattern must contain a number
  1320. inclusively contained between <var class="var">start_number</var> and
  1321. <var class="var">start_number</var>+<var class="var">start_number_range</var>-1, and all the following
  1322. numbers must be sequential.
  1323. </p>
  1324. <p>For example the pattern &quot;img-%03d.bmp&quot; will match a sequence of
  1325. filenames of the form <samp class="file">img-001.bmp</samp>, <samp class="file">img-002.bmp</samp>, ...,
  1326. <samp class="file">img-010.bmp</samp>, etc.; the pattern &quot;i%%m%%g-%d.jpg&quot; will match a
  1327. sequence of filenames of the form <samp class="file">i%m%g-1.jpg</samp>,
  1328. <samp class="file">i%m%g-2.jpg</samp>, ..., <samp class="file">i%m%g-10.jpg</samp>, etc.
  1329. </p>
  1330. <p>Note that the pattern must not necessarily contain &quot;%d&quot; or
  1331. &quot;%0<var class="var">N</var>d&quot;, for example to convert a single image file
  1332. <samp class="file">img.jpeg</samp> you can employ the command:
  1333. </p><div class="example">
  1334. <pre class="example-preformatted">ffmpeg -i img.jpeg img.png
  1335. </pre></div>
  1336. </dd>
  1337. <dt><samp class="option">glob</samp></dt>
  1338. <dd><p>Select a glob wildcard pattern type.
  1339. </p>
  1340. <p>The pattern is interpreted like a <code class="code">glob()</code> pattern. This is only
  1341. selectable if libavformat was compiled with globbing support.
  1342. </p></dd>
  1343. </dl>
  1344. <p>Default value is <var class="var">sequence</var>.
  1345. </p></dd>
  1346. <dt><samp class="option">pixel_format</samp></dt>
  1347. <dd><p>Set the pixel format of the images to read. If not specified the pixel
  1348. format is guessed from the first image file in the sequence.
  1349. </p></dd>
  1350. <dt><samp class="option">start_number</samp></dt>
  1351. <dd><p>Set the index of the file matched by the image file pattern to start
  1352. to read from. Default value is 0.
  1353. </p></dd>
  1354. <dt><samp class="option">start_number_range</samp></dt>
  1355. <dd><p>Set the index interval range to check when looking for the first image
  1356. file in the sequence, starting from <var class="var">start_number</var>. Default value
  1357. is 5.
  1358. </p></dd>
  1359. <dt><samp class="option">ts_from_file</samp></dt>
  1360. <dd><p>If set to 1, will set frame timestamp to modification time of image file. Note
  1361. that monotonity of timestamps is not provided: images go in the same order as
  1362. without this option. Default value is 0.
  1363. If set to 2, will set frame timestamp to the modification time of the image file in
  1364. nanosecond precision.
  1365. </p></dd>
  1366. <dt><samp class="option">video_size</samp></dt>
  1367. <dd><p>Set the video size of the images to read. If not specified the video
  1368. size is guessed from the first image file in the sequence.
  1369. </p></dd>
  1370. <dt><samp class="option">export_path_metadata</samp></dt>
  1371. <dd><p>If set to 1, will add two extra fields to the metadata found in input, making them
  1372. also available for other filters (see <var class="var">drawtext</var> filter for examples). Default
  1373. value is 0. The extra fields are described below:
  1374. </p><dl class="table">
  1375. <dt><samp class="option">lavf.image2dec.source_path</samp></dt>
  1376. <dd><p>Corresponds to the full path to the input file being read.
  1377. </p></dd>
  1378. <dt><samp class="option">lavf.image2dec.source_basename</samp></dt>
  1379. <dd><p>Corresponds to the name of the file being read.
  1380. </p></dd>
  1381. </dl>
  1382. </dd>
  1383. </dl>
  1384. <a name="Examples-2"></a>
  1385. <h4 class="subsection">3.13.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-2" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-2" aria-hidden="true">TOC</a></span></h4>
  1386. <ul class="itemize mark-bullet">
  1387. <li>Use <code class="command">ffmpeg</code> for creating a video from the images in the file
  1388. sequence <samp class="file">img-001.jpeg</samp>, <samp class="file">img-002.jpeg</samp>, ..., assuming an
  1389. input frame rate of 10 frames per second:
  1390. <div class="example">
  1391. <pre class="example-preformatted">ffmpeg -framerate 10 -i 'img-%03d.jpeg' out.mkv
  1392. </pre></div>
  1393. </li><li>As above, but start by reading from a file with index 100 in the sequence:
  1394. <div class="example">
  1395. <pre class="example-preformatted">ffmpeg -framerate 10 -start_number 100 -i 'img-%03d.jpeg' out.mkv
  1396. </pre></div>
  1397. </li><li>Read images matching the &quot;*.png&quot; glob pattern , that is all the files
  1398. terminating with the &quot;.png&quot; suffix:
  1399. <div class="example">
  1400. <pre class="example-preformatted">ffmpeg -framerate 10 -pattern_type glob -i &quot;*.png&quot; out.mkv
  1401. </pre></div>
  1402. </li></ul>
  1403. <a name="libgme"></a>
  1404. <h3 class="section">3.14 libgme<span class="pull-right"><a class="anchor hidden-xs" href="#libgme" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-libgme" aria-hidden="true">TOC</a></span></h3>
  1405. <p>The Game Music Emu library is a collection of video game music file emulators.
  1406. </p>
  1407. <p>See <a class="url" href="https://bitbucket.org/mpyne/game-music-emu/overview">https://bitbucket.org/mpyne/game-music-emu/overview</a> for more information.
  1408. </p>
  1409. <p>It accepts the following options:
  1410. </p>
  1411. <dl class="table">
  1412. <dt><samp class="option">track_index</samp></dt>
  1413. <dd><p>Set the index of which track to demux. The demuxer can only export one track.
  1414. Track indexes start at 0. Default is to pick the first track. Number of tracks
  1415. is exported as <var class="var">tracks</var> metadata entry.
  1416. </p>
  1417. </dd>
  1418. <dt><samp class="option">sample_rate</samp></dt>
  1419. <dd><p>Set the sampling rate of the exported track. Range is 1000 to 999999. Default is 44100.
  1420. </p>
  1421. </dd>
  1422. <dt><samp class="option">max_size <em class="emph">(bytes)</em></samp></dt>
  1423. <dd><p>The demuxer buffers the entire file into memory. Adjust this value to set the maximum buffer size,
  1424. which in turn, acts as a ceiling for the size of files that can be read.
  1425. Default is 50 MiB.
  1426. </p>
  1427. </dd>
  1428. </dl>
  1429. <a name="libmodplug"></a>
  1430. <h3 class="section">3.15 libmodplug<span class="pull-right"><a class="anchor hidden-xs" href="#libmodplug" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-libmodplug" aria-hidden="true">TOC</a></span></h3>
  1431. <p>ModPlug based module demuxer
  1432. </p>
  1433. <p>See <a class="url" href="https://github.com/Konstanty/libmodplug">https://github.com/Konstanty/libmodplug</a>
  1434. </p>
  1435. <p>It will export one 2-channel 16-bit 44.1 kHz audio stream.
  1436. Optionally, a <code class="code">pal8</code> 16-color video stream can be exported with or without printed metadata.
  1437. </p>
  1438. <p>It accepts the following options:
  1439. </p>
  1440. <dl class="table">
  1441. <dt><samp class="option">noise_reduction</samp></dt>
  1442. <dd><p>Apply a simple low-pass filter. Can be 1 (on) or 0 (off). Default is 0.
  1443. </p>
  1444. </dd>
  1445. <dt><samp class="option">reverb_depth</samp></dt>
  1446. <dd><p>Set amount of reverb. Range 0-100. Default is 0.
  1447. </p>
  1448. </dd>
  1449. <dt><samp class="option">reverb_delay</samp></dt>
  1450. <dd><p>Set delay in ms, clamped to 40-250 ms. Default is 0.
  1451. </p>
  1452. </dd>
  1453. <dt><samp class="option">bass_amount</samp></dt>
  1454. <dd><p>Apply bass expansion a.k.a. XBass or megabass. Range is 0 (quiet) to 100 (loud). Default is 0.
  1455. </p>
  1456. </dd>
  1457. <dt><samp class="option">bass_range</samp></dt>
  1458. <dd><p>Set cutoff i.e. upper-bound for bass frequencies. Range is 10-100 Hz. Default is 0.
  1459. </p>
  1460. </dd>
  1461. <dt><samp class="option">surround_depth</samp></dt>
  1462. <dd><p>Apply a Dolby Pro-Logic surround effect. Range is 0 (quiet) to 100 (heavy). Default is 0.
  1463. </p>
  1464. </dd>
  1465. <dt><samp class="option">surround_delay</samp></dt>
  1466. <dd><p>Set surround delay in ms, clamped to 5-40 ms. Default is 0.
  1467. </p>
  1468. </dd>
  1469. <dt><samp class="option">max_size</samp></dt>
  1470. <dd><p>The demuxer buffers the entire file into memory. Adjust this value to set the maximum buffer size,
  1471. which in turn, acts as a ceiling for the size of files that can be read. Range is 0 to 100 MiB.
  1472. 0 removes buffer size limit (not recommended). Default is 5 MiB.
  1473. </p>
  1474. </dd>
  1475. <dt><samp class="option">video_stream_expr</samp></dt>
  1476. <dd><p>String which is evaluated using the eval API to assign colors to the generated video stream.
  1477. Variables which can be used are <code class="code">x</code>, <code class="code">y</code>, <code class="code">w</code>, <code class="code">h</code>, <code class="code">t</code>, <code class="code">speed</code>,
  1478. <code class="code">tempo</code>, <code class="code">order</code>, <code class="code">pattern</code> and <code class="code">row</code>.
  1479. </p>
  1480. </dd>
  1481. <dt><samp class="option">video_stream</samp></dt>
  1482. <dd><p>Generate video stream. Can be 1 (on) or 0 (off). Default is 0.
  1483. </p>
  1484. </dd>
  1485. <dt><samp class="option">video_stream_w</samp></dt>
  1486. <dd><p>Set video frame width in &rsquo;chars&rsquo; where one char indicates 8 pixels. Range is 20-512. Default is 30.
  1487. </p>
  1488. </dd>
  1489. <dt><samp class="option">video_stream_h</samp></dt>
  1490. <dd><p>Set video frame height in &rsquo;chars&rsquo; where one char indicates 8 pixels. Range is 20-512. Default is 30.
  1491. </p>
  1492. </dd>
  1493. <dt><samp class="option">video_stream_ptxt</samp></dt>
  1494. <dd><p>Print metadata on video stream. Includes <code class="code">speed</code>, <code class="code">tempo</code>, <code class="code">order</code>, <code class="code">pattern</code>,
  1495. <code class="code">row</code> and <code class="code">ts</code> (time in ms). Can be 1 (on) or 0 (off). Default is 1.
  1496. </p>
  1497. </dd>
  1498. </dl>
  1499. <a name="libopenmpt"></a>
  1500. <h3 class="section">3.16 libopenmpt<span class="pull-right"><a class="anchor hidden-xs" href="#libopenmpt" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-libopenmpt" aria-hidden="true">TOC</a></span></h3>
  1501. <p>libopenmpt based module demuxer
  1502. </p>
  1503. <p>See <a class="url" href="https://lib.openmpt.org/libopenmpt/">https://lib.openmpt.org/libopenmpt/</a> for more information.
  1504. </p>
  1505. <p>Some files have multiple subsongs (tracks) this can be set with the <samp class="option">subsong</samp>
  1506. option.
  1507. </p>
  1508. <p>It accepts the following options:
  1509. </p>
  1510. <dl class="table">
  1511. <dt><samp class="option">subsong</samp></dt>
  1512. <dd><p>Set the subsong index. This can be either &rsquo;all&rsquo;, &rsquo;auto&rsquo;, or the index of the
  1513. subsong. Subsong indexes start at 0. The default is &rsquo;auto&rsquo;.
  1514. </p>
  1515. <p>The default value is to let libopenmpt choose.
  1516. </p>
  1517. </dd>
  1518. <dt><samp class="option">layout</samp></dt>
  1519. <dd><p>Set the channel layout. Valid values are 1, 2, and 4 channel layouts.
  1520. The default value is STEREO.
  1521. </p>
  1522. </dd>
  1523. <dt><samp class="option">sample_rate</samp></dt>
  1524. <dd><p>Set the sample rate for libopenmpt to output.
  1525. Range is from 1000 to INT_MAX. The value default is 48000.
  1526. </p></dd>
  1527. </dl>
  1528. <a class="anchor" id="mccdec"></a><a name="mcc"></a>
  1529. <h3 class="section">3.17 mcc<span class="pull-right"><a class="anchor hidden-xs" href="#mcc" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-mcc" aria-hidden="true">TOC</a></span></h3>
  1530. <p>Demuxer for MacCaption MCC files, it supports MCC versions 1.0 and 2.0.
  1531. MCC files store VANC data, which can include closed captions (EIA-608 and CEA-708), ancillary time code, pan-scan data, etc.
  1532. By default, for backward compatibility, the MCC demuxer extracts just the EIA-608 and CEA-708 closed captions and returns a <code class="code">EIA_608</code> stream, ignoring all other VANC data.
  1533. You can change it to return all VANC data in a <code class="code">SMPTE_436M_ANC</code> data stream by setting <samp class="option">-eia608_extract 0</samp>
  1534. </p>
  1535. <a name="Examples-3"></a>
  1536. <h4 class="subsection">3.17.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-3" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-3" aria-hidden="true">TOC</a></span></h4>
  1537. <ul class="itemize mark-bullet">
  1538. <li>Convert a MCC file to Scenarist (SCC) format:
  1539. <div class="example">
  1540. <pre class="example-preformatted">ffmpeg -i CC.mcc -c:s copy CC.scc
  1541. </pre></div>
  1542. <p>Note that the SCC format only supports EIA-608, so this will discard all other data such as CEA-708 extensions.
  1543. </p>
  1544. </li><li>Merge a MCC file into a MXF file:
  1545. <div class="example">
  1546. <pre class="example-preformatted">ffmpeg -i video_and_audio.mxf -eia608_extract 0 -i CC.mcc -c copy -map 0 -map 1 out.mxf
  1547. </pre></div>
  1548. <p>This retains all VANC data and inserts it into the output MXF file as a <code class="code">SMPTE_436M_ANC</code> data stream.
  1549. </p></li></ul>
  1550. <a name="mov_002fmp4_002f3gp"></a>
  1551. <h3 class="section">3.18 mov/mp4/3gp<span class="pull-right"><a class="anchor hidden-xs" href="#mov_002fmp4_002f3gp" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-mov_002fmp4_002f3gp" aria-hidden="true">TOC</a></span></h3>
  1552. <p>Demuxer for Quicktime File Format &amp; ISO/IEC Base Media File Format (ISO/IEC 14496-12 or MPEG-4 Part 12, ISO/IEC 15444-12 or JPEG 2000 Part 12).
  1553. </p>
  1554. <p>Registered extensions: mov, mp4, m4a, 3gp, 3g2, mj2, psp, m4b, ism, ismv, isma, f4v
  1555. </p>
  1556. <a name="Options-4"></a>
  1557. <h4 class="subsection">3.18.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-4" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-4" aria-hidden="true">TOC</a></span></h4>
  1558. <p>This demuxer accepts the following options:
  1559. </p><dl class="table">
  1560. <dt><samp class="option">enable_drefs</samp></dt>
  1561. <dd><p>Enable loading of external tracks, disabled by default.
  1562. Enabling this can theoretically leak information in some use cases.
  1563. </p>
  1564. </dd>
  1565. <dt><samp class="option">use_absolute_path</samp></dt>
  1566. <dd><p>Allows loading of external tracks via absolute paths, disabled by default.
  1567. Enabling this poses a security risk. It should only be enabled if the source
  1568. is known to be non-malicious.
  1569. </p>
  1570. </dd>
  1571. <dt><samp class="option">seek_streams_individually</samp></dt>
  1572. <dd><p>When seeking, identify the closest point in each stream individually and demux packets in
  1573. that stream from identified point. This can lead to a different sequence of packets compared
  1574. to demuxing linearly from the beginning. Default is true.
  1575. </p>
  1576. </dd>
  1577. <dt><samp class="option">ignore_editlist</samp></dt>
  1578. <dd><p>Ignore any edit list atoms. The demuxer, by default, modifies the stream index to reflect the
  1579. timeline described by the edit list. Default is false.
  1580. </p>
  1581. </dd>
  1582. <dt><samp class="option">advanced_editlist</samp></dt>
  1583. <dd><p>Modify the stream index to reflect the timeline described by the edit list. <code class="code">ignore_editlist</code>
  1584. must be set to false for this option to be effective.
  1585. If both <code class="code">ignore_editlist</code> and this option are set to false, then only the
  1586. start of the stream index is modified to reflect initial dwell time or starting timestamp
  1587. described by the edit list. Default is true.
  1588. </p>
  1589. </dd>
  1590. <dt><samp class="option">ignore_chapters</samp></dt>
  1591. <dd><p>Don&rsquo;t parse chapters. This includes GoPro &rsquo;HiLight&rsquo; tags/moments. Note that chapters are
  1592. only parsed when input is seekable. Default is false.
  1593. </p>
  1594. </dd>
  1595. <dt><samp class="option">use_mfra_for</samp></dt>
  1596. <dd><p>For seekable fragmented input, set fragment&rsquo;s starting timestamp from media fragment random access box, if present.
  1597. </p>
  1598. <p>Following options are available:
  1599. </p><dl class="table">
  1600. <dt>&lsquo;<samp class="samp">auto</samp>&rsquo;</dt>
  1601. <dd><p>Auto-detect whether to set mfra timestamps as PTS or DTS <em class="emph">(default)</em>
  1602. </p>
  1603. </dd>
  1604. <dt>&lsquo;<samp class="samp">dts</samp>&rsquo;</dt>
  1605. <dd><p>Set mfra timestamps as DTS
  1606. </p>
  1607. </dd>
  1608. <dt>&lsquo;<samp class="samp">pts</samp>&rsquo;</dt>
  1609. <dd><p>Set mfra timestamps as PTS
  1610. </p>
  1611. </dd>
  1612. <dt>&lsquo;<samp class="samp">0</samp>&rsquo;</dt>
  1613. <dd><p>Don&rsquo;t use mfra box to set timestamps
  1614. </p></dd>
  1615. </dl>
  1616. </dd>
  1617. <dt><samp class="option">use_tfdt</samp></dt>
  1618. <dd><p>For fragmented input, set fragment&rsquo;s starting timestamp to <code class="code">baseMediaDecodeTime</code> from the <code class="code">tfdt</code> box.
  1619. Default is enabled, which will prefer to use the <code class="code">tfdt</code> box to set DTS. Disable to use the <code class="code">earliest_presentation_time</code> from the <code class="code">sidx</code> box.
  1620. In either case, the timestamp from the <code class="code">mfra</code> box will be used if it&rsquo;s available and <code class="code">use_mfra_for</code> is
  1621. set to pts or dts.
  1622. </p>
  1623. </dd>
  1624. <dt><samp class="option">export_all</samp></dt>
  1625. <dd><p>Export unrecognized boxes within the <var class="var">udta</var> box as metadata entries. The first four
  1626. characters of the box type are set as the key. Default is false.
  1627. </p>
  1628. </dd>
  1629. <dt><samp class="option">export_xmp</samp></dt>
  1630. <dd><p>Export entire contents of <var class="var">XMP_</var> box and <var class="var">uuid</var> box as a string with key <code class="code">xmp</code>. Note that
  1631. if <code class="code">export_all</code> is set and this option isn&rsquo;t, the contents of <var class="var">XMP_</var> box are still exported
  1632. but with key <code class="code">XMP_</code>. Default is false.
  1633. </p>
  1634. </dd>
  1635. <dt><samp class="option">activation_bytes</samp></dt>
  1636. <dd><p>4-byte key required to decrypt Audible AAX and AAX+ files. See Audible AAX subsection below.
  1637. </p>
  1638. </dd>
  1639. <dt><samp class="option">audible_fixed_key</samp></dt>
  1640. <dd><p>Fixed key used for handling Audible AAX/AAX+ files. It has been pre-set so should not be necessary to
  1641. specify.
  1642. </p>
  1643. </dd>
  1644. <dt><samp class="option">decryption_key</samp></dt>
  1645. <dd><p>16-byte key, in hex, to decrypt files encrypted using ISO Common Encryption (CENC/AES-128 CTR; ISO/IEC 23001-7).
  1646. </p>
  1647. </dd>
  1648. <dt><samp class="option">max_stts_delta</samp></dt>
  1649. <dd><p>Very high sample deltas written in a trak&rsquo;s stts box may occasionally be intended but usually they are written in
  1650. error or used to store a negative value for dts correction when treated as signed 32-bit integers. This option lets
  1651. the user set an upper limit, beyond which the delta is clamped to 1. Values greater than the limit if negative when
  1652. cast to int32 are used to adjust onward dts.
  1653. </p>
  1654. <p>Unit is the track time scale. Range is 0 to UINT_MAX. Default is <code class="code">UINT_MAX - 48000*10</code> which allows up to
  1655. a 10 second dts correction for 48 kHz audio streams while accommodating 99.9% of <code class="code">uint32</code> range.
  1656. </p>
  1657. </dd>
  1658. <dt><samp class="option">interleaved_read</samp></dt>
  1659. <dd><p>Interleave packets from multiple tracks at demuxer level. For badly interleaved files, this prevents playback issues
  1660. caused by large gaps between packets in different tracks, as MOV/MP4 do not have packet placement requirements.
  1661. However, this can cause excessive seeking on very badly interleaved files, due to seeking between tracks, so disabling
  1662. it may prevent I/O issues, at the expense of playback.
  1663. </p>
  1664. </dd>
  1665. </dl>
  1666. <a name="Audible-AAX"></a>
  1667. <h4 class="subsection">3.18.2 Audible AAX<span class="pull-right"><a class="anchor hidden-xs" href="#Audible-AAX" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Audible-AAX" aria-hidden="true">TOC</a></span></h4>
  1668. <p>Audible AAX files are encrypted M4B files, and they can be decrypted by specifying a 4 byte activation secret.
  1669. </p><div class="example">
  1670. <pre class="example-preformatted">ffmpeg -activation_bytes 1CEB00DA -i test.aax -vn -c:a copy output.mp4
  1671. </pre></div>
  1672. <a name="mpegts"></a>
  1673. <h3 class="section">3.19 mpegts<span class="pull-right"><a class="anchor hidden-xs" href="#mpegts" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-mpegts" aria-hidden="true">TOC</a></span></h3>
  1674. <p>MPEG-2 transport stream demuxer.
  1675. </p>
  1676. <p>This demuxer accepts the following options:
  1677. </p><dl class="table">
  1678. <dt><samp class="option">resync_size</samp></dt>
  1679. <dd><p>Set size limit for looking up a new synchronization. Default value is
  1680. 65536.
  1681. </p>
  1682. </dd>
  1683. <dt><samp class="option">skip_unknown_pmt</samp></dt>
  1684. <dd><p>Skip PMTs for programs not defined in the PAT. Default value is 0.
  1685. </p>
  1686. </dd>
  1687. <dt><samp class="option">fix_teletext_pts</samp></dt>
  1688. <dd><p>Override teletext packet PTS and DTS values with the timestamps calculated
  1689. from the PCR of the first program which the teletext stream is part of and is
  1690. not discarded. Default value is 1, set this option to 0 if you want your
  1691. teletext packet PTS and DTS values untouched.
  1692. </p>
  1693. </dd>
  1694. <dt><samp class="option">ts_packetsize</samp></dt>
  1695. <dd><p>Output option carrying the raw packet size in bytes.
  1696. Show the detected raw packet size, cannot be set by the user.
  1697. </p>
  1698. </dd>
  1699. <dt><samp class="option">scan_all_pmts</samp></dt>
  1700. <dd><p>Scan and combine all PMTs. The value is an integer with value from -1
  1701. to 1 (-1 means automatic setting, 1 means enabled, 0 means
  1702. disabled). Default value is -1.
  1703. </p>
  1704. </dd>
  1705. <dt><samp class="option">merge_pmt_versions</samp></dt>
  1706. <dd><p>Reuse existing streams when a PMT&rsquo;s version is updated and elementary
  1707. streams move to different PIDs. Default value is 0.
  1708. </p>
  1709. </dd>
  1710. <dt><samp class="option">max_packet_size</samp></dt>
  1711. <dd><p>Set maximum size, in bytes, of packet emitted by the demuxer. Payloads above this size
  1712. are split across multiple packets. Range is 1 to INT_MAX/2. Default is 204800 bytes.
  1713. </p></dd>
  1714. </dl>
  1715. <a name="mpjpeg"></a>
  1716. <h3 class="section">3.20 mpjpeg<span class="pull-right"><a class="anchor hidden-xs" href="#mpjpeg" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-mpjpeg" aria-hidden="true">TOC</a></span></h3>
  1717. <p>MJPEG encapsulated in multi-part MIME demuxer.
  1718. </p>
  1719. <p>This demuxer allows reading of MJPEG, where each frame is represented as a part of
  1720. multipart/x-mixed-replace stream.
  1721. </p><dl class="table">
  1722. <dt><samp class="option">strict_mime_boundary</samp></dt>
  1723. <dd><p>Default implementation applies a relaxed standard to multi-part MIME boundary detection,
  1724. to prevent regression with numerous existing endpoints not generating a proper MIME
  1725. MJPEG stream. Turning this option on by setting it to 1 will result in a stricter check
  1726. of the boundary value.
  1727. </p></dd>
  1728. </dl>
  1729. <a name="rawvideo"></a>
  1730. <h3 class="section">3.21 rawvideo<span class="pull-right"><a class="anchor hidden-xs" href="#rawvideo" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-rawvideo" aria-hidden="true">TOC</a></span></h3>
  1731. <p>Raw video demuxer.
  1732. </p>
  1733. <p>This demuxer allows one to read raw video data. Since there is no header
  1734. specifying the assumed video parameters, the user must specify them
  1735. in order to be able to decode the data correctly.
  1736. </p>
  1737. <p>This demuxer accepts the following options:
  1738. </p><dl class="table">
  1739. <dt><samp class="option">framerate</samp></dt>
  1740. <dd><p>Set input video frame rate. Default value is 25.
  1741. </p>
  1742. </dd>
  1743. <dt><samp class="option">pixel_format</samp></dt>
  1744. <dd><p>Set the input video pixel format. Default value is <code class="code">yuv420p</code>.
  1745. </p>
  1746. </dd>
  1747. <dt><samp class="option">stride</samp></dt>
  1748. <dd><p>Set frame line size in bytes, only required if there are extra padding.
  1749. For multiplane formats, <samp class="option">stride</samp> is a list of line size for each
  1750. plane.
  1751. </p>
  1752. </dd>
  1753. <dt><samp class="option">video_size</samp></dt>
  1754. <dd><p>Set the input video size. This value must be specified explicitly.
  1755. </p></dd>
  1756. </dl>
  1757. <p>For example to read a rawvideo file <samp class="file">input.raw</samp> with
  1758. <code class="command">ffplay</code>, assuming a pixel format of <code class="code">rgb24</code>, a video
  1759. size of <code class="code">320x240</code>, and a frame rate of 10 images per second, use
  1760. the command:
  1761. </p><div class="example">
  1762. <pre class="example-preformatted">ffplay -f rawvideo -pixel_format rgb24 -video_size 320x240 -framerate 10 input.raw
  1763. </pre></div>
  1764. <p>Read a rawvideo with <code class="command">ffplay</code>, assuming a pixel format of <code class="code">yuv420p</code>,
  1765. a video size of <code class="code">1080x1920</code>, has 8 bytes of padding in each line of Y plane,
  1766. and 4 bytes of padding with UV plane,
  1767. </p><div class="example">
  1768. <pre class="example-preformatted">ffplay -f rawvideo -pixel_format yuv420p -video_size 1080x1920 -stride 1088,544,544 input.raw
  1769. </pre></div>
  1770. <a class="anchor" id="rcwtdec"></a><a name="rcwt"></a>
  1771. <h3 class="section">3.22 rcwt<span class="pull-right"><a class="anchor hidden-xs" href="#rcwt" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-rcwt" aria-hidden="true">TOC</a></span></h3>
  1772. <p>RCWT (Raw Captions With Time) is a format native to ccextractor, a commonly
  1773. used open source tool for processing 608/708 Closed Captions (CC) sources.
  1774. For more information on the format, see <a data-manual="ffmpeg-formats" href="ffmpeg-formats.html#rcwtenc">(ffmpeg-formats)rcwtenc</a>.
  1775. </p>
  1776. <p>This demuxer implements the specification as of March 2024, which has
  1777. been stable and unchanged since April 2014.
  1778. </p>
  1779. <a name="Examples-4"></a>
  1780. <h4 class="subsection">3.22.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-4" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-4" aria-hidden="true">TOC</a></span></h4>
  1781. <ul class="itemize mark-bullet">
  1782. <li>Render CC to ASS using the built-in decoder:
  1783. <div class="example">
  1784. <pre class="example-preformatted">ffmpeg -i CC.rcwt.bin CC.ass
  1785. </pre></div>
  1786. <p>Note that if your output appears to be empty, you may have to manually
  1787. set the decoder&rsquo;s <samp class="option">data_field</samp> option to pick the desired CC substream.
  1788. </p>
  1789. </li><li>Convert an RCWT backup to Scenarist (SCC) format:
  1790. <div class="example">
  1791. <pre class="example-preformatted">ffmpeg -i CC.rcwt.bin -c:s copy CC.scc
  1792. </pre></div>
  1793. <p>Note that the SCC format does not support all of the possible CC extensions
  1794. that can be stored in RCWT (such as EIA-708).
  1795. </p></li></ul>
  1796. <a name="sbg"></a>
  1797. <h3 class="section">3.23 sbg<span class="pull-right"><a class="anchor hidden-xs" href="#sbg" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-sbg" aria-hidden="true">TOC</a></span></h3>
  1798. <p>SBaGen script demuxer.
  1799. </p>
  1800. <p>This demuxer reads the script language used by SBaGen
  1801. <a class="url" href="http://uazu.net/sbagen/">http://uazu.net/sbagen/</a> to generate binaural beats sessions. A SBG
  1802. script looks like that:
  1803. </p><div class="example">
  1804. <pre class="example-preformatted">-SE
  1805. a: 300-2.5/3 440+4.5/0
  1806. b: 300-2.5/0 440+4.5/3
  1807. off: -
  1808. NOW == a
  1809. +0:07:00 == b
  1810. +0:14:00 == a
  1811. +0:21:00 == b
  1812. +0:30:00 off
  1813. </pre></div>
  1814. <p>A SBG script can mix absolute and relative timestamps. If the script uses
  1815. either only absolute timestamps (including the script start time) or only
  1816. relative ones, then its layout is fixed, and the conversion is
  1817. straightforward. On the other hand, if the script mixes both kind of
  1818. timestamps, then the <var class="var">NOW</var> reference for relative timestamps will be
  1819. taken from the current time of day at the time the script is read, and the
  1820. script layout will be frozen according to that reference. That means that if
  1821. the script is directly played, the actual times will match the absolute
  1822. timestamps up to the sound controller&rsquo;s clock accuracy, but if the user
  1823. somehow pauses the playback or seeks, all times will be shifted accordingly.
  1824. </p>
  1825. <a name="tedcaptions"></a>
  1826. <h3 class="section">3.24 tedcaptions<span class="pull-right"><a class="anchor hidden-xs" href="#tedcaptions" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-tedcaptions" aria-hidden="true">TOC</a></span></h3>
  1827. <p>JSON captions used for <a class="url" href="http://www.ted.com/">TED Talks</a>.
  1828. </p>
  1829. <p>TED does not provide links to the captions, but they can be guessed from the
  1830. page. The file <samp class="file">tools/bookmarklets.html</samp> from the FFmpeg source tree
  1831. contains a bookmarklet to expose them.
  1832. </p>
  1833. <p>This demuxer accepts the following option:
  1834. </p><dl class="table">
  1835. <dt><samp class="option">start_time</samp></dt>
  1836. <dd><p>Set the start time of the TED talk, in milliseconds. The default is 15000
  1837. (15s). It is used to sync the captions with the downloadable videos, because
  1838. they include a 15s intro.
  1839. </p></dd>
  1840. </dl>
  1841. <p>Example: convert the captions to a format most players understand:
  1842. </p><div class="example">
  1843. <pre class="example-preformatted">ffmpeg -i http://www.ted.com/talks/subtitles/id/1/lang/en talk1-en.srt
  1844. </pre></div>
  1845. <a name="vapoursynth"></a>
  1846. <h3 class="section">3.25 vapoursynth<span class="pull-right"><a class="anchor hidden-xs" href="#vapoursynth" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-vapoursynth" aria-hidden="true">TOC</a></span></h3>
  1847. <p>Vapoursynth wrapper.
  1848. </p>
  1849. <p>Due to security concerns, Vapoursynth scripts will not
  1850. be autodetected so the input format has to be forced. For ff* CLI tools,
  1851. add <code class="code">-f vapoursynth</code> before the input <code class="code">-i yourscript.vpy</code>.
  1852. </p>
  1853. <p>This demuxer accepts the following option:
  1854. </p><dl class="table">
  1855. <dt><samp class="option">max_script_size</samp></dt>
  1856. <dd><p>The demuxer buffers the entire script into memory. Adjust this value to set the maximum buffer size,
  1857. which in turn, acts as a ceiling for the size of scripts that can be read.
  1858. Default is 1 MiB.
  1859. </p></dd>
  1860. </dl>
  1861. <a name="w64"></a>
  1862. <h3 class="section">3.26 w64<span class="pull-right"><a class="anchor hidden-xs" href="#w64" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-w64" aria-hidden="true">TOC</a></span></h3>
  1863. <p>Sony Wave64 Audio demuxer.
  1864. </p>
  1865. <p>This demuxer accepts the following options:
  1866. </p><dl class="table">
  1867. <dt><samp class="option">max_size</samp></dt>
  1868. <dd><p>See the same option for the <a class="ref" href="#wav">wav</a> demuxer.
  1869. </p></dd>
  1870. </dl>
  1871. <a class="anchor" id="wav"></a><a name="wav-1"></a>
  1872. <h3 class="section">3.27 wav<span class="pull-right"><a class="anchor hidden-xs" href="#wav-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-wav-1" aria-hidden="true">TOC</a></span></h3>
  1873. <p>RIFF Wave Audio demuxer.
  1874. </p>
  1875. <p>This demuxer accepts the following options:
  1876. </p><dl class="table">
  1877. <dt><samp class="option">max_size</samp></dt>
  1878. <dd><p>Specify the maximum packet size in bytes for the demuxed packets. By default
  1879. this is set to 0, which means that a sensible value is chosen based on the
  1880. input format.
  1881. </p></dd>
  1882. </dl>
  1883. <a name="Muxers"></a>
  1884. <h2 class="chapter">4 Muxers<span class="pull-right"><a class="anchor hidden-xs" href="#Muxers" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Muxers" aria-hidden="true">TOC</a></span></h2>
  1885. <p>Muxers are configured elements in FFmpeg which allow writing
  1886. multimedia streams to a particular type of file.
  1887. </p>
  1888. <p>When you configure your FFmpeg build, all the supported muxers
  1889. are enabled by default. You can list all available muxers using the
  1890. configure option <code class="code">--list-muxers</code>.
  1891. </p>
  1892. <p>You can disable all the muxers with the configure option
  1893. <code class="code">--disable-muxers</code> and selectively enable / disable single muxers
  1894. with the options <code class="code">--enable-muxer=<var class="var">MUXER</var></code> /
  1895. <code class="code">--disable-muxer=<var class="var">MUXER</var></code>.
  1896. </p>
  1897. <p>The option <code class="code">-muxers</code> of the ff* tools will display the list of
  1898. enabled muxers. Use <code class="code">-formats</code> to view a combined list of
  1899. enabled demuxers and muxers.
  1900. </p>
  1901. <p>A description of some of the currently available muxers follows.
  1902. </p>
  1903. <a class="anchor" id="raw-muxers"></a><a name="Raw-muxers"></a>
  1904. <h3 class="section">4.1 Raw muxers<span class="pull-right"><a class="anchor hidden-xs" href="#Raw-muxers" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Raw-muxers" aria-hidden="true">TOC</a></span></h3>
  1905. <p>This section covers raw muxers. They accept a single stream matching
  1906. the designated codec. They do not store timestamps or metadata. The
  1907. recognized extension is the same as the muxer name unless indicated
  1908. otherwise.
  1909. </p>
  1910. <p>It comprises the following muxers. The media type and the eventual
  1911. extensions used to automatically selects the muxer from the output
  1912. extensions are also shown.
  1913. </p>
  1914. <dl class="table">
  1915. <dt>&lsquo;<samp class="samp">ac3 <em class="emph">audio</em></samp>&rsquo;</dt>
  1916. <dd><p>Dolby Digital, also known as AC-3.
  1917. </p>
  1918. </dd>
  1919. <dt>&lsquo;<samp class="samp">adx <em class="emph">audio</em></samp>&rsquo;</dt>
  1920. <dd><p>CRI Middleware ADX audio.
  1921. </p>
  1922. <p>This muxer will write out the total sample count near the start of the
  1923. first packet when the output is seekable and the count can be stored
  1924. in 32 bits.
  1925. </p>
  1926. </dd>
  1927. <dt>&lsquo;<samp class="samp">aptx <em class="emph">audio</em></samp>&rsquo;</dt>
  1928. <dd><p>aptX (Audio Processing Technology for Bluetooth)
  1929. </p>
  1930. </dd>
  1931. <dt>&lsquo;<samp class="samp">aptx_hd <em class="emph">audio</em> (aptxdh)</samp>&rsquo;</dt>
  1932. <dd><p>aptX HD (Audio Processing Technology for Bluetooth) audio
  1933. </p>
  1934. </dd>
  1935. <dt>&lsquo;<samp class="samp">avs2 <em class="emph">video</em> (avs, avs2)</samp>&rsquo;</dt>
  1936. <dd><p>AVS2-P2 (Audio Video Standard - Second generation - Part 2) /
  1937. IEEE 1857.4 video
  1938. </p>
  1939. </dd>
  1940. <dt>&lsquo;<samp class="samp">avs3 <em class="emph">video</em> (avs3)</samp>&rsquo;</dt>
  1941. <dd><p>AVS3-P2 (Audio Video Standard - Third generation - Part 2) /
  1942. IEEE 1857.10 video
  1943. </p>
  1944. </dd>
  1945. <dt>&lsquo;<samp class="samp">cavsvideo <em class="emph">video</em> (cavs)</samp>&rsquo;</dt>
  1946. <dd><p>Chinese AVS (Audio Video Standard - First generation)
  1947. </p>
  1948. </dd>
  1949. <dt>&lsquo;<samp class="samp">codec2raw <em class="emph">audio</em></samp>&rsquo;</dt>
  1950. <dd><p>Codec 2 audio.
  1951. </p>
  1952. <p>No extension is registered so format name has to be supplied e.g. with
  1953. the ffmpeg CLI tool <code class="code">-f codec2raw</code>.
  1954. </p>
  1955. </dd>
  1956. <dt>&lsquo;<samp class="samp">data <em class="emph">any</em></samp>&rsquo;</dt>
  1957. <dd><p>Generic data muxer.
  1958. </p>
  1959. <p>This muxer accepts a single stream with any codec of any type. The
  1960. input stream has to be selected using the <code class="code">-map</code> option with the
  1961. <code class="command">ffmpeg</code> CLI tool.
  1962. </p>
  1963. <p>No extension is registered so format name has to be supplied e.g. with
  1964. the <code class="command">ffmpeg</code> CLI tool <code class="code">-f data</code>.
  1965. </p>
  1966. </dd>
  1967. <dt>&lsquo;<samp class="samp">dfpwm <em class="emph">audio</em> (dfpwm)</samp>&rsquo;</dt>
  1968. <dd><p>Raw DFPWM1a (Dynamic Filter Pulse With Modulation) audio muxer.
  1969. </p>
  1970. </dd>
  1971. <dt>&lsquo;<samp class="samp">dirac <em class="emph">video</em> (drc, vc2)</samp>&rsquo;</dt>
  1972. <dd><p>BBC Dirac video.
  1973. </p>
  1974. <p>The Dirac Pro codec is a subset and is standardized as SMPTE VC-2.
  1975. </p>
  1976. </dd>
  1977. <dt>&lsquo;<samp class="samp">dnxhd <em class="emph">video</em> (dnxhd, dnxhr)</samp>&rsquo;</dt>
  1978. <dd><p>Avid DNxHD video.
  1979. </p>
  1980. <p>It is standardized as SMPTE VC-3. Accepts DNxHR streams.
  1981. </p>
  1982. </dd>
  1983. <dt>&lsquo;<samp class="samp">dts <em class="emph">audio</em></samp>&rsquo;</dt>
  1984. <dd><p>DTS Coherent Acoustics (DCA) audio
  1985. </p>
  1986. </dd>
  1987. <dt>&lsquo;<samp class="samp">eac3 <em class="emph">audio</em></samp>&rsquo;</dt>
  1988. <dd><p>Dolby Digital Plus, also known as Enhanced AC-3
  1989. </p>
  1990. </dd>
  1991. <dt>&lsquo;<samp class="samp">evc <em class="emph">video</em> (evc)</samp>&rsquo;</dt>
  1992. <dd><p>MPEG-5 Essential Video Coding (EVC) / EVC / MPEG-5 Part 1 EVC video
  1993. </p>
  1994. </dd>
  1995. <dt>&lsquo;<samp class="samp">g722 <em class="emph">audio</em></samp>&rsquo;</dt>
  1996. <dd><p>ITU-T G.722 audio
  1997. </p>
  1998. </dd>
  1999. <dt>&lsquo;<samp class="samp">g723_1 <em class="emph">audio</em> (tco, rco)</samp>&rsquo;</dt>
  2000. <dd><p>ITU-T G.723.1 audio
  2001. </p>
  2002. </dd>
  2003. <dt>&lsquo;<samp class="samp">g726 <em class="emph">audio</em></samp>&rsquo;</dt>
  2004. <dd><p>ITU-T G.726 big-endian (&quot;left-justified&quot;) audio.
  2005. </p>
  2006. <p>No extension is registered so format name has to be supplied e.g. with
  2007. the <code class="command">ffmpeg</code> CLI tool <code class="code">-f g726</code>.
  2008. </p>
  2009. </dd>
  2010. <dt>&lsquo;<samp class="samp">g726le <em class="emph">audio</em></samp>&rsquo;</dt>
  2011. <dd><p>ITU-T G.726 little-endian (&quot;right-justified&quot;) audio.
  2012. </p>
  2013. <p>No extension is registered so format name has to be supplied e.g. with
  2014. the <code class="command">ffmpeg</code> CLI tool <code class="code">-f g726le</code>.
  2015. </p>
  2016. </dd>
  2017. <dt>&lsquo;<samp class="samp">gsm <em class="emph">audio</em></samp>&rsquo;</dt>
  2018. <dd><p>Global System for Mobile Communications audio
  2019. </p>
  2020. </dd>
  2021. <dt>&lsquo;<samp class="samp">h261 <em class="emph">video</em></samp>&rsquo;</dt>
  2022. <dd><p>ITU-T H.261 video
  2023. </p>
  2024. </dd>
  2025. <dt>&lsquo;<samp class="samp">h263 <em class="emph">video</em></samp>&rsquo;</dt>
  2026. <dd><p>ITU-T H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2 video
  2027. </p>
  2028. </dd>
  2029. <dt>&lsquo;<samp class="samp">h264 <em class="emph">video</em> (h264, 264)</samp>&rsquo;</dt>
  2030. <dd><p>ITU-T H.264 / MPEG-4 Part 10 AVC video. Bitstream shall be converted
  2031. to Annex B syntax if it&rsquo;s in length-prefixed mode.
  2032. </p>
  2033. </dd>
  2034. <dt>&lsquo;<samp class="samp">hevc <em class="emph">video</em> (hevc, h265, 265)</samp>&rsquo;</dt>
  2035. <dd><p>ITU-T H.265 / MPEG-H Part 2 HEVC video. Bitstream shall be converted
  2036. to Annex B syntax if it&rsquo;s in length-prefixed mode.
  2037. </p>
  2038. </dd>
  2039. <dt>&lsquo;<samp class="samp">m4v <em class="emph">video</em></samp>&rsquo;</dt>
  2040. <dd><p>MPEG-4 Part 2 video
  2041. </p>
  2042. </dd>
  2043. <dt>&lsquo;<samp class="samp">mjpeg <em class="emph">video</em> (mjpg, mjpeg)</samp>&rsquo;</dt>
  2044. <dd><p>Motion JPEG video
  2045. </p>
  2046. </dd>
  2047. <dt>&lsquo;<samp class="samp">mlp <em class="emph">audio</em></samp>&rsquo;</dt>
  2048. <dd><p>Meridian Lossless Packing, also known as Packed PCM
  2049. </p>
  2050. </dd>
  2051. <dt>&lsquo;<samp class="samp">mp2 <em class="emph">audio</em> (mp2, m2a, mpa)</samp>&rsquo;</dt>
  2052. <dd><p>MPEG-1 Audio Layer II audio
  2053. </p>
  2054. </dd>
  2055. <dt>&lsquo;<samp class="samp">mpeg1video <em class="emph">video</em> (mpg, mpeg, m1v)</samp>&rsquo;</dt>
  2056. <dd><p>MPEG-1 Part 2 video.
  2057. </p>
  2058. </dd>
  2059. <dt>&lsquo;<samp class="samp">mpeg2video <em class="emph">video</em> (m2v)</samp>&rsquo;</dt>
  2060. <dd><p>ITU-T H.262 / MPEG-2 Part 2 video
  2061. </p>
  2062. </dd>
  2063. <dt>&lsquo;<samp class="samp">obu <em class="emph">video</em></samp>&rsquo;</dt>
  2064. <dd><p>AV1 low overhead Open Bitstream Units muxer.
  2065. </p>
  2066. <p>Temporal delimiter OBUs will be inserted in all temporal units of the
  2067. stream.
  2068. </p>
  2069. </dd>
  2070. <dt>&lsquo;<samp class="samp">rawvideo <em class="emph">video</em> (yuv, rgb)</samp>&rsquo;</dt>
  2071. <dd><p>Raw uncompressed video.
  2072. </p>
  2073. </dd>
  2074. <dt>&lsquo;<samp class="samp">sbc <em class="emph">audio</em> (sbc, msbc)</samp>&rsquo;</dt>
  2075. <dd><p>Bluetooth SIG low-complexity subband codec audio
  2076. </p>
  2077. </dd>
  2078. <dt>&lsquo;<samp class="samp">truehd <em class="emph">audio</em> (thd)</samp>&rsquo;</dt>
  2079. <dd><p>Dolby TrueHD audio
  2080. </p>
  2081. </dd>
  2082. <dt>&lsquo;<samp class="samp">vc1 <em class="emph">video</em></samp>&rsquo;</dt>
  2083. <dd><p>SMPTE 421M / VC-1 video
  2084. </p></dd>
  2085. </dl>
  2086. <a name="Examples-5"></a>
  2087. <h4 class="subsection">4.1.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-5" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-5" aria-hidden="true">TOC</a></span></h4>
  2088. <ul class="itemize mark-bullet">
  2089. <li>Store raw video frames with the &lsquo;<samp class="samp">rawvideo</samp>&rsquo; muxer using <code class="command">ffmpeg</code>:
  2090. <div class="example">
  2091. <pre class="example-preformatted">ffmpeg -f lavfi -i testsrc -t 10 -s hd1080p testsrc.yuv
  2092. </pre></div>
  2093. <p>Since the rawvideo muxer do not store the information related to size
  2094. and format, this information must be provided when demuxing the file:
  2095. </p><div class="example">
  2096. <pre class="example-preformatted">ffplay -video_size 1920x1080 -pixel_format rgb24 -f rawvideo testsrc.rgb
  2097. </pre></div>
  2098. </li></ul>
  2099. <a name="Raw-PCM-muxers"></a>
  2100. <h3 class="section">4.2 Raw PCM muxers<span class="pull-right"><a class="anchor hidden-xs" href="#Raw-PCM-muxers" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Raw-PCM-muxers" aria-hidden="true">TOC</a></span></h3>
  2101. <p>This section covers raw PCM (Pulse-Code Modulation) audio muxers.
  2102. </p>
  2103. <p>They accept a single stream matching the designated codec. They do not
  2104. store timestamps or metadata. The recognized extension is the same as
  2105. the muxer name.
  2106. </p>
  2107. <p>It comprises the following muxers. The optional additional extension
  2108. used to automatically select the muxer from the output extension is
  2109. also shown in parentheses.
  2110. </p>
  2111. <dl class="table">
  2112. <dt>&lsquo;<samp class="samp">alaw (al)</samp>&rsquo;</dt>
  2113. <dd><p>PCM A-law
  2114. </p>
  2115. </dd>
  2116. <dt>&lsquo;<samp class="samp">f32be</samp>&rsquo;</dt>
  2117. <dd><p>PCM 32-bit floating-point big-endian
  2118. </p>
  2119. </dd>
  2120. <dt>&lsquo;<samp class="samp">f32le</samp>&rsquo;</dt>
  2121. <dd><p>PCM 32-bit floating-point little-endian
  2122. </p>
  2123. </dd>
  2124. <dt>&lsquo;<samp class="samp">f64be</samp>&rsquo;</dt>
  2125. <dd><p>PCM 64-bit floating-point big-endian
  2126. </p>
  2127. </dd>
  2128. <dt>&lsquo;<samp class="samp">f64le</samp>&rsquo;</dt>
  2129. <dd><p>PCM 64-bit floating-point little-endian
  2130. </p>
  2131. </dd>
  2132. <dt>&lsquo;<samp class="samp">mulaw (ul)</samp>&rsquo;</dt>
  2133. <dd><p>PCM mu-law
  2134. </p>
  2135. </dd>
  2136. <dt>&lsquo;<samp class="samp">s16be</samp>&rsquo;</dt>
  2137. <dd><p>PCM signed 16-bit big-endian
  2138. </p>
  2139. </dd>
  2140. <dt>&lsquo;<samp class="samp">s16le</samp>&rsquo;</dt>
  2141. <dd><p>PCM signed 16-bit little-endian
  2142. </p>
  2143. </dd>
  2144. <dt>&lsquo;<samp class="samp">s24be</samp>&rsquo;</dt>
  2145. <dd><p>PCM signed 24-bit big-endian
  2146. </p>
  2147. </dd>
  2148. <dt>&lsquo;<samp class="samp">s24le</samp>&rsquo;</dt>
  2149. <dd><p>PCM signed 24-bit little-endian
  2150. </p>
  2151. </dd>
  2152. <dt>&lsquo;<samp class="samp">s32be</samp>&rsquo;</dt>
  2153. <dd><p>PCM signed 32-bit big-endian
  2154. </p>
  2155. </dd>
  2156. <dt>&lsquo;<samp class="samp">s32le</samp>&rsquo;</dt>
  2157. <dd><p>PCM signed 32-bit little-endian
  2158. </p>
  2159. </dd>
  2160. <dt>&lsquo;<samp class="samp">s8 (sb)</samp>&rsquo;</dt>
  2161. <dd><p>PCM signed 8-bit
  2162. </p>
  2163. </dd>
  2164. <dt>&lsquo;<samp class="samp">u16be</samp>&rsquo;</dt>
  2165. <dd><p>PCM unsigned 16-bit big-endian
  2166. </p>
  2167. </dd>
  2168. <dt>&lsquo;<samp class="samp">u16le</samp>&rsquo;</dt>
  2169. <dd><p>PCM unsigned 16-bit little-endian
  2170. </p>
  2171. </dd>
  2172. <dt>&lsquo;<samp class="samp">u24be</samp>&rsquo;</dt>
  2173. <dd><p>PCM unsigned 24-bit big-endian
  2174. </p>
  2175. </dd>
  2176. <dt>&lsquo;<samp class="samp">u24le</samp>&rsquo;</dt>
  2177. <dd><p>PCM unsigned 24-bit little-endian
  2178. </p>
  2179. </dd>
  2180. <dt>&lsquo;<samp class="samp">u32be</samp>&rsquo;</dt>
  2181. <dd><p>PCM unsigned 32-bit big-endian
  2182. </p>
  2183. </dd>
  2184. <dt>&lsquo;<samp class="samp">u32le</samp>&rsquo;</dt>
  2185. <dd><p>PCM unsigned 32-bit little-endian
  2186. </p>
  2187. </dd>
  2188. <dt>&lsquo;<samp class="samp">u8 (ub)</samp>&rsquo;</dt>
  2189. <dd><p>PCM unsigned 8-bit
  2190. </p>
  2191. </dd>
  2192. <dt>&lsquo;<samp class="samp">vidc</samp>&rsquo;</dt>
  2193. <dd><p>PCM Archimedes VIDC
  2194. </p></dd>
  2195. </dl>
  2196. <a name="MPEG_002d1_002fMPEG_002d2-program-stream-muxers"></a>
  2197. <h3 class="section">4.3 MPEG-1/MPEG-2 program stream muxers<span class="pull-right"><a class="anchor hidden-xs" href="#MPEG_002d1_002fMPEG_002d2-program-stream-muxers" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-MPEG_002d1_002fMPEG_002d2-program-stream-muxers" aria-hidden="true">TOC</a></span></h3>
  2198. <p>This section covers formats belonging to the MPEG-1 and MPEG-2 Systems
  2199. family.
  2200. </p>
  2201. <p>The MPEG-1 Systems format (also known as ISO/IEEC 11172-1 or MPEG-1
  2202. program stream) has been adopted for the format of media track stored
  2203. in VCD (Video Compact Disc).
  2204. </p>
  2205. <p>The MPEG-2 Systems standard (also known as ISO/IEEC 13818-1) covers
  2206. two containers formats, one known as transport stream and one known as
  2207. program stream; only the latter is covered here.
  2208. </p>
  2209. <p>The MPEG-2 program stream format (also known as VOB due to the
  2210. corresponding file extension) is an extension of MPEG-1 program
  2211. stream: in addition to support different codecs for the audio and
  2212. video streams, it also stores subtitles and navigation metadata.
  2213. MPEG-2 program stream has been adopted for storing media streams in
  2214. SVCD and DVD storage devices.
  2215. </p>
  2216. <p>This section comprises the following muxers.
  2217. </p>
  2218. <dl class="table">
  2219. <dt>&lsquo;<samp class="samp">mpeg (mpg,mpeg)</samp>&rsquo;</dt>
  2220. <dd><p>MPEG-1 Systems / MPEG-1 program stream muxer.
  2221. </p>
  2222. </dd>
  2223. <dt>&lsquo;<samp class="samp">vcd</samp>&rsquo;</dt>
  2224. <dd><p>MPEG-1 Systems / MPEG-1 program stream (VCD) muxer.
  2225. </p>
  2226. <p>This muxer can be used to generate tracks in the format accepted by
  2227. the VCD (Video Compact Disc) storage devices.
  2228. </p>
  2229. <p>It is the same as the &lsquo;<samp class="samp">mpeg</samp>&rsquo; muxer with a few differences.
  2230. </p>
  2231. </dd>
  2232. <dt>&lsquo;<samp class="samp">vob</samp>&rsquo;</dt>
  2233. <dd><p>MPEG-2 program stream (VOB) muxer.
  2234. </p>
  2235. </dd>
  2236. <dt>&lsquo;<samp class="samp">dvd</samp>&rsquo;</dt>
  2237. <dd><p>MPEG-2 program stream (DVD VOB) muxer.
  2238. </p>
  2239. <p>This muxer can be used to generate tracks in the format accepted by
  2240. the DVD (Digital Versatile Disc) storage devices.
  2241. </p>
  2242. <p>This is the same as the &lsquo;<samp class="samp">vob</samp>&rsquo; muxer with a few differences.
  2243. </p>
  2244. </dd>
  2245. <dt>&lsquo;<samp class="samp">svcd (vob)</samp>&rsquo;</dt>
  2246. <dd><p>MPEG-2 program stream (SVCD VOB) muxer.
  2247. </p>
  2248. <p>This muxer can be used to generate tracks in the format accepted by
  2249. the SVCD (Super Video Compact Disc) storage devices.
  2250. </p>
  2251. <p>This is the same as the &lsquo;<samp class="samp">vob</samp>&rsquo; muxer with a few differences.
  2252. </p></dd>
  2253. </dl>
  2254. <a name="Options-5"></a>
  2255. <h4 class="subsection">4.3.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-5" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-5" aria-hidden="true">TOC</a></span></h4>
  2256. <dl class="table">
  2257. <dt><samp class="option">muxrate <var class="var">rate</var></samp></dt>
  2258. <dd><p>Set user-defined mux rate expressed as a number of bits/s. If not
  2259. specified the automatically computed mux rate is employed. Default value
  2260. is <code class="code">0</code>.
  2261. </p>
  2262. </dd>
  2263. <dt><samp class="option">preload <var class="var">delay</var></samp></dt>
  2264. <dd><p>Set initial demux-decode delay in microseconds. Default value is
  2265. <code class="code">500000</code>.
  2266. </p></dd>
  2267. </dl>
  2268. <a name="MOV_002fMPEG_002d4_002fISOMBFF-muxers"></a>
  2269. <h3 class="section">4.4 MOV/MPEG-4/ISOMBFF muxers<span class="pull-right"><a class="anchor hidden-xs" href="#MOV_002fMPEG_002d4_002fISOMBFF-muxers" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-MOV_002fMPEG_002d4_002fISOMBFF-muxers" aria-hidden="true">TOC</a></span></h3>
  2270. <p>This section covers formats belonging to the QuickTime / MOV family,
  2271. including the MPEG-4 Part 14 format and ISO base media file format
  2272. (ISOBMFF). These formats share a common structure based on the ISO
  2273. base media file format (ISOBMFF).
  2274. </p>
  2275. <p>The MOV format was originally developed for use with Apple QuickTime.
  2276. It was later used as the basis for the MPEG-4 Part 1 (later Part 14)
  2277. format, also known as ISO/IEC 14496-1. That format was then
  2278. generalized into ISOBMFF, also named MPEG-4 Part 12 format, ISO/IEC
  2279. 14496-12, or ISO/IEC 15444-12.
  2280. </p>
  2281. <p>It comprises the following muxers.
  2282. </p>
  2283. <dl class="table">
  2284. <dt>&lsquo;<samp class="samp">3gp</samp>&rsquo;</dt>
  2285. <dd><p>Third Generation Partnership Project (3GPP) format for 3G UMTS
  2286. multimedia services
  2287. </p>
  2288. </dd>
  2289. <dt>&lsquo;<samp class="samp">3g2</samp>&rsquo;</dt>
  2290. <dd><p>Third Generation Partnership Project 2 (3GP2 or 3GPP2) format for 3G
  2291. CDMA2000 multimedia services, similar to &lsquo;<samp class="samp">3gp</samp>&rsquo; with extensions
  2292. and limitations
  2293. </p>
  2294. </dd>
  2295. <dt>&lsquo;<samp class="samp">f4v</samp>&rsquo;</dt>
  2296. <dd><p>Adobe Flash Video format
  2297. </p>
  2298. </dd>
  2299. <dt>&lsquo;<samp class="samp">ipod</samp>&rsquo;</dt>
  2300. <dd><p>MPEG-4 audio file format, as MOV/MP4 but limited to contain only audio
  2301. streams, typically played with the Apple ipod device
  2302. </p>
  2303. </dd>
  2304. <dt>&lsquo;<samp class="samp">ismv</samp>&rsquo;</dt>
  2305. <dd><p>Microsoft IIS (Internet Information Services) Smooth Streaming
  2306. Audio/Video (ISMV or ISMA) format. This is based on MPEG-4 Part 14
  2307. format with a few incompatible variants, used to stream media files
  2308. for the Microsoft IIS server.
  2309. </p>
  2310. </dd>
  2311. <dt>&lsquo;<samp class="samp">mov</samp>&rsquo;</dt>
  2312. <dd><p>QuickTime player format identified by the <code class="code">.mov</code> extension
  2313. </p>
  2314. </dd>
  2315. <dt>&lsquo;<samp class="samp">mp4</samp>&rsquo;</dt>
  2316. <dd><p>MP4 or MPEG-4 Part 14 format
  2317. </p>
  2318. </dd>
  2319. <dt>&lsquo;<samp class="samp">psp</samp>&rsquo;</dt>
  2320. <dd><p>PlayStation Portable MP4/MPEG-4 Part 14 format variant. This is based
  2321. on MPEG-4 Part 14 format with a few incompatible variants, used to
  2322. play files on PlayStation devices.
  2323. </p></dd>
  2324. </dl>
  2325. <a name="Fragmentation"></a>
  2326. <h4 class="subsection">4.4.1 Fragmentation<span class="pull-right"><a class="anchor hidden-xs" href="#Fragmentation" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Fragmentation" aria-hidden="true">TOC</a></span></h4>
  2327. <p>The &lsquo;<samp class="samp">mov</samp>&rsquo;, &lsquo;<samp class="samp">mp4</samp>&rsquo;, and &lsquo;<samp class="samp">ismv</samp>&rsquo; muxers support
  2328. fragmentation. Normally, a MOV/MP4 file has all the metadata about all
  2329. packets stored in one location.
  2330. </p>
  2331. <p>This data is usually written at the end of the file, but it can be
  2332. moved to the start for better playback by adding <code class="code">+faststart</code> to
  2333. the <code class="code">-movflags</code>, or using the <code class="command">qt-faststart</code> tool).
  2334. </p>
  2335. <p>A fragmented file consists of a number of fragments, where packets and
  2336. metadata about these packets are stored together. Writing a fragmented
  2337. file has the advantage that the file is decodable even if the writing
  2338. is interrupted (while a normal MOV/MP4 is undecodable if it is not
  2339. properly finished), and it requires less memory when writing very long
  2340. files (since writing normal MOV/MP4 files stores info about every
  2341. single packet in memory until the file is closed). The downside is
  2342. that it is less compatible with other applications.
  2343. </p>
  2344. <p>Fragmentation is enabled by setting one of the options that define
  2345. how to cut the file into fragments:
  2346. </p><dl class="table">
  2347. <dt><samp class="option">frag_duration</samp></dt>
  2348. <dt><samp class="option">frag_size</samp></dt>
  2349. <dt><samp class="option">min_frag_duration</samp></dt>
  2350. <dt><samp class="option">movflags +frag_keyframe</samp></dt>
  2351. <dt><samp class="option">movflags +frag_custom</samp></dt>
  2352. </dl>
  2353. <p>If more than one condition is specified, fragments are cut when one of
  2354. the specified conditions is fulfilled. The exception to this is the
  2355. option <samp class="option">min_frag_duration</samp>, which has to be fulfilled for any
  2356. of the other conditions to apply.
  2357. </p>
  2358. <a name="Options-6"></a>
  2359. <h4 class="subsection">4.4.2 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-6" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-6" aria-hidden="true">TOC</a></span></h4>
  2360. <dl class="table">
  2361. <dt><samp class="option">brand <var class="var">brand_string</var></samp></dt>
  2362. <dd><p>Override major brand.
  2363. </p>
  2364. </dd>
  2365. <dt><samp class="option">empty_hdlr_name <var class="var">bool</var></samp></dt>
  2366. <dd><p>Enable to skip writing the name inside a <code class="code">hdlr</code> box.
  2367. Default is <code class="code">false</code>.
  2368. </p>
  2369. </dd>
  2370. <dt><samp class="option">encryption_key <var class="var">key</var></samp></dt>
  2371. <dd><p>set the media encryption key in hexadecimal format
  2372. </p>
  2373. </dd>
  2374. <dt><samp class="option">encryption_kid <var class="var">kid</var></samp></dt>
  2375. <dd><p>set the media encryption key identifier in hexadecimal format
  2376. </p>
  2377. </dd>
  2378. <dt><samp class="option">encryption_scheme <var class="var">scheme</var></samp></dt>
  2379. <dd><p>configure the encryption scheme, allowed values are &lsquo;<samp class="samp">none</samp>&rsquo;, and
  2380. &lsquo;<samp class="samp">cenc-aes-ctr</samp>&rsquo;
  2381. </p>
  2382. </dd>
  2383. <dt><samp class="option">frag_duration <var class="var">duration</var></samp></dt>
  2384. <dd><p>Create fragments that are <var class="var">duration</var> microseconds long.
  2385. </p>
  2386. </dd>
  2387. <dt><samp class="option">frag_interleave <var class="var">number</var></samp></dt>
  2388. <dd><p>Interleave samples within fragments (max number of consecutive
  2389. samples, lower is tighter interleaving, but with more overhead. It is
  2390. set to <code class="code">0</code> by default.
  2391. </p>
  2392. </dd>
  2393. <dt><samp class="option">frag_size <var class="var">size</var></samp></dt>
  2394. <dd><p>create fragments that contain up to <var class="var">size</var> bytes of payload data
  2395. </p>
  2396. </dd>
  2397. <dt><samp class="option">iods_audio_profile <var class="var">profile</var></samp></dt>
  2398. <dd><p>specify iods number for the audio profile atom (from -1 to 255),
  2399. default is <code class="code">-1</code>
  2400. </p>
  2401. </dd>
  2402. <dt><samp class="option">iods_video_profile <var class="var">profile</var></samp></dt>
  2403. <dd><p>specify iods number for the video profile atom (from -1 to 255),
  2404. default is <code class="code">-1</code>
  2405. </p>
  2406. </dd>
  2407. <dt><samp class="option">ism_lookahead <var class="var">num_entries</var></samp></dt>
  2408. <dd><p>specify number of lookahead entries for ISM files (from 0 to 255),
  2409. default is <code class="code">0</code>
  2410. </p>
  2411. </dd>
  2412. <dt><samp class="option">min_frag_duration <var class="var">duration</var></samp></dt>
  2413. <dd><p>do not create fragments that are shorter than <var class="var">duration</var> microseconds long
  2414. </p>
  2415. </dd>
  2416. <dt><samp class="option">moov_size <var class="var">bytes</var></samp></dt>
  2417. <dd><p>Reserves space for the moov atom at the beginning of the file instead of placing the
  2418. moov atom at the end. If the space reserved is insufficient, muxing will fail.
  2419. </p>
  2420. </dd>
  2421. <dt><samp class="option">mov_gamma <var class="var">gamma</var></samp></dt>
  2422. <dd><p>specify gamma value for gama atom (as a decimal number from 0 to 10),
  2423. default is <code class="code">0.0</code>, must be set together with <code class="code">+ movflags</code>
  2424. </p>
  2425. </dd>
  2426. <dt><samp class="option">movflags <var class="var">flags</var></samp></dt>
  2427. <dd><p>Set various muxing switches. The following flags can be used:
  2428. </p><dl class="table">
  2429. <dt>&lsquo;<samp class="samp">cmaf</samp>&rsquo;</dt>
  2430. <dd><p>write CMAF (Common Media Application Format) compatible fragmented
  2431. MP4 output
  2432. </p>
  2433. </dd>
  2434. <dt>&lsquo;<samp class="samp">dash</samp>&rsquo;</dt>
  2435. <dd><p>write DASH (Dynamic Adaptive Streaming over HTTP) compatible fragmented
  2436. MP4 output
  2437. </p>
  2438. </dd>
  2439. <dt>&lsquo;<samp class="samp">default_base_moof</samp>&rsquo;</dt>
  2440. <dd><p>Similarly to the &lsquo;<samp class="samp">omit_tfhd_offset</samp>&rsquo; flag, this flag avoids
  2441. writing the absolute base_data_offset field in tfhd atoms, but does so
  2442. by using the new default-base-is-moof flag instead. This flag is new
  2443. from 14496-12:2012. This may make the fragments easier to parse in
  2444. certain circumstances (avoiding basing track fragment location
  2445. calculations on the implicit end of the previous track fragment).
  2446. </p>
  2447. </dd>
  2448. <dt>&lsquo;<samp class="samp">delay_moov</samp>&rsquo;</dt>
  2449. <dd><p>delay writing the initial moov until the first fragment is cut, or
  2450. until the first fragment flush
  2451. </p>
  2452. </dd>
  2453. <dt>&lsquo;<samp class="samp">disable_chpl</samp>&rsquo;</dt>
  2454. <dd><p>Disable Nero chapter markers (chpl atom). Normally, both Nero chapters
  2455. and a QuickTime chapter track are written to the file. With this
  2456. option set, only the QuickTime chapter track will be written. Nero
  2457. chapters can cause failures when the file is reprocessed with certain
  2458. tagging programs, like mp3Tag 2.61a and iTunes 11.3, most likely other
  2459. versions are affected as well.
  2460. </p>
  2461. </dd>
  2462. <dt>&lsquo;<samp class="samp">faststart</samp>&rsquo;</dt>
  2463. <dd><p>Run a second pass moving the index (moov atom) to the beginning of the
  2464. file. This operation can take a while, and will not work in various
  2465. situations such as fragmented output, thus it is not enabled by
  2466. default.
  2467. </p>
  2468. </dd>
  2469. <dt>&lsquo;<samp class="samp">frag_custom</samp>&rsquo;</dt>
  2470. <dd><p>Allow the caller to manually choose when to cut fragments, by calling
  2471. <code class="code">av_write_frame(ctx, NULL)</code> to write a fragment with the packets
  2472. written so far. (This is only useful with other applications
  2473. integrating libavformat, not from <code class="command">ffmpeg</code>.)
  2474. </p>
  2475. </dd>
  2476. <dt>&lsquo;<samp class="samp">frag_discont</samp>&rsquo;</dt>
  2477. <dd><p>signal that the next fragment is discontinuous from earlier ones
  2478. </p>
  2479. </dd>
  2480. <dt>&lsquo;<samp class="samp">frag_every_frame</samp>&rsquo;</dt>
  2481. <dd><p>fragment at every frame
  2482. </p>
  2483. </dd>
  2484. <dt>&lsquo;<samp class="samp">frag_keyframe</samp>&rsquo;</dt>
  2485. <dd><p>start a new fragment at each video keyframe
  2486. </p>
  2487. </dd>
  2488. <dt>&lsquo;<samp class="samp">global_sidx</samp>&rsquo;</dt>
  2489. <dd><p>write a global sidx index at the start of the file
  2490. </p>
  2491. </dd>
  2492. <dt>&lsquo;<samp class="samp">isml</samp>&rsquo;</dt>
  2493. <dd><p>create a live smooth streaming feed (for pushing to a publishing point)
  2494. </p>
  2495. </dd>
  2496. <dt>&lsquo;<samp class="samp">negative_cts_offsets</samp>&rsquo;</dt>
  2497. <dd><p>Enables utilization of version 1 of the CTTS box, in which the CTS offsets can
  2498. be negative. This enables the initial sample to have DTS/CTS of zero, and
  2499. reduces the need for edit lists for some cases such as video tracks with
  2500. B-frames. Additionally, eases conformance with the DASH-IF interoperability
  2501. guidelines.
  2502. </p>
  2503. <p>This option is implicitly set when writing &lsquo;<samp class="samp">ismv</samp>&rsquo; (Smooth
  2504. Streaming) files.
  2505. </p>
  2506. </dd>
  2507. <dt>&lsquo;<samp class="samp">omit_tfhd_offset</samp>&rsquo;</dt>
  2508. <dd><p>Do not write any absolute base_data_offset in tfhd atoms. This avoids
  2509. tying fragments to absolute byte positions in the file/streams.
  2510. </p>
  2511. </dd>
  2512. <dt>&lsquo;<samp class="samp">prefer_icc</samp>&rsquo;</dt>
  2513. <dd><p>If writing colr atom prioritise usage of ICC profile if it exists in
  2514. stream packet side data.
  2515. </p>
  2516. </dd>
  2517. <dt>&lsquo;<samp class="samp">rtphint</samp>&rsquo;</dt>
  2518. <dd><p>add RTP hinting tracks to the output file
  2519. </p>
  2520. </dd>
  2521. <dt>&lsquo;<samp class="samp">separate_moof</samp>&rsquo;</dt>
  2522. <dd><p>Write a separate moof (movie fragment) atom for each track. Normally,
  2523. packets for all tracks are written in a moof atom (which is slightly
  2524. more efficient), but with this option set, the muxer writes one
  2525. moof/mdat pair for each track, making it easier to separate tracks.
  2526. </p>
  2527. </dd>
  2528. <dt>&lsquo;<samp class="samp">skip_sidx</samp>&rsquo;</dt>
  2529. <dd><p>Skip writing of sidx atom. When bitrate overhead due to sidx atom is
  2530. high, this option could be used for cases where sidx atom is not
  2531. mandatory. When the &lsquo;<samp class="samp">global_sidx</samp>&rsquo; flag is enabled, this option
  2532. is ignored.
  2533. </p>
  2534. </dd>
  2535. <dt>&lsquo;<samp class="samp">skip_trailer</samp>&rsquo;</dt>
  2536. <dd><p>skip writing the mfra/tfra/mfro trailer for fragmented files
  2537. </p>
  2538. </dd>
  2539. <dt>&lsquo;<samp class="samp">use_metadata_tags</samp>&rsquo;</dt>
  2540. <dd><p>use mdta atom for metadata
  2541. </p>
  2542. </dd>
  2543. <dt>&lsquo;<samp class="samp">write_colr</samp>&rsquo;</dt>
  2544. <dd><p>write colr atom even if the color info is unspecified. This flag is
  2545. experimental, may be renamed or changed, do not use from scripts.
  2546. </p>
  2547. </dd>
  2548. <dt>&lsquo;<samp class="samp">write_gama</samp>&rsquo;</dt>
  2549. <dd><p>write deprecated gama atom
  2550. </p>
  2551. </dd>
  2552. <dt>&lsquo;<samp class="samp">hybrid_fragmented</samp>&rsquo;</dt>
  2553. <dd><p>For recoverability - write the output file as a fragmented file.
  2554. This allows the intermediate file to be read while being written
  2555. (in particular, if the writing process is aborted uncleanly). When
  2556. writing is finished, the file is converted to a regular, non-fragmented
  2557. file, which is more compatible and allows easier and quicker seeking.
  2558. </p>
  2559. <p>If writing is aborted, the intermediate file can manually be
  2560. remuxed to get a regular, non-fragmented file of what had been
  2561. written into the unfinished file.
  2562. </p></dd>
  2563. </dl>
  2564. </dd>
  2565. <dt><samp class="option">movie_timescale <var class="var">scale</var></samp></dt>
  2566. <dd><p>Set the timescale written in the movie header box (<code class="code">mvhd</code>).
  2567. Range is 1 to INT_MAX. Default is <code class="code">1000</code>.
  2568. </p>
  2569. </dd>
  2570. <dt><samp class="option">rtpflags <var class="var">flags</var></samp></dt>
  2571. <dd><p>Add RTP hinting tracks to the output file.
  2572. </p>
  2573. <p>The following flags can be used:
  2574. </p><dl class="table">
  2575. <dt>&lsquo;<samp class="samp">h264_mode0</samp>&rsquo;</dt>
  2576. <dd><p>use mode 0 for H.264 in RTP
  2577. </p>
  2578. </dd>
  2579. <dt>&lsquo;<samp class="samp">latm</samp>&rsquo;</dt>
  2580. <dd><p>use MP4A-LATM packetization instead of MPEG4-GENERIC for AAC
  2581. </p>
  2582. </dd>
  2583. <dt>&lsquo;<samp class="samp">rfc2190</samp>&rsquo;</dt>
  2584. <dd><p>use RFC 2190 packetization instead of RFC 4629 for H.263
  2585. </p>
  2586. </dd>
  2587. <dt>&lsquo;<samp class="samp">send_bye</samp>&rsquo;</dt>
  2588. <dd><p>send RTCP BYE packets when finishing
  2589. </p>
  2590. </dd>
  2591. <dt>&lsquo;<samp class="samp">skip_rtcp</samp>&rsquo;</dt>
  2592. <dd><p>do not send RTCP sender reports
  2593. </p></dd>
  2594. </dl>
  2595. </dd>
  2596. <dt><samp class="option">skip_iods <var class="var">bool</var></samp></dt>
  2597. <dd><p>skip writing iods atom (default value is <code class="code">true</code>)
  2598. </p>
  2599. </dd>
  2600. <dt><samp class="option">use_editlist <var class="var">bool</var></samp></dt>
  2601. <dd><p>use edit list (default value is <code class="code">auto</code>)
  2602. </p>
  2603. </dd>
  2604. <dt><samp class="option">use_stream_ids_as_track_ids <var class="var">bool</var></samp></dt>
  2605. <dd><p>use stream ids as track ids (default value is <code class="code">false</code>)
  2606. </p>
  2607. </dd>
  2608. <dt><samp class="option">video_track_timescale <var class="var">scale</var></samp></dt>
  2609. <dd><p>Set the timescale used for video tracks. Range is <code class="code">0</code> to INT_MAX. If
  2610. set to <code class="code">0</code>, the timescale is automatically set based on the
  2611. native stream time base. Default is <code class="code">0</code>.
  2612. </p>
  2613. </dd>
  2614. <dt><samp class="option">write_btrt <var class="var">bool</var></samp></dt>
  2615. <dd><p>Force or disable writing bitrate box inside stsd box of a track. The
  2616. box contains decoding buffer size (in bytes), maximum bitrate and
  2617. average bitrate for the track. The box will be skipped if none of
  2618. these values can be computed. Default is <code class="code">-1</code> or <code class="code">auto</code>,
  2619. which will write the box only in MP4 mode.
  2620. </p>
  2621. </dd>
  2622. <dt><samp class="option">write_prft <var class="var">option</var></samp></dt>
  2623. <dd><p>Write producer time reference box (PRFT) with a specified time source for the
  2624. NTP field in the PRFT box. Set value as &lsquo;<samp class="samp">wallclock</samp>&rsquo; to specify timesource
  2625. as wallclock time and &lsquo;<samp class="samp">pts</samp>&rsquo; to specify timesource as input packets&rsquo; PTS
  2626. values.
  2627. </p>
  2628. </dd>
  2629. <dt><samp class="option">write_tmcd <var class="var">bool</var></samp></dt>
  2630. <dd><p>Specify <code class="code">on</code> to force writing a timecode track, <code class="code">off</code> to disable it
  2631. and <code class="code">auto</code> to write a timecode track only for mov and mp4 output (default).
  2632. </p>
  2633. <p>Setting value to &lsquo;<samp class="samp">pts</samp>&rsquo; is applicable only for a live encoding use case,
  2634. where PTS values are set as as wallclock time at the source. For example, an
  2635. encoding use case with decklink capture source where <samp class="option">video_pts</samp> and
  2636. <samp class="option">audio_pts</samp> are set to &lsquo;<samp class="samp">abs_wallclock</samp>&rsquo;.
  2637. </p></dd>
  2638. </dl>
  2639. <a name="Examples-6"></a>
  2640. <h4 class="subsection">4.4.3 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-6" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-6" aria-hidden="true">TOC</a></span></h4>
  2641. <ul class="itemize mark-bullet">
  2642. <li>Push Smooth Streaming content in real time to a publishing point on
  2643. IIS with the &lsquo;<samp class="samp">ismv</samp>&rsquo; muxer using <code class="command">ffmpeg</code>:
  2644. <div class="example">
  2645. <pre class="example-preformatted">ffmpeg -re <var class="var">&lt;normal input/transcoding options&gt;</var> -movflags isml+frag_keyframe -f ismv http://server/publishingpoint.isml/Streams(Encoder1)
  2646. </pre></div>
  2647. </li></ul>
  2648. <a class="anchor" id="a64"></a><a name="a64-1"></a>
  2649. <h3 class="section">4.5 a64<span class="pull-right"><a class="anchor hidden-xs" href="#a64-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-a64-1" aria-hidden="true">TOC</a></span></h3>
  2650. <p>A64 Commodore 64 video muxer.
  2651. </p>
  2652. <p>This muxer accepts a single <code class="code">a64_multi</code> or <code class="code">a64_multi5</code>
  2653. codec video stream.
  2654. </p>
  2655. <a name="ac4"></a>
  2656. <h3 class="section">4.6 ac4<span class="pull-right"><a class="anchor hidden-xs" href="#ac4" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ac4" aria-hidden="true">TOC</a></span></h3>
  2657. <p>Raw AC-4 audio muxer.
  2658. </p>
  2659. <p>This muxer accepts a single <code class="code">ac4</code> audio stream.
  2660. </p>
  2661. <a name="Options-7"></a>
  2662. <h4 class="subsection">4.6.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-7" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-7" aria-hidden="true">TOC</a></span></h4>
  2663. <dl class="table">
  2664. <dt><samp class="option">write_crc <var class="var">bool</var></samp></dt>
  2665. <dd><p>when enabled, write a CRC checksum for each packet to the output,
  2666. default is <code class="code">false</code>
  2667. </p></dd>
  2668. </dl>
  2669. <a class="anchor" id="adts"></a><a name="adts-1"></a>
  2670. <h3 class="section">4.7 adts<span class="pull-right"><a class="anchor hidden-xs" href="#adts-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-adts-1" aria-hidden="true">TOC</a></span></h3>
  2671. <p>Audio Data Transport Stream muxer.
  2672. </p>
  2673. <p>It accepts a single AAC stream.
  2674. </p>
  2675. <a name="Options-8"></a>
  2676. <h4 class="subsection">4.7.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-8" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-8" aria-hidden="true">TOC</a></span></h4>
  2677. <dl class="table">
  2678. <dt><samp class="option">write_id3v2 <var class="var">bool</var></samp></dt>
  2679. <dd><p>Enable to write ID3v2.4 tags at the start of the stream. Default is
  2680. disabled.
  2681. </p>
  2682. </dd>
  2683. <dt><samp class="option">write_apetag <var class="var">bool</var></samp></dt>
  2684. <dd><p>Enable to write APE tags at the end of the stream. Default is
  2685. disabled.
  2686. </p>
  2687. </dd>
  2688. <dt><samp class="option">write_mpeg2 <var class="var">bool</var></samp></dt>
  2689. <dd><p>Enable to set MPEG version bit in the ADTS frame header to 1 which
  2690. indicates MPEG-2. Default is 0, which indicates MPEG-4.
  2691. </p></dd>
  2692. </dl>
  2693. <a class="anchor" id="aea"></a><a name="aea-1"></a>
  2694. <h3 class="section">4.8 aea<span class="pull-right"><a class="anchor hidden-xs" href="#aea-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-aea-1" aria-hidden="true">TOC</a></span></h3>
  2695. <p>MD STUDIO audio muxer.
  2696. </p>
  2697. <p>This muxer accepts a single ATRAC1 audio stream with either one or two channels
  2698. and a sample rate of 44100Hz.
  2699. </p>
  2700. <p>As AEA supports storing the track title, this muxer will also write
  2701. the title from stream&rsquo;s metadata to the container.
  2702. </p>
  2703. <a class="anchor" id="aiff"></a><a name="aiff-1"></a>
  2704. <h3 class="section">4.9 aiff<span class="pull-right"><a class="anchor hidden-xs" href="#aiff-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-aiff-1" aria-hidden="true">TOC</a></span></h3>
  2705. <p>Audio Interchange File Format muxer.
  2706. </p>
  2707. <a name="Options-9"></a>
  2708. <h4 class="subsection">4.9.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-9" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-9" aria-hidden="true">TOC</a></span></h4>
  2709. <dl class="table">
  2710. <dt><samp class="option">write_id3v2 <var class="var">bool</var></samp></dt>
  2711. <dd><p>Enable ID3v2 tags writing when set to 1. Default is 0 (disabled).
  2712. </p>
  2713. </dd>
  2714. <dt><samp class="option">id3v2_version <var class="var">bool</var></samp></dt>
  2715. <dd><p>Select ID3v2 version to write. Currently only version 3 and 4 (aka.
  2716. ID3v2.3 and ID3v2.4) are supported. The default is version 4.
  2717. </p></dd>
  2718. </dl>
  2719. <a class="anchor" id="alp"></a><a name="alp-1"></a>
  2720. <h3 class="section">4.10 alp<span class="pull-right"><a class="anchor hidden-xs" href="#alp-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-alp-1" aria-hidden="true">TOC</a></span></h3>
  2721. <p>High Voltage Software&rsquo;s Lego Racers game audio muxer.
  2722. </p>
  2723. <p>It accepts a single ADPCM_IMA_ALP stream with no more than 2 channels
  2724. and a sample rate not greater than 44100 Hz.
  2725. </p>
  2726. <p>Extensions: <code class="code">tun</code>, <code class="code">pcm</code>
  2727. </p>
  2728. <a name="Options-10"></a>
  2729. <h4 class="subsection">4.10.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-10" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-10" aria-hidden="true">TOC</a></span></h4>
  2730. <dl class="table">
  2731. <dt><samp class="option">type <var class="var">type</var></samp></dt>
  2732. <dd><p>Set file type.
  2733. </p>
  2734. <p><var class="var">type</var> accepts the following values:
  2735. </p><dl class="table">
  2736. <dt>&lsquo;<samp class="samp">tun</samp>&rsquo;</dt>
  2737. <dd><p>Set file type as music. Must have a sample rate of 22050 Hz.
  2738. </p>
  2739. </dd>
  2740. <dt>&lsquo;<samp class="samp">pcm</samp>&rsquo;</dt>
  2741. <dd><p>Set file type as sfx.
  2742. </p>
  2743. </dd>
  2744. <dt>&lsquo;<samp class="samp">auto</samp>&rsquo;</dt>
  2745. <dd><p>Set file type as per output file extension. <code class="code">.pcm</code> results in
  2746. type <code class="code">pcm</code> else type <code class="code">tun</code> is set. <var class="var">(default)</var>
  2747. </p></dd>
  2748. </dl>
  2749. </dd>
  2750. </dl>
  2751. <a name="amr"></a>
  2752. <h3 class="section">4.11 amr<span class="pull-right"><a class="anchor hidden-xs" href="#amr" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-amr" aria-hidden="true">TOC</a></span></h3>
  2753. <p>3GPP AMR (Adaptive Multi-Rate) audio muxer.
  2754. </p>
  2755. <p>It accepts a single audio stream containing an AMR NB stream.
  2756. </p>
  2757. <a name="amv"></a>
  2758. <h3 class="section">4.12 amv<span class="pull-right"><a class="anchor hidden-xs" href="#amv" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-amv" aria-hidden="true">TOC</a></span></h3>
  2759. <p>AMV (Actions Media Video) format muxer.
  2760. </p>
  2761. <a name="apm"></a>
  2762. <h3 class="section">4.13 apm<span class="pull-right"><a class="anchor hidden-xs" href="#apm" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-apm" aria-hidden="true">TOC</a></span></h3>
  2763. <p>Ubisoft Rayman 2 APM audio muxer.
  2764. </p>
  2765. <p>It accepts a single ADPCM IMA APM audio stream.
  2766. </p>
  2767. <a name="apng-1"></a>
  2768. <h3 class="section">4.14 apng<span class="pull-right"><a class="anchor hidden-xs" href="#apng-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-apng-1" aria-hidden="true">TOC</a></span></h3>
  2769. <p>Animated Portable Network Graphics muxer.
  2770. </p>
  2771. <p>It accepts a single APNG video stream.
  2772. </p>
  2773. <a name="Options-11"></a>
  2774. <h4 class="subsection">4.14.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-11" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-11" aria-hidden="true">TOC</a></span></h4>
  2775. <dl class="table">
  2776. <dt><samp class="option">final_delay <var class="var">delay</var></samp></dt>
  2777. <dd><p>Force a delay expressed in seconds after the last frame of each
  2778. repetition. Default value is <code class="code">0.0</code>.
  2779. </p>
  2780. </dd>
  2781. <dt><samp class="option">plays <var class="var">repetitions</var></samp></dt>
  2782. <dd><p>specify how many times to play the content, <code class="code">0</code> causes an infinite
  2783. loop, with <code class="code">1</code> there is no loop
  2784. </p></dd>
  2785. </dl>
  2786. <a name="Examples-7"></a>
  2787. <h4 class="subsection">4.14.2 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-7" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-7" aria-hidden="true">TOC</a></span></h4>
  2788. <ul class="itemize mark-bullet">
  2789. <li>Use <code class="command">ffmpeg</code> to generate an APNG output with 2 repetitions,
  2790. and with a delay of half a second after the first repetition:
  2791. <div class="example">
  2792. <pre class="example-preformatted">ffmpeg -i INPUT -final_delay 0.5 -plays 2 out.apng
  2793. </pre></div>
  2794. </li></ul>
  2795. <a name="argo_005fasf"></a>
  2796. <h3 class="section">4.15 argo_asf<span class="pull-right"><a class="anchor hidden-xs" href="#argo_005fasf" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-argo_005fasf" aria-hidden="true">TOC</a></span></h3>
  2797. <p>Argonaut Games ASF audio muxer.
  2798. </p>
  2799. <p>It accepts a single ADPCM audio stream.
  2800. </p>
  2801. <a name="Options-12"></a>
  2802. <h4 class="subsection">4.15.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-12" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-12" aria-hidden="true">TOC</a></span></h4>
  2803. <dl class="table">
  2804. <dt><samp class="option">version_major <var class="var">version</var></samp></dt>
  2805. <dd><p>override file major version, specified as an integer, default value is
  2806. <code class="code">2</code>
  2807. </p>
  2808. </dd>
  2809. <dt><samp class="option">version_minor <var class="var">version</var></samp></dt>
  2810. <dd><p>override file minor version, specified as an integer, default value is
  2811. <code class="code">1</code>
  2812. </p>
  2813. </dd>
  2814. <dt><samp class="option">name <var class="var">name</var></samp></dt>
  2815. <dd><p>Embed file name into file, if not specified use the output file
  2816. name. The name is truncated to 8 characters.
  2817. </p></dd>
  2818. </dl>
  2819. <a name="argo_005fcvg"></a>
  2820. <h3 class="section">4.16 argo_cvg<span class="pull-right"><a class="anchor hidden-xs" href="#argo_005fcvg" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-argo_005fcvg" aria-hidden="true">TOC</a></span></h3>
  2821. <p>Argonaut Games CVG audio muxer.
  2822. </p>
  2823. <p>It accepts a single one-channel ADPCM 22050Hz audio stream.
  2824. </p>
  2825. <p>The <samp class="option">loop</samp> and <samp class="option">reverb</samp> options set the corresponding
  2826. flags in the header which can be later retrieved to process the audio
  2827. stream accordingly.
  2828. </p>
  2829. <a name="Options-13"></a>
  2830. <h4 class="subsection">4.16.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-13" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-13" aria-hidden="true">TOC</a></span></h4>
  2831. <dl class="table">
  2832. <dt><samp class="option">skip_rate_check <var class="var">bool</var></samp></dt>
  2833. <dd><p>skip sample rate check (default is <code class="code">false</code>)
  2834. </p>
  2835. </dd>
  2836. <dt><samp class="option">loop <var class="var">bool</var></samp></dt>
  2837. <dd><p>set loop flag (default is <code class="code">false</code>)
  2838. </p>
  2839. </dd>
  2840. <dt><samp class="option">reverb <var class="var">boolean</var></samp></dt>
  2841. <dd><p>set reverb flag (default is <code class="code">true</code>)
  2842. </p></dd>
  2843. </dl>
  2844. <a class="anchor" id="asf"></a><a name="asf_002c-asf_005fstream"></a>
  2845. <h3 class="section">4.17 asf, asf_stream<span class="pull-right"><a class="anchor hidden-xs" href="#asf_002c-asf_005fstream" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-asf_002c-asf_005fstream" aria-hidden="true">TOC</a></span></h3>
  2846. <p>Advanced / Active Systems (or Streaming) Format audio muxer.
  2847. </p>
  2848. <p>The &lsquo;<samp class="samp">asf_stream</samp>&rsquo; variant should be selected for streaming.
  2849. </p>
  2850. <p>Note that Windows Media Audio (wma) and Windows Media Video (wmv) use this
  2851. muxer too.
  2852. </p>
  2853. <a name="Options-14"></a>
  2854. <h4 class="subsection">4.17.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-14" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-14" aria-hidden="true">TOC</a></span></h4>
  2855. <dl class="table">
  2856. <dt><samp class="option">packet_size <var class="var">size</var></samp></dt>
  2857. <dd><p>Set the muxer packet size as a number of bytes. By tuning this setting
  2858. you may reduce data fragmentation or muxer overhead depending on your
  2859. source. Default value is <code class="code">3200</code>, minimum is <code class="code">100</code>, maximum
  2860. is <code class="code">64Ki</code>.
  2861. </p></dd>
  2862. </dl>
  2863. <a name="ass"></a>
  2864. <h3 class="section">4.18 ass<span class="pull-right"><a class="anchor hidden-xs" href="#ass" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ass" aria-hidden="true">TOC</a></span></h3>
  2865. <p>ASS/SSA (SubStation Alpha) subtitles muxer.
  2866. </p>
  2867. <p>It accepts a single ASS subtitles stream.
  2868. </p>
  2869. <a name="Options-15"></a>
  2870. <h4 class="subsection">4.18.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-15" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-15" aria-hidden="true">TOC</a></span></h4>
  2871. <dl class="table">
  2872. <dt><samp class="option">ignore_readorder <var class="var">bool</var></samp></dt>
  2873. <dd><p>Write dialogue events immediately, even if they are out-of-order,
  2874. default is <code class="code">false</code>, otherwise they are cached until the expected
  2875. time event is found.
  2876. </p></dd>
  2877. </dl>
  2878. <a name="ast"></a>
  2879. <h3 class="section">4.19 ast<span class="pull-right"><a class="anchor hidden-xs" href="#ast" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ast" aria-hidden="true">TOC</a></span></h3>
  2880. <p>AST (Audio Stream) muxer.
  2881. </p>
  2882. <p>This format is used to play audio on some Nintendo Wii games.
  2883. </p>
  2884. <p>It accepts a single audio stream.
  2885. </p>
  2886. <p>The <samp class="option">loopstart</samp> and <samp class="option">loopend</samp> options can be used to
  2887. define a section of the file to loop for players honoring such
  2888. options.
  2889. </p>
  2890. <a name="Options-16"></a>
  2891. <h4 class="subsection">4.19.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-16" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-16" aria-hidden="true">TOC</a></span></h4>
  2892. <dl class="table">
  2893. <dt><samp class="option">loopstart <var class="var">start</var></samp></dt>
  2894. <dd><p>Specify loop start position expressesd in milliseconds, from <code class="code">-1</code>
  2895. to <code class="code">INT_MAX</code>, in case <code class="code">-1</code> is set then no loop is specified
  2896. (default -1) and the <samp class="option">loopend</samp> value is ignored.
  2897. </p>
  2898. </dd>
  2899. <dt><samp class="option">loopend <var class="var">end</var></samp></dt>
  2900. <dd><p>Specify loop end position expressed in milliseconds, from <code class="code">0</code> to
  2901. <code class="code">INT_MAX</code>, default is <code class="code">0</code>, in case <code class="code">0</code> is set it
  2902. assumes the total stream duration.
  2903. </p></dd>
  2904. </dl>
  2905. <a name="au"></a>
  2906. <h3 class="section">4.20 au<span class="pull-right"><a class="anchor hidden-xs" href="#au" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-au" aria-hidden="true">TOC</a></span></h3>
  2907. <p>SUN AU audio muxer.
  2908. </p>
  2909. <p>It accepts a single audio stream.
  2910. </p>
  2911. <a class="anchor" id="avi"></a><a name="avi-1"></a>
  2912. <h3 class="section">4.21 avi<span class="pull-right"><a class="anchor hidden-xs" href="#avi-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-avi-1" aria-hidden="true">TOC</a></span></h3>
  2913. <p>Audio Video Interleaved muxer.
  2914. </p>
  2915. <p>AVI is a proprietary format developed by Microsoft, and later formally specified
  2916. through the Open DML specification.
  2917. </p>
  2918. <p>Because of differences in players implementations, it might be required to set
  2919. some options to make sure that the generated output can be correctly played by
  2920. the target player.
  2921. </p>
  2922. <a name="Options-17"></a>
  2923. <h4 class="subsection">4.21.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-17" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-17" aria-hidden="true">TOC</a></span></h4>
  2924. <dl class="table">
  2925. <dt><samp class="option">flipped_raw_rgb <var class="var">bool</var></samp></dt>
  2926. <dd><p>If set to <code class="code">true</code>, store positive height for raw RGB bitmaps, which
  2927. indicates bitmap is stored bottom-up. Note that this option does not flip the
  2928. bitmap which has to be done manually beforehand, e.g. by using the &lsquo;<samp class="samp">vflip</samp>&rsquo;
  2929. filter. Default is <code class="code">false</code> and indicates bitmap is stored top down.
  2930. </p>
  2931. </dd>
  2932. <dt><samp class="option">reserve_index_space <var class="var">size</var></samp></dt>
  2933. <dd><p>Reserve the specified amount of bytes for the OpenDML master index of each
  2934. stream within the file header. By default additional master indexes are
  2935. embedded within the data packets if there is no space left in the first master
  2936. index and are linked together as a chain of indexes. This index structure can
  2937. cause problems for some use cases, e.g. third-party software strictly relying
  2938. on the OpenDML index specification or when file seeking is slow. Reserving
  2939. enough index space in the file header avoids these problems.
  2940. </p>
  2941. <p>The required index space depends on the output file size and should be about 16
  2942. bytes per gigabyte. When this option is omitted or set to zero the necessary
  2943. index space is guessed.
  2944. </p>
  2945. <p>Default value is <code class="code">0</code>.
  2946. </p>
  2947. </dd>
  2948. <dt><samp class="option">write_channel_mask <var class="var">bool</var></samp></dt>
  2949. <dd><p>Write the channel layout mask into the audio stream header.
  2950. </p>
  2951. <p>This option is enabled by default. Disabling the channel mask can be useful in
  2952. specific scenarios, e.g. when merging multiple audio streams into one for
  2953. compatibility with software that only supports a single audio stream in AVI
  2954. (see <a data-manual="ffmpeg-filters" href="ffmpeg-filters.html#amerge">the &quot;amerge&quot; section in the ffmpeg-filters manual</a>).
  2955. </p></dd>
  2956. </dl>
  2957. <a name="avif"></a>
  2958. <h3 class="section">4.22 avif<span class="pull-right"><a class="anchor hidden-xs" href="#avif" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-avif" aria-hidden="true">TOC</a></span></h3>
  2959. <p>AV1 (Alliance for Open Media Video codec 1) image format muxer.
  2960. </p>
  2961. <p>This muxers stores images encoded using the AV1 codec.
  2962. </p>
  2963. <p>It accepts one or two video streams. In case two video streams are
  2964. provided, the second one shall contain a single plane storing the
  2965. alpha mask.
  2966. </p>
  2967. <p>In case more than one image is provided, the generated output is
  2968. considered an animated AVIF and the number of loops can be specified
  2969. with the <samp class="option">loop</samp> option.
  2970. </p>
  2971. <p>This is based on the specification by Alliance for Open Media at url
  2972. <a class="url" href="https://aomediacodec.github.io/av1-avif">https://aomediacodec.github.io/av1-avif</a>.
  2973. </p>
  2974. <a name="Options-18"></a>
  2975. <h4 class="subsection">4.22.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-18" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-18" aria-hidden="true">TOC</a></span></h4>
  2976. <dl class="table">
  2977. <dt><samp class="option">loop <var class="var">count</var></samp></dt>
  2978. <dd><p>number of times to loop an animated AVIF, <code class="code">0</code> specify an infinite
  2979. loop, default is <code class="code">0</code>
  2980. </p>
  2981. </dd>
  2982. <dt><samp class="option">movie_timescale <var class="var">timescale</var></samp></dt>
  2983. <dd><p>Set the timescale written in the movie header box (<code class="code">mvhd</code>).
  2984. Range is 1 to INT_MAX. Default is <code class="code">1000</code>.
  2985. </p></dd>
  2986. </dl>
  2987. <a name="avm2"></a>
  2988. <h3 class="section">4.23 avm2<span class="pull-right"><a class="anchor hidden-xs" href="#avm2" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-avm2" aria-hidden="true">TOC</a></span></h3>
  2989. <p>ShockWave Flash (SWF) / ActionScript Virtual Machine 2 (AVM2) format muxer.
  2990. </p>
  2991. <p>It accepts one audio stream, one video stream, or both.
  2992. </p>
  2993. <a name="bit"></a>
  2994. <h3 class="section">4.24 bit<span class="pull-right"><a class="anchor hidden-xs" href="#bit" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-bit" aria-hidden="true">TOC</a></span></h3>
  2995. <p>G.729 (.bit) file format muxer.
  2996. </p>
  2997. <p>It accepts a single G.729 audio stream.
  2998. </p>
  2999. <a name="caf"></a>
  3000. <h3 class="section">4.25 caf<span class="pull-right"><a class="anchor hidden-xs" href="#caf" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-caf" aria-hidden="true">TOC</a></span></h3>
  3001. <p>Apple CAF (Core Audio Format) muxer.
  3002. </p>
  3003. <p>It accepts a single audio stream.
  3004. </p>
  3005. <a name="codec2"></a>
  3006. <h3 class="section">4.26 codec2<span class="pull-right"><a class="anchor hidden-xs" href="#codec2" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-codec2" aria-hidden="true">TOC</a></span></h3>
  3007. <p>Codec2 audio audio muxer.
  3008. </p>
  3009. <p>It accepts a single codec2 audio stream.
  3010. </p>
  3011. <a class="anchor" id="chromaprint"></a><a name="chromaprint-1"></a>
  3012. <h3 class="section">4.27 chromaprint<span class="pull-right"><a class="anchor hidden-xs" href="#chromaprint-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-chromaprint-1" aria-hidden="true">TOC</a></span></h3>
  3013. <p>Chromaprint fingerprinter muxers.
  3014. </p>
  3015. <p>To enable compilation of this filter you need to configure FFmpeg with
  3016. <code class="code">--enable-chromaprint</code>.
  3017. </p>
  3018. <p>This muxer feeds audio data to the Chromaprint library, which
  3019. generates a fingerprint for the provided audio data. See:
  3020. <a class="url" href="https://acoustid.org/chromaprint">https://acoustid.org/chromaprint</a>
  3021. </p>
  3022. <p>It takes a single signed native-endian 16-bit raw audio stream of at
  3023. most 2 channels.
  3024. </p>
  3025. <a name="Options-19"></a>
  3026. <h4 class="subsection">4.27.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-19" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-19" aria-hidden="true">TOC</a></span></h4>
  3027. <dl class="table">
  3028. <dt><samp class="option">algorithm <var class="var">version</var></samp></dt>
  3029. <dd><p>Select version of algorithm to fingerprint with. Range is <code class="code">0</code> to
  3030. <code class="code">4</code>. Version <code class="code">3</code> enables silence detection. Default is <code class="code">1</code>.
  3031. </p>
  3032. </dd>
  3033. <dt><samp class="option">fp_format <var class="var">format</var></samp></dt>
  3034. <dd><p>Format to output the fingerprint as. Accepts the following options:
  3035. </p><dl class="table">
  3036. <dt>&lsquo;<samp class="samp">base64</samp>&rsquo;</dt>
  3037. <dd><p>Base64 compressed fingerprint <em class="emph">(default)</em>
  3038. </p>
  3039. </dd>
  3040. <dt>&lsquo;<samp class="samp">compressed</samp>&rsquo;</dt>
  3041. <dd><p>Binary compressed fingerprint
  3042. </p>
  3043. </dd>
  3044. <dt>&lsquo;<samp class="samp">raw</samp>&rsquo;</dt>
  3045. <dd><p>Binary raw fingerprint
  3046. </p></dd>
  3047. </dl>
  3048. </dd>
  3049. <dt><samp class="option">silence_threshold <var class="var">threshold</var></samp></dt>
  3050. <dd><p>Threshold for detecting silence. Range is from <code class="code">-1</code> to
  3051. <code class="code">32767</code>, where <code class="code">-1</code> disables silence detection. Silence
  3052. detection can only be used with version <code class="code">3</code> of the algorithm.
  3053. </p>
  3054. <p>Silence detection must be disabled for use with the AcoustID
  3055. service. Default is <code class="code">-1</code>.
  3056. </p></dd>
  3057. </dl>
  3058. <a class="anchor" id="crc"></a><a name="crc-1"></a>
  3059. <h3 class="section">4.28 crc<span class="pull-right"><a class="anchor hidden-xs" href="#crc-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-crc-1" aria-hidden="true">TOC</a></span></h3>
  3060. <p>CRC (Cyclic Redundancy Check) muxer.
  3061. </p>
  3062. <p>This muxer computes and prints the Adler-32 CRC of all the input audio
  3063. and video frames. By default audio frames are converted to signed
  3064. 16-bit raw audio and video frames to raw video before computing the
  3065. CRC.
  3066. </p>
  3067. <p>The output of the muxer consists of a single line of the form:
  3068. CRC=0x<var class="var">CRC</var>, where <var class="var">CRC</var> is a hexadecimal number 0-padded to
  3069. 8 digits containing the CRC for all the decoded input frames.
  3070. </p>
  3071. <p>See also the <a class="ref" href="#framecrc">framecrc</a> muxer.
  3072. </p>
  3073. <a name="Examples-8"></a>
  3074. <h4 class="subsection">4.28.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-8" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-8" aria-hidden="true">TOC</a></span></h4>
  3075. <ul class="itemize mark-bullet">
  3076. <li>Use <code class="command">ffmpeg</code> to compute the CRC of the input, and store it in
  3077. the file <samp class="file">out.crc</samp>:
  3078. <div class="example">
  3079. <pre class="example-preformatted">ffmpeg -i INPUT -f crc out.crc
  3080. </pre></div>
  3081. </li><li>Use <code class="command">ffmpeg</code> to print the CRC to stdout with the command:
  3082. <div class="example">
  3083. <pre class="example-preformatted">ffmpeg -i INPUT -f crc -
  3084. </pre></div>
  3085. </li><li>You can select the output format of each frame with <code class="command">ffmpeg</code> by
  3086. specifying the audio and video codec and format. For example, to
  3087. compute the CRC of the input audio converted to PCM unsigned 8-bit
  3088. and the input video converted to MPEG-2 video, use the command:
  3089. <div class="example">
  3090. <pre class="example-preformatted">ffmpeg -i INPUT -c:a pcm_u8 -c:v mpeg2video -f crc -
  3091. </pre></div>
  3092. </li></ul>
  3093. <a class="anchor" id="dash"></a><a name="dash-2"></a>
  3094. <h3 class="section">4.29 dash<span class="pull-right"><a class="anchor hidden-xs" href="#dash-2" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-dash-2" aria-hidden="true">TOC</a></span></h3>
  3095. <p>Dynamic Adaptive Streaming over HTTP (DASH) muxer.
  3096. </p>
  3097. <p>This muxer creates segments and manifest files according to the
  3098. MPEG-DASH standard ISO/IEC 23009-1:2014 and following standard
  3099. updates.
  3100. </p>
  3101. <p>For more information see:
  3102. </p><ul class="itemize mark-bullet">
  3103. <li>ISO DASH Specification: <a class="url" href="http://standards.iso.org/ittf/PubliclyAvailableStandards/c065274_ISO_IEC_23009-1_2014.zip">http://standards.iso.org/ittf/PubliclyAvailableStandards/c065274_ISO_IEC_23009-1_2014.zip</a>
  3104. </li><li>WebM DASH Specification: <a class="url" href="https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/webm-dash-specification">https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/webm-dash-specification</a>
  3105. </li></ul>
  3106. <p>This muxer creates an MPD (Media Presentation Description) manifest
  3107. file and segment files for each stream. Segment files are placed in
  3108. the same directory of the MPD manifest file.
  3109. </p>
  3110. <p>The segment filename might contain pre-defined identifiers used in the
  3111. manifest <code class="code">SegmentTemplate</code> section as defined in section
  3112. 5.3.9.4.4 of the standard.
  3113. </p>
  3114. <p>Available identifiers are <code class="code">$RepresentationID$</code>, <code class="code">$Number$</code>,
  3115. <code class="code">$Bandwidth$</code>, and <code class="code">$Time$</code>. In addition to the standard
  3116. identifiers, an ffmpeg-specific <code class="code">$ext$</code> identifier is also
  3117. supported. When specified, <code class="command">ffmpeg</code> will replace <code class="code">$ext$</code>
  3118. in the file name with muxing format&rsquo;s extensions such as <code class="code">mp4</code>,
  3119. <code class="code">webm</code> etc.
  3120. </p>
  3121. <a name="Options-20"></a>
  3122. <h4 class="subsection">4.29.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-20" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-20" aria-hidden="true">TOC</a></span></h4>
  3123. <dl class="table">
  3124. <dt><samp class="option">adaptation_sets <var class="var">adaptation_sets</var></samp></dt>
  3125. <dd><p>Assign streams to adaptation sets, specified in the MPD manifest
  3126. <code class="code">AdaptationSets</code> section.
  3127. </p>
  3128. <p>An adaptation set contains a set of one or more streams accessed as a
  3129. single subset, e.g. corresponding streams encoded at different size
  3130. selectable by the user depending on the available bandwidth, or to
  3131. different audio streams with a different language.
  3132. </p>
  3133. <p>Each adaptation set is specified with the syntax:
  3134. </p><div class="example">
  3135. <pre class="example-preformatted">id=<var class="var">index</var>,streams=<var class="var">streams</var>
  3136. </pre></div>
  3137. <p>where <var class="var">index</var> must be a numerical index, and <var class="var">streams</var> is a
  3138. sequence of <code class="code">,</code>-separated stream indices. Multiple adaptation
  3139. sets can be specified, separated by spaces.
  3140. </p>
  3141. <p>To map all video (or audio) streams to an adaptation set, <code class="code">v</code> (or
  3142. <code class="code">a</code>) can be used as stream identifier instead of IDs.
  3143. </p>
  3144. <p>When no assignment is defined, this defaults to an adaptation set for
  3145. each stream.
  3146. </p>
  3147. <p>The following optional fields can also be specified:
  3148. </p>
  3149. <dl class="table">
  3150. <dt><samp class="option">descriptor</samp></dt>
  3151. <dd><p>Define the descriptor as defined by ISO/IEC 23009-1:2014/Amd.2:2015.
  3152. </p>
  3153. <p>For example:
  3154. </p><div class="example">
  3155. <pre class="example-preformatted">&lt;SupplementalProperty schemeIdUri=\&quot;urn:mpeg:dash:srd:2014\&quot; value=\&quot;0,0,0,1,1,2,2\&quot;/&gt;
  3156. </pre></div>
  3157. <p>The descriptor string should be a self-closing XML tag.
  3158. </p>
  3159. </dd>
  3160. <dt><samp class="option">frag_duration</samp></dt>
  3161. <dd><p>Override the global fragment duration specified with the
  3162. <samp class="option">frag_duration</samp> option.
  3163. </p>
  3164. </dd>
  3165. <dt><samp class="option">frag_type</samp></dt>
  3166. <dd><p>Override the global fragment type specified with the
  3167. <samp class="option">frag_type</samp> option.
  3168. </p>
  3169. </dd>
  3170. <dt><samp class="option">seg_duration</samp></dt>
  3171. <dd><p>Override the global segment duration specified with the
  3172. <samp class="option">seg_duration</samp> option.
  3173. </p>
  3174. </dd>
  3175. <dt><samp class="option">trick_id</samp></dt>
  3176. <dd><p>Mark an adaptation set as containing streams meant to be used for
  3177. Trick Mode for the referenced adaptation set.
  3178. </p></dd>
  3179. </dl>
  3180. <p>A few examples of possible values for the <samp class="option">adaptation_sets</samp>
  3181. option follow:
  3182. </p><div class="example">
  3183. <pre class="example-preformatted">id=0,seg_duration=2,frag_duration=1,frag_type=duration,streams=v id=1,seg_duration=2,frag_type=none,streams=a
  3184. </pre></div>
  3185. <div class="example">
  3186. <pre class="example-preformatted">id=0,seg_duration=2,frag_type=none,streams=0 id=1,seg_duration=10,frag_type=none,trick_id=0,streams=1
  3187. </pre></div>
  3188. </dd>
  3189. <dt><samp class="option">dash_segment_type <var class="var">type</var></samp></dt>
  3190. <dd><p>Set DASH segment files type.
  3191. </p>
  3192. <p>Possible values:
  3193. </p><dl class="table">
  3194. <dt>&lsquo;<samp class="samp">auto</samp>&rsquo;</dt>
  3195. <dd><p>The dash segment files format will be selected based on the stream
  3196. codec. This is the default mode.
  3197. </p></dd>
  3198. <dt>&lsquo;<samp class="samp">mp4</samp>&rsquo;</dt>
  3199. <dd><p>the dash segment files will be in ISOBMFF/MP4 format
  3200. </p></dd>
  3201. <dt>&lsquo;<samp class="samp">webm</samp>&rsquo;</dt>
  3202. <dd><p>the dash segment files will be in WebM format
  3203. </p></dd>
  3204. </dl>
  3205. </dd>
  3206. <dt><samp class="option">extra_window_size <var class="var">size</var></samp></dt>
  3207. <dd><p>Set the maximum number of segments kept outside of the manifest before
  3208. removing from disk.
  3209. </p>
  3210. </dd>
  3211. <dt><samp class="option">format_options <var class="var">options_list</var></samp></dt>
  3212. <dd><p>Set container format (mp4/webm) options using a <code class="code">:</code>-separated list of
  3213. key=value parameters. Values containing <code class="code">:</code> special characters must be
  3214. escaped.
  3215. </p>
  3216. </dd>
  3217. <dt><samp class="option">frag_duration <var class="var">duration</var></samp></dt>
  3218. <dd><p>Set the length in seconds of fragments within segments, fractional
  3219. value can also be set.
  3220. </p>
  3221. </dd>
  3222. <dt><samp class="option">frag_type <var class="var">type</var></samp></dt>
  3223. <dd><p>Set the type of interval for fragmentation.
  3224. </p>
  3225. <p>Possible values:
  3226. </p><dl class="table">
  3227. <dt>&lsquo;<samp class="samp">auto</samp>&rsquo;</dt>
  3228. <dd><p>set one fragment per segment
  3229. </p>
  3230. </dd>
  3231. <dt>&lsquo;<samp class="samp">every_frame</samp>&rsquo;</dt>
  3232. <dd><p>fragment at every frame
  3233. </p>
  3234. </dd>
  3235. <dt>&lsquo;<samp class="samp">duration</samp>&rsquo;</dt>
  3236. <dd><p>fragment at specific time intervals
  3237. </p>
  3238. </dd>
  3239. <dt>&lsquo;<samp class="samp">pframes</samp>&rsquo;</dt>
  3240. <dd><p>fragment at keyframes and following P-Frame reordering (Video only,
  3241. experimental)
  3242. </p></dd>
  3243. </dl>
  3244. </dd>
  3245. <dt><samp class="option">global_sidx <var class="var">bool</var></samp></dt>
  3246. <dd><p>Write global <code class="code">SIDX</code> atom. Applicable only for single file, mp4
  3247. output, non-streaming mode.
  3248. </p>
  3249. </dd>
  3250. <dt><samp class="option">hls_master_name <var class="var">file_name</var></samp></dt>
  3251. <dd><p>HLS master playlist name. Default is <samp class="file">master.m3u8</samp>.
  3252. </p>
  3253. </dd>
  3254. <dt><samp class="option">hls_playlist <var class="var">bool</var></samp></dt>
  3255. <dd><p>Generate HLS playlist files. The master playlist is generated with
  3256. filename specified by the <samp class="option">hls_master_name</samp> option. One media
  3257. playlist file is generated for each stream with filenames
  3258. <samp class="file">media_0.m3u8</samp>, <samp class="file">media_1.m3u8</samp>, etc.
  3259. </p>
  3260. </dd>
  3261. <dt><samp class="option">http_opts <var class="var">http_opts</var></samp></dt>
  3262. <dd><p>Specify a list of <code class="code">:</code>-separated key=value options to pass to the
  3263. underlying HTTP protocol. Applicable only for HTTP output.
  3264. </p>
  3265. </dd>
  3266. <dt><samp class="option">http_persistent <var class="var">bool</var></samp></dt>
  3267. <dd><p>Use persistent HTTP connections. Applicable only for HTTP output.
  3268. </p>
  3269. </dd>
  3270. <dt><samp class="option">http_user_agent <var class="var">user_agent</var></samp></dt>
  3271. <dd><p>Override User-Agent field in HTTP header. Applicable only for HTTP
  3272. output.
  3273. </p>
  3274. </dd>
  3275. <dt><samp class="option">ignore_io_errors <var class="var">bool</var></samp></dt>
  3276. <dd><p>Ignore IO errors during open and write. Useful for long-duration runs
  3277. with network output. This is disabled by default.
  3278. </p>
  3279. </dd>
  3280. <dt><samp class="option">index_correction <var class="var">bool</var></samp></dt>
  3281. <dd><p>Enable or disable segment index correction logic. Applicable only when
  3282. <samp class="option">use_template</samp> is enabled and <samp class="option">use_timeline</samp> is
  3283. disabled. This is disabled by default.
  3284. </p>
  3285. <p>When enabled, the logic monitors the flow of segment indexes. If a
  3286. streams&rsquo;s segment index value is not at the expected real time
  3287. position, then the logic corrects that index value.
  3288. </p>
  3289. <p>Typically this logic is needed in live streaming use cases. The
  3290. network bandwidth fluctuations are common during long run
  3291. streaming. Each fluctuation can cause the segment indexes fall behind
  3292. the expected real time position.
  3293. </p>
  3294. </dd>
  3295. <dt><samp class="option">init_seg_name <var class="var">init_name</var></samp></dt>
  3296. <dd><p>DASH-templated name to use for the initialization segment. Default is
  3297. <code class="code">init-stream$RepresentationID$.$ext$</code>. <code class="code">$ext$</code> is replaced
  3298. with the file name extension specific for the segment format.
  3299. </p>
  3300. </dd>
  3301. <dt><samp class="option">ldash <var class="var">bool</var></samp></dt>
  3302. <dd><p>Enable Low-latency Dash by constraining the presence and values of
  3303. some elements. This is disabled by default.
  3304. </p>
  3305. </dd>
  3306. <dt><samp class="option">lhls <var class="var">bool</var></samp></dt>
  3307. <dd><p>Enable Low-latency HLS (LHLS). Add <code class="code">#EXT-X-PREFETCH</code> tag with
  3308. current segment&rsquo;s URI. hls.js player folks are trying to standardize
  3309. an open LHLS spec. The draft spec is available at
  3310. <a class="url" href="https://github.com/video-dev/hlsjs-rfcs/blob/lhls-spec/proposals/0001-lhls.md">https://github.com/video-dev/hlsjs-rfcs/blob/lhls-spec/proposals/0001-lhls.md</a>.
  3311. </p>
  3312. <p>This option tries to comply with the above open spec. It enables
  3313. <samp class="option">streaming</samp> and <samp class="option">hls_playlist</samp> options automatically.
  3314. This is an experimental feature.
  3315. </p>
  3316. <p>Note: This is not Apple&rsquo;s version LHLS. See
  3317. <a class="url" href="https://datatracker.ietf.org/doc/html/draft-pantos-hls-rfc8216bis">https://datatracker.ietf.org/doc/html/draft-pantos-hls-rfc8216bis</a>
  3318. </p>
  3319. </dd>
  3320. <dt><samp class="option">master_m3u8_publish_rate <var class="var">segment_intervals_count</var></samp></dt>
  3321. <dd><p>Publish master playlist repeatedly every after specified number of
  3322. segment intervals.
  3323. </p>
  3324. </dd>
  3325. <dt><samp class="option">max_playback_rate <var class="var">rate</var></samp></dt>
  3326. <dd><p>Set the maximum playback rate indicated as appropriate for the
  3327. purposes of automatically adjusting playback latency and buffer
  3328. occupancy during normal playback by clients.
  3329. </p>
  3330. </dd>
  3331. <dt><samp class="option">media_seg_name <var class="var">segment_name</var></samp></dt>
  3332. <dd><p>DASH-templated name to use for the media segments. Default is
  3333. <code class="code">chunk-stream$RepresentationID$-$Number%05d$.$ext$</code>. <code class="code">$ext$</code>
  3334. is replaced with the file name extension specific for the segment
  3335. format.
  3336. </p>
  3337. </dd>
  3338. <dt><samp class="option">method <var class="var">method</var></samp></dt>
  3339. <dd><p>Use the given HTTP method to create output files. Generally set to <code class="code">PUT</code>
  3340. or <code class="code">POST</code>.
  3341. </p>
  3342. </dd>
  3343. <dt><samp class="option">min_playback_rate <var class="var">rate</var></samp></dt>
  3344. <dd><p>Set the minimum playback rate indicated as appropriate for the
  3345. purposes of automatically adjusting playback latency and buffer
  3346. occupancy during normal playback by clients.
  3347. </p>
  3348. </dd>
  3349. <dt><samp class="option">mpd_profile <var class="var">flags</var></samp></dt>
  3350. <dd><p>Set one or more MPD manifest profiles.
  3351. </p>
  3352. <p>Possible values:
  3353. </p><dl class="table">
  3354. <dt>&lsquo;<samp class="samp">dash</samp>&rsquo;</dt>
  3355. <dd><p>MPEG-DASH ISO Base media file format live profile
  3356. </p></dd>
  3357. <dt>&lsquo;<samp class="samp">dvb_dash</samp>&rsquo;</dt>
  3358. <dd><p>DVB-DASH profile
  3359. </p></dd>
  3360. </dl>
  3361. <p>Default value is <code class="code">dash</code>.
  3362. </p>
  3363. </dd>
  3364. <dt><samp class="option">remove_at_exit <var class="var">bool</var></samp></dt>
  3365. <dd><p>Enable or disable removal of all segments when finished. This is
  3366. disabled by default.
  3367. </p>
  3368. </dd>
  3369. <dt><samp class="option">seg_duration <var class="var">duration</var></samp></dt>
  3370. <dd><p>Set the segment length in seconds (fractional value can be set). The
  3371. value is treated as average segment duration when the
  3372. <samp class="option">use_template</samp> option is enabled and the <samp class="option">use_timeline</samp>
  3373. option is disabled and as minimum segment duration for all the other
  3374. use cases.
  3375. </p>
  3376. <p>Default value is <code class="code">5</code>.
  3377. </p>
  3378. </dd>
  3379. <dt><samp class="option">single_file <var class="var">bool</var></samp></dt>
  3380. <dd><p>Enable or disable storing all segments in one file, accessed using
  3381. byte ranges. This is disabled by default.
  3382. </p>
  3383. <p>The name of the single file can be specified with the
  3384. <samp class="option">single_file_name</samp> option, if not specified assume the basename
  3385. of the manifest file with the output format extension.
  3386. </p>
  3387. </dd>
  3388. <dt><samp class="option">single_file_name <var class="var">file_name</var></samp></dt>
  3389. <dd><p>DASH-templated name to use for the manifest <code class="code">baseURL</code>
  3390. element. Imply that the <samp class="option">single_file</samp> option is set to
  3391. <var class="var">true</var>. In the template, <code class="code">$ext$</code> is replaced with the file
  3392. name extension specific for the segment format.
  3393. </p>
  3394. </dd>
  3395. <dt><samp class="option">streaming <var class="var">bool</var></samp></dt>
  3396. <dd><p>Enable or disable chunk streaming mode of output. In chunk streaming
  3397. mode, each frame will be a <code class="code">moof</code> fragment which forms a
  3398. chunk. This is disabled by default.
  3399. </p>
  3400. </dd>
  3401. <dt><samp class="option">target_latency <var class="var">target_latency</var></samp></dt>
  3402. <dd><p>Set an intended target latency in seconds for serving (fractional
  3403. value can be set). Applicable only when the <samp class="option">streaming</samp> and
  3404. <samp class="option">write_prft</samp> options are enabled. This is an informative fields
  3405. clients can use to measure the latency of the service.
  3406. </p>
  3407. </dd>
  3408. <dt><samp class="option">timeout <var class="var">timeout</var></samp></dt>
  3409. <dd><p>Set timeout for socket I/O operations expressed in seconds (fractional
  3410. value can be set). Applicable only for HTTP output.
  3411. </p>
  3412. </dd>
  3413. <dt><samp class="option">update_period <var class="var">period</var></samp></dt>
  3414. <dd><p>Set the MPD update period, for dynamic content. The unit is
  3415. second. If set to <code class="code">0</code>, the period is automatically computed.
  3416. </p>
  3417. <p>Default value is <code class="code">0</code>.
  3418. </p>
  3419. </dd>
  3420. <dt><samp class="option">use_template <var class="var">bool</var></samp></dt>
  3421. <dd><p>Enable or disable use of <code class="code">SegmentTemplate</code> instead of
  3422. <code class="code">SegmentList</code> in the manifest. This is enabled by default.
  3423. </p>
  3424. </dd>
  3425. <dt><samp class="option">use_timeline <var class="var">bool</var></samp></dt>
  3426. <dd><p>Enable or disable use of <code class="code">SegmentTimeline</code> within the
  3427. <code class="code">SegmentTemplate</code> manifest section. This is enabled by default.
  3428. </p>
  3429. </dd>
  3430. <dt><samp class="option">utc_timing_url <var class="var">url</var></samp></dt>
  3431. <dd><p>URL of the page that will return the UTC timestamp in ISO
  3432. format, for example <code class="code">https://time.akamai.com/?iso</code>
  3433. </p>
  3434. </dd>
  3435. <dt><samp class="option">window_size <var class="var">size</var></samp></dt>
  3436. <dd><p>Set the maximum number of segments kept in the manifest, discard the
  3437. oldest one. This is useful for live streaming.
  3438. </p>
  3439. <p>If the value is <code class="code">0</code>, all segments are kept in the
  3440. manifest. Default value is <code class="code">0</code>.
  3441. </p>
  3442. </dd>
  3443. <dt><samp class="option">write_prft <var class="var">write_prft</var></samp></dt>
  3444. <dd><p>Write Producer Reference Time elements on supported streams. This also
  3445. enables writing prft boxes in the underlying muxer. Applicable only
  3446. when the <var class="var">utc_url</var> option is enabled. It is set to <var class="var">auto</var> by
  3447. default, in which case the muxer will attempt to enable it only in
  3448. modes that require it.
  3449. </p></dd>
  3450. </dl>
  3451. <a name="Example"></a>
  3452. <h4 class="subsection">4.29.2 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example" aria-hidden="true">TOC</a></span></h4>
  3453. <p>Generate a DASH output reading from an input source in realtime using
  3454. <code class="command">ffmpeg</code>.
  3455. </p>
  3456. <p>Two multimedia streams are generated from the input file, both
  3457. containing a video stream encoded through &lsquo;<samp class="samp">libx264</samp>&rsquo;, and an audio
  3458. stream encoded with &lsquo;<samp class="samp">libfdk_aac</samp>&rsquo;. The first multimedia stream
  3459. contains video with a bitrate of 800k and audio at the default rate,
  3460. the second with video scaled to 320x170 pixels at 300k and audio
  3461. resampled at 22005 Hz.
  3462. </p>
  3463. <p>The <samp class="option">window_size</samp> option keeps only the latest 5 segments with
  3464. the default duration of 5 seconds.
  3465. </p>
  3466. <div class="example">
  3467. <pre class="example-preformatted">ffmpeg -re -i &lt;input&gt; -map 0 -map 0 -c:a libfdk_aac -c:v libx264 \
  3468. -b:v:0 800k -profile:v:0 main \
  3469. -b:v:1 300k -s:v:1 320x170 -profile:v:1 baseline -ar:a:1 22050 \
  3470. -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 \
  3471. -use_timeline 1 -use_template 1 -window_size 5 \
  3472. -adaptation_sets &quot;id=0,streams=v id=1,streams=a&quot; \
  3473. -f dash /path/to/out.mpd
  3474. </pre></div>
  3475. <a name="daud"></a>
  3476. <h3 class="section">4.30 daud<span class="pull-right"><a class="anchor hidden-xs" href="#daud" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-daud" aria-hidden="true">TOC</a></span></h3>
  3477. <p>D-Cinema audio muxer.
  3478. </p>
  3479. <p>It accepts a single 6-channels audio stream resampled at 96000 Hz
  3480. encoded with the &lsquo;<samp class="samp">pcm_24daud</samp>&rsquo; codec.
  3481. </p>
  3482. <a name="Example-1"></a>
  3483. <h4 class="subsection">4.30.1 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-1" aria-hidden="true">TOC</a></span></h4>
  3484. <p>Use <code class="command">ffmpeg</code> to mux input audio to a &lsquo;<samp class="samp">5.1</samp>&rsquo; channel layout
  3485. resampled at 96000Hz:
  3486. </p><div class="example">
  3487. <pre class="example-preformatted">ffmpeg -i INPUT -af aresample=96000,pan=5.1 slow.302
  3488. </pre></div>
  3489. <p>For ffmpeg versions before 7.0 you might have to use the &lsquo;<samp class="samp">asetnsamples</samp>&rsquo;
  3490. filter to limit the muxed packet size, because this format does not support
  3491. muxing packets larger than 65535 bytes (3640 samples). For newer ffmpeg
  3492. versions audio is automatically packetized to 36000 byte (2000 sample) packets.
  3493. </p>
  3494. <a name="dv"></a>
  3495. <h3 class="section">4.31 dv<span class="pull-right"><a class="anchor hidden-xs" href="#dv" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-dv" aria-hidden="true">TOC</a></span></h3>
  3496. <p>DV (Digital Video) muxer.
  3497. </p>
  3498. <p>It accepts exactly one &lsquo;<samp class="samp">dvvideo</samp>&rsquo; video stream and at most two
  3499. &lsquo;<samp class="samp">pcm_s16</samp>&rsquo; audio streams. More constraints are defined by the
  3500. property of the video, which must correspond to a DV video supported
  3501. profile, and on the framerate.
  3502. </p>
  3503. <a name="Example-2"></a>
  3504. <h4 class="subsection">4.31.1 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-2" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-2" aria-hidden="true">TOC</a></span></h4>
  3505. <p>Use <code class="command">ffmpeg</code> to convert the input:
  3506. </p><div class="example">
  3507. <pre class="example-preformatted">ffmpeg -i INPUT -s:v 720x480 -pix_fmt yuv411p -r 29.97 -ac 2 -ar 48000 -y out.dv
  3508. </pre></div>
  3509. <a name="ffmetadata"></a>
  3510. <h3 class="section">4.32 ffmetadata<span class="pull-right"><a class="anchor hidden-xs" href="#ffmetadata" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ffmetadata" aria-hidden="true">TOC</a></span></h3>
  3511. <p>FFmpeg metadata muxer.
  3512. </p>
  3513. <p>This muxer writes the streams metadata in the &lsquo;<samp class="samp">ffmetadata</samp>&rsquo;
  3514. format.
  3515. </p>
  3516. <p>See <a data-manual="ffmpeg-formats" href="ffmpeg-formats.html#metadata">the Metadata chapter</a> for
  3517. information about the format.
  3518. </p>
  3519. <a name="Example-3"></a>
  3520. <h4 class="subsection">4.32.1 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-3" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-3" aria-hidden="true">TOC</a></span></h4>
  3521. <p>Use <code class="command">ffmpeg</code> to extract metadata from an input file to a <samp class="file">metadata.ffmeta</samp>
  3522. file in &lsquo;<samp class="samp">ffmetadata</samp>&rsquo; format:
  3523. </p><div class="example">
  3524. <pre class="example-preformatted">ffmpeg -i INPUT -f ffmetadata metadata.ffmeta
  3525. </pre></div>
  3526. <a class="anchor" id="fifo"></a><a name="fifo-1"></a>
  3527. <h3 class="section">4.33 fifo<span class="pull-right"><a class="anchor hidden-xs" href="#fifo-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-fifo-1" aria-hidden="true">TOC</a></span></h3>
  3528. <p>FIFO (First-In First-Out) muxer.
  3529. </p>
  3530. <p>The &lsquo;<samp class="samp">fifo</samp>&rsquo; pseudo-muxer allows the separation of encoding and
  3531. muxing by using a first-in-first-out queue and running the actual muxer
  3532. in a separate thread.
  3533. </p>
  3534. <p>This is especially useful in combination with
  3535. the <a class="ref" href="#tee">tee</a> muxer and can be used to send data to several
  3536. destinations with different reliability/writing speed/latency.
  3537. </p>
  3538. <p>The target muxer is either selected from the output name or specified
  3539. through the <samp class="option">fifo_format</samp> option.
  3540. </p>
  3541. <p>The behavior of the &lsquo;<samp class="samp">fifo</samp>&rsquo; muxer if the queue fills up or if the
  3542. output fails (e.g. if a packet cannot be written to the output) is
  3543. selectable:
  3544. </p><ul class="itemize mark-bullet">
  3545. <li>Output can be transparently restarted with configurable delay between
  3546. retries based on real time or time of the processed stream.
  3547. </li><li>Encoding can be blocked during temporary failure, or continue transparently
  3548. dropping packets in case the FIFO queue fills up.
  3549. </li></ul>
  3550. <p>API users should be aware that callback functions
  3551. (<code class="code">interrupt_callback</code>, <code class="code">io_open</code> and <code class="code">io_close</code>) used
  3552. within its <code class="code">AVFormatContext</code> must be thread-safe.
  3553. </p>
  3554. <a name="Options-21"></a>
  3555. <h4 class="subsection">4.33.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-21" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-21" aria-hidden="true">TOC</a></span></h4>
  3556. <dl class="table">
  3557. <dt><samp class="option">attempt_recovery <var class="var">bool</var></samp></dt>
  3558. <dd><p>If failure occurs, attempt to recover the output. This is especially
  3559. useful when used with network output, since it makes it possible to
  3560. restart streaming transparently. By default this option is set to
  3561. <code class="code">false</code>.
  3562. </p>
  3563. </dd>
  3564. <dt><samp class="option">drop_pkts_on_overflow <var class="var">bool</var></samp></dt>
  3565. <dd><p>If set to <code class="code">true</code>, in case the fifo queue fills up, packets will
  3566. be dropped rather than blocking the encoder. This makes it possible to
  3567. continue streaming without delaying the input, at the cost of omitting
  3568. part of the stream. By default this option is set to <code class="code">false</code>, so in
  3569. such cases the encoder will be blocked until the muxer processes some
  3570. of the packets and none of them is lost.
  3571. </p>
  3572. </dd>
  3573. <dt><samp class="option">fifo_format <var class="var">format_name</var></samp></dt>
  3574. <dd><p>Specify the format name. Useful if it cannot be guessed from the
  3575. output name suffix.
  3576. </p>
  3577. </dd>
  3578. <dt><samp class="option">format_opts <var class="var">options</var></samp></dt>
  3579. <dd><p>Specify format options for the underlying muxer. Muxer options can be
  3580. specified as a list of <var class="var">key</var>=<var class="var">value</var> pairs separated by &rsquo;:&rsquo;.
  3581. </p>
  3582. </dd>
  3583. <dt><samp class="option">max_recovery_attempts <var class="var">count</var></samp></dt>
  3584. <dd><p>Set maximum number of successive unsuccessful recovery attempts after
  3585. which the output fails permanently. By default this option is set to
  3586. <code class="code">0</code> (unlimited).
  3587. </p>
  3588. </dd>
  3589. <dt><samp class="option">queue_size <var class="var">size</var></samp></dt>
  3590. <dd><p>Specify size of the queue as a number of packets. Default value is
  3591. <code class="code">60</code>.
  3592. </p>
  3593. </dd>
  3594. <dt><samp class="option">recover_any_error <var class="var">bool</var></samp></dt>
  3595. <dd><p>If set to <code class="code">true</code>, recovery will be attempted regardless of type
  3596. of the error causing the failure. By default this option is set to
  3597. <code class="code">false</code> and in case of certain (usually permanent) errors the
  3598. recovery is not attempted even when the <samp class="option">attempt_recovery</samp>
  3599. option is set to <code class="code">true</code>.
  3600. </p>
  3601. </dd>
  3602. <dt><samp class="option">recovery_wait_streamtime <var class="var">bool</var></samp></dt>
  3603. <dd><p>If set to <code class="code">false</code>, the real time is used when waiting for the
  3604. recovery attempt (i.e. the recovery will be attempted after the time
  3605. specified by the <samp class="option">recovery_wait_time</samp> option).
  3606. </p>
  3607. <p>If set to <code class="code">true</code>, the time of the processed stream is taken into
  3608. account instead (i.e. the recovery will be attempted after discarding
  3609. the packets corresponding to the <samp class="option">recovery_wait_time</samp> option).
  3610. </p>
  3611. <p>By default this option is set to <code class="code">false</code>.
  3612. </p>
  3613. </dd>
  3614. <dt><samp class="option">recovery_wait_time <var class="var">duration</var></samp></dt>
  3615. <dd><p>Specify waiting time in seconds before the next recovery attempt after
  3616. previous unsuccessful recovery attempt. Default value is <code class="code">5</code>.
  3617. </p>
  3618. </dd>
  3619. <dt><samp class="option">restart_with_keyframe <var class="var">bool</var></samp></dt>
  3620. <dd><p>Specify whether to wait for the keyframe after recovering from
  3621. queue overflow or failure. This option is set to <code class="code">false</code> by default.
  3622. </p>
  3623. </dd>
  3624. <dt><samp class="option">timeshift <var class="var">duration</var></samp></dt>
  3625. <dd><p>Buffer the specified amount of packets and delay writing the
  3626. output. Note that the value of the <samp class="option">queue_size</samp> option must be
  3627. big enough to store the packets for timeshift. At the end of the input
  3628. the fifo buffer is flushed at realtime speed.
  3629. </p></dd>
  3630. </dl>
  3631. <a name="Example-4"></a>
  3632. <h4 class="subsection">4.33.2 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-4" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-4" aria-hidden="true">TOC</a></span></h4>
  3633. <p>Use <code class="command">ffmpeg</code> to stream to an RTMP server, continue processing
  3634. the stream at real-time rate even in case of temporary failure
  3635. (network outage) and attempt to recover streaming every second
  3636. indefinitely:
  3637. </p><div class="example">
  3638. <pre class="example-preformatted">ffmpeg -re -i ... -c:v libx264 -c:a aac -f fifo -fifo_format flv \
  3639. -drop_pkts_on_overflow 1 -attempt_recovery 1 -recovery_wait_time 1 \
  3640. -map 0:v -map 0:a rtmp://example.com/live/stream_name
  3641. </pre></div>
  3642. <a name="film_005fcpk"></a>
  3643. <h3 class="section">4.34 film_cpk<span class="pull-right"><a class="anchor hidden-xs" href="#film_005fcpk" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-film_005fcpk" aria-hidden="true">TOC</a></span></h3>
  3644. <p>Sega film (.cpk) muxer.
  3645. </p>
  3646. <p>This format was used as internal format for several Sega games.
  3647. </p>
  3648. <p>For more information regarding the Sega film file format, visit
  3649. <a class="url" href="http://wiki.multimedia.cx/index.php?title=Sega_FILM">http://wiki.multimedia.cx/index.php?title=Sega_FILM</a>.
  3650. </p>
  3651. <p>It accepts at maximum one &lsquo;<samp class="samp">cinepak</samp>&rsquo; or raw video stream, and at
  3652. maximum one audio stream.
  3653. </p>
  3654. <a name="filmstrip"></a>
  3655. <h3 class="section">4.35 filmstrip<span class="pull-right"><a class="anchor hidden-xs" href="#filmstrip" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-filmstrip" aria-hidden="true">TOC</a></span></h3>
  3656. <p>Adobe Filmstrip muxer.
  3657. </p>
  3658. <p>This format is used by several Adobe tools to store a generated filmstrip export. It
  3659. accepts a single raw video stream.
  3660. </p>
  3661. <a name="fits"></a>
  3662. <h3 class="section">4.36 fits<span class="pull-right"><a class="anchor hidden-xs" href="#fits" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-fits" aria-hidden="true">TOC</a></span></h3>
  3663. <p>Flexible Image Transport System (FITS) muxer.
  3664. </p>
  3665. <p>This image format is used to store astronomical data.
  3666. </p>
  3667. <p>For more information regarding the format, visit
  3668. <a class="url" href="https://fits.gsfc.nasa.gov">https://fits.gsfc.nasa.gov</a>.
  3669. </p>
  3670. <a name="flac"></a>
  3671. <h3 class="section">4.37 flac<span class="pull-right"><a class="anchor hidden-xs" href="#flac" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-flac" aria-hidden="true">TOC</a></span></h3>
  3672. <p>Raw FLAC audio muxer.
  3673. </p>
  3674. <p>This muxer accepts exactly one FLAC audio stream. Additionally, it is possible to add
  3675. images with disposition &lsquo;<samp class="samp">attached_pic</samp>&rsquo;.
  3676. </p>
  3677. <a name="Options-22"></a>
  3678. <h4 class="subsection">4.37.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-22" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-22" aria-hidden="true">TOC</a></span></h4>
  3679. <dl class="table">
  3680. <dt><samp class="option">write_header <var class="var">bool</var></samp></dt>
  3681. <dd><p>write the file header if set to <code class="code">true</code>, default is <code class="code">true</code>
  3682. </p></dd>
  3683. </dl>
  3684. <a name="Example-5"></a>
  3685. <h4 class="subsection">4.37.2 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-5" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-5" aria-hidden="true">TOC</a></span></h4>
  3686. <p>Use <code class="command">ffmpeg</code> to store the audio stream from an input file,
  3687. together with several pictures used with &lsquo;<samp class="samp">attached_pic</samp>&rsquo;
  3688. disposition:
  3689. </p><div class="example">
  3690. <pre class="example-preformatted">ffmpeg -i INPUT -i pic1.png -i pic2.jpg -map 0:a -map 1 -map 2 -disposition:v attached_pic OUTPUT
  3691. </pre></div>
  3692. <a name="flv"></a>
  3693. <h3 class="section">4.38 flv<span class="pull-right"><a class="anchor hidden-xs" href="#flv" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-flv" aria-hidden="true">TOC</a></span></h3>
  3694. <p>Adobe Flash Video Format muxer.
  3695. </p>
  3696. <a name="Options-23"></a>
  3697. <h4 class="subsection">4.38.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-23" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-23" aria-hidden="true">TOC</a></span></h4>
  3698. <dl class="table">
  3699. <dt><samp class="option">flvflags <var class="var">flags</var></samp></dt>
  3700. <dd><p>Possible values:
  3701. </p>
  3702. <dl class="table">
  3703. <dt>&lsquo;<samp class="samp">aac_seq_header_detect</samp>&rsquo;</dt>
  3704. <dd><p>Place AAC sequence header based on audio stream data.
  3705. </p>
  3706. </dd>
  3707. <dt>&lsquo;<samp class="samp">no_sequence_end</samp>&rsquo;</dt>
  3708. <dd><p>Disable sequence end tag.
  3709. </p>
  3710. </dd>
  3711. <dt>&lsquo;<samp class="samp">no_metadata</samp>&rsquo;</dt>
  3712. <dd><p>Disable metadata tag.
  3713. </p>
  3714. </dd>
  3715. <dt>&lsquo;<samp class="samp">no_duration_filesize</samp>&rsquo;</dt>
  3716. <dd><p>Disable duration and filesize in metadata when they are equal to zero
  3717. at the end of stream. (Be used to non-seekable living stream).
  3718. </p>
  3719. </dd>
  3720. <dt>&lsquo;<samp class="samp">add_keyframe_index</samp>&rsquo;</dt>
  3721. <dd><p>Used to facilitate seeking; particularly for HTTP pseudo streaming.
  3722. </p></dd>
  3723. </dl>
  3724. </dd>
  3725. </dl>
  3726. <a class="anchor" id="framecrc"></a><a name="framecrc-1"></a>
  3727. <h3 class="section">4.39 framecrc<span class="pull-right"><a class="anchor hidden-xs" href="#framecrc-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-framecrc-1" aria-hidden="true">TOC</a></span></h3>
  3728. <p>Per-packet CRC (Cyclic Redundancy Check) testing format.
  3729. </p>
  3730. <p>This muxer computes and prints the Adler-32 CRC for each audio
  3731. and video packet. By default audio frames are converted to signed
  3732. 16-bit raw audio and video frames to raw video before computing the
  3733. CRC.
  3734. </p>
  3735. <p>The output of the muxer consists of a line for each audio and video
  3736. packet of the form:
  3737. </p><div class="example">
  3738. <pre class="example-preformatted"><var class="var">stream_index</var>, <var class="var">packet_dts</var>, <var class="var">packet_pts</var>, <var class="var">packet_duration</var>, <var class="var">packet_size</var>, 0x<var class="var">CRC</var>
  3739. </pre></div>
  3740. <p><var class="var">CRC</var> is a hexadecimal number 0-padded to 8 digits containing the
  3741. CRC of the packet.
  3742. </p>
  3743. <a name="Examples-9"></a>
  3744. <h4 class="subsection">4.39.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-9" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-9" aria-hidden="true">TOC</a></span></h4>
  3745. <p>For example to compute the CRC of the audio and video frames in
  3746. <samp class="file">INPUT</samp>, converted to raw audio and video packets, and store it
  3747. in the file <samp class="file">out.crc</samp>:
  3748. </p><div class="example">
  3749. <pre class="example-preformatted">ffmpeg -i INPUT -f framecrc out.crc
  3750. </pre></div>
  3751. <p>To print the information to stdout, use the command:
  3752. </p><div class="example">
  3753. <pre class="example-preformatted">ffmpeg -i INPUT -f framecrc -
  3754. </pre></div>
  3755. <p>With <code class="command">ffmpeg</code>, you can select the output format to which the
  3756. audio and video frames are encoded before computing the CRC for each
  3757. packet by specifying the audio and video codec. For example, to
  3758. compute the CRC of each decoded input audio frame converted to PCM
  3759. unsigned 8-bit and of each decoded input video frame converted to
  3760. MPEG-2 video, use the command:
  3761. </p><div class="example">
  3762. <pre class="example-preformatted">ffmpeg -i INPUT -c:a pcm_u8 -c:v mpeg2video -f framecrc -
  3763. </pre></div>
  3764. <p>See also the <a class="ref" href="#crc">crc</a> muxer.
  3765. </p>
  3766. <a class="anchor" id="framehash"></a><a name="framehash-1"></a>
  3767. <h3 class="section">4.40 framehash<span class="pull-right"><a class="anchor hidden-xs" href="#framehash-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-framehash-1" aria-hidden="true">TOC</a></span></h3>
  3768. <p>Per-packet hash testing format.
  3769. </p>
  3770. <p>This muxer computes and prints a cryptographic hash for each audio
  3771. and video packet. This can be used for packet-by-packet equality
  3772. checks without having to individually do a binary comparison on each.
  3773. </p>
  3774. <p>By default audio frames are converted to signed 16-bit raw audio and
  3775. video frames to raw video before computing the hash, but the output
  3776. of explicit conversions to other codecs can also be used. It uses the
  3777. SHA-256 cryptographic hash function by default, but supports several
  3778. other algorithms.
  3779. </p>
  3780. <p>The output of the muxer consists of a line for each audio and video
  3781. packet of the form:
  3782. </p><div class="example">
  3783. <pre class="example-preformatted"><var class="var">stream_index</var>, <var class="var">packet_dts</var>, <var class="var">packet_pts</var>, <var class="var">packet_duration</var>, <var class="var">packet_size</var>, <var class="var">hash</var>
  3784. </pre></div>
  3785. <p><var class="var">hash</var> is a hexadecimal number representing the computed hash
  3786. for the packet.
  3787. </p>
  3788. <dl class="table">
  3789. <dt><samp class="option">hash <var class="var">algorithm</var></samp></dt>
  3790. <dd><p>Use the cryptographic hash function specified by the string <var class="var">algorithm</var>.
  3791. Supported values include <code class="code">MD5</code>, <code class="code">murmur3</code>, <code class="code">RIPEMD128</code>,
  3792. <code class="code">RIPEMD160</code>, <code class="code">RIPEMD256</code>, <code class="code">RIPEMD320</code>, <code class="code">SHA160</code>,
  3793. <code class="code">SHA224</code>, <code class="code">SHA256</code> (default), <code class="code">SHA512/224</code>, <code class="code">SHA512/256</code>,
  3794. <code class="code">SHA384</code>, <code class="code">SHA512</code>, <code class="code">CRC32</code> and <code class="code">adler32</code>.
  3795. </p>
  3796. </dd>
  3797. </dl>
  3798. <a name="Examples-10"></a>
  3799. <h4 class="subsection">4.40.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-10" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-10" aria-hidden="true">TOC</a></span></h4>
  3800. <p>To compute the SHA-256 hash of the audio and video frames in <samp class="file">INPUT</samp>,
  3801. converted to raw audio and video packets, and store it in the file
  3802. <samp class="file">out.sha256</samp>:
  3803. </p><div class="example">
  3804. <pre class="example-preformatted">ffmpeg -i INPUT -f framehash out.sha256
  3805. </pre></div>
  3806. <p>To print the information to stdout, using the MD5 hash function, use
  3807. the command:
  3808. </p><div class="example">
  3809. <pre class="example-preformatted">ffmpeg -i INPUT -f framehash -hash md5 -
  3810. </pre></div>
  3811. <p>See also the <a class="ref" href="#hash">hash</a> muxer.
  3812. </p>
  3813. <a class="anchor" id="framemd5"></a><a name="framemd5-1"></a>
  3814. <h3 class="section">4.41 framemd5<span class="pull-right"><a class="anchor hidden-xs" href="#framemd5-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-framemd5-1" aria-hidden="true">TOC</a></span></h3>
  3815. <p>Per-packet MD5 testing format.
  3816. </p>
  3817. <p>This is a variant of the <a class="ref" href="#framehash">framehash</a> muxer. Unlike that muxer,
  3818. it defaults to using the MD5 hash function.
  3819. </p>
  3820. <a name="Examples-11"></a>
  3821. <h4 class="subsection">4.41.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-11" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-11" aria-hidden="true">TOC</a></span></h4>
  3822. <p>To compute the MD5 hash of the audio and video frames in <samp class="file">INPUT</samp>,
  3823. converted to raw audio and video packets, and store it in the file
  3824. <samp class="file">out.md5</samp>:
  3825. </p><div class="example">
  3826. <pre class="example-preformatted">ffmpeg -i INPUT -f framemd5 out.md5
  3827. </pre></div>
  3828. <p>To print the information to stdout, use the command:
  3829. </p><div class="example">
  3830. <pre class="example-preformatted">ffmpeg -i INPUT -f framemd5 -
  3831. </pre></div>
  3832. <p>See also the <a class="ref" href="#framehash">framehash</a> and <a class="ref" href="#md5">md5</a> muxers.
  3833. </p>
  3834. <a class="anchor" id="gif"></a><a name="gif-2"></a>
  3835. <h3 class="section">4.42 gif<span class="pull-right"><a class="anchor hidden-xs" href="#gif-2" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-gif-2" aria-hidden="true">TOC</a></span></h3>
  3836. <p>Animated GIF muxer.
  3837. </p>
  3838. <p>Note that the GIF format has a very large time base: the delay between two frames can
  3839. therefore not be smaller than one centi second.
  3840. </p>
  3841. <a name="Options-24"></a>
  3842. <h4 class="subsection">4.42.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-24" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-24" aria-hidden="true">TOC</a></span></h4>
  3843. <dl class="table">
  3844. <dt><samp class="option">loop <var class="var">bool</var></samp></dt>
  3845. <dd><p>Set the number of times to loop the output. Use <code class="code">-1</code> for no loop, <code class="code">0</code>
  3846. for looping indefinitely (default).
  3847. </p>
  3848. </dd>
  3849. <dt><samp class="option">final_delay <var class="var">delay</var></samp></dt>
  3850. <dd><p>Force the delay (expressed in centiseconds) after the last frame. Each frame
  3851. ends with a delay until the next frame. The default is <code class="code">-1</code>, which is a
  3852. special value to tell the muxer to reuse the previous delay. In case of a
  3853. loop, you might want to customize this value to mark a pause for instance.
  3854. </p></dd>
  3855. </dl>
  3856. <a name="Example-6"></a>
  3857. <h4 class="subsection">4.42.2 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-6" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-6" aria-hidden="true">TOC</a></span></h4>
  3858. <p>Encode a gif looping 10 times, with a 5 seconds delay between
  3859. the loops:
  3860. </p><div class="example">
  3861. <pre class="example-preformatted">ffmpeg -i INPUT -loop 10 -final_delay 500 out.gif
  3862. </pre></div>
  3863. <p>Note 1: if you wish to extract the frames into separate GIF files, you need to
  3864. force the <a class="ref" href="#image2">image2</a> muxer:
  3865. </p><div class="example">
  3866. <pre class="example-preformatted">ffmpeg -i INPUT -c:v gif -f image2 &quot;out%d.gif&quot;
  3867. </pre></div>
  3868. <a name="gxf"></a>
  3869. <h3 class="section">4.43 gxf<span class="pull-right"><a class="anchor hidden-xs" href="#gxf" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-gxf" aria-hidden="true">TOC</a></span></h3>
  3870. <p>General eXchange Format (GXF) muxer.
  3871. </p>
  3872. <p>GXF was developed by Grass Valley Group, then standardized by SMPTE as SMPTE
  3873. 360M and was extended in SMPTE RDD 14-2007 to include high-definition video
  3874. resolutions.
  3875. </p>
  3876. <p>It accepts at most one video stream with codec &lsquo;<samp class="samp">mjpeg</samp>&rsquo;, or
  3877. &lsquo;<samp class="samp">mpeg1video</samp>&rsquo;, or &lsquo;<samp class="samp">mpeg2video</samp>&rsquo;, or &lsquo;<samp class="samp">dvvideo</samp>&rsquo; with resolution
  3878. &lsquo;<samp class="samp">512x480</samp>&rsquo; or &lsquo;<samp class="samp">608x576</samp>&rsquo;, and several audio streams with rate 48000Hz
  3879. and codec &lsquo;<samp class="samp">pcm16_le</samp>&rsquo;.
  3880. </p>
  3881. <a class="anchor" id="hash"></a><a name="hash-1"></a>
  3882. <h3 class="section">4.44 hash<span class="pull-right"><a class="anchor hidden-xs" href="#hash-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-hash-1" aria-hidden="true">TOC</a></span></h3>
  3883. <p>Hash testing format.
  3884. </p>
  3885. <p>This muxer computes and prints a cryptographic hash of all the input
  3886. audio and video frames. This can be used for equality checks without
  3887. having to do a complete binary comparison.
  3888. </p>
  3889. <p>By default audio frames are converted to signed 16-bit raw audio and
  3890. video frames to raw video before computing the hash, but the output
  3891. of explicit conversions to other codecs can also be used. Timestamps
  3892. are ignored. It uses the SHA-256 cryptographic hash function by default,
  3893. but supports several other algorithms.
  3894. </p>
  3895. <p>The output of the muxer consists of a single line of the form:
  3896. <var class="var">algo</var>=<var class="var">hash</var>, where <var class="var">algo</var> is a short string representing
  3897. the hash function used, and <var class="var">hash</var> is a hexadecimal number
  3898. representing the computed hash.
  3899. </p>
  3900. <dl class="table">
  3901. <dt><samp class="option">hash <var class="var">algorithm</var></samp></dt>
  3902. <dd><p>Use the cryptographic hash function specified by the string <var class="var">algorithm</var>.
  3903. Supported values include <code class="code">MD5</code>, <code class="code">murmur3</code>, <code class="code">RIPEMD128</code>,
  3904. <code class="code">RIPEMD160</code>, <code class="code">RIPEMD256</code>, <code class="code">RIPEMD320</code>, <code class="code">SHA160</code>,
  3905. <code class="code">SHA224</code>, <code class="code">SHA256</code> (default), <code class="code">SHA512/224</code>, <code class="code">SHA512/256</code>,
  3906. <code class="code">SHA384</code>, <code class="code">SHA512</code>, <code class="code">CRC32</code> and <code class="code">adler32</code>.
  3907. </p>
  3908. </dd>
  3909. </dl>
  3910. <a name="Examples-12"></a>
  3911. <h4 class="subsection">4.44.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-12" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-12" aria-hidden="true">TOC</a></span></h4>
  3912. <p>To compute the SHA-256 hash of the input converted to raw audio and
  3913. video, and store it in the file <samp class="file">out.sha256</samp>:
  3914. </p><div class="example">
  3915. <pre class="example-preformatted">ffmpeg -i INPUT -f hash out.sha256
  3916. </pre></div>
  3917. <p>To print an MD5 hash to stdout use the command:
  3918. </p><div class="example">
  3919. <pre class="example-preformatted">ffmpeg -i INPUT -f hash -hash md5 -
  3920. </pre></div>
  3921. <p>See also the <a class="ref" href="#framehash">framehash</a> muxer.
  3922. </p>
  3923. <a class="anchor" id="hds"></a><a name="hds-1"></a>
  3924. <h3 class="section">4.45 hds<span class="pull-right"><a class="anchor hidden-xs" href="#hds-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-hds-1" aria-hidden="true">TOC</a></span></h3>
  3925. <p>HTTP Dynamic Streaming (HDS) muxer.
  3926. </p>
  3927. <p>HTTP dynamic streaming, or HDS, is an adaptive bitrate streaming method
  3928. developed by Adobe. HDS delivers MP4 video content over HTTP connections. HDS
  3929. can be used for on-demand streaming or live streaming.
  3930. </p>
  3931. <p>This muxer creates an .f4m (Adobe Flash Media Manifest File) manifest, an .abst
  3932. (Adobe Bootstrap File) for each stream, and segment files in a directory
  3933. specified as the output.
  3934. </p>
  3935. <p>These needs to be accessed by an HDS player through HTTPS for it to be able to
  3936. perform playback on the generated stream.
  3937. </p>
  3938. <a name="Options-25"></a>
  3939. <h4 class="subsection">4.45.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-25" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-25" aria-hidden="true">TOC</a></span></h4>
  3940. <dl class="table">
  3941. <dt><samp class="option">extra_window_size <var class="var">int</var></samp></dt>
  3942. <dd><p>number of fragments kept outside of the manifest before removing from disk
  3943. </p>
  3944. </dd>
  3945. <dt><samp class="option">min_frag_duration <var class="var">microseconds</var></samp></dt>
  3946. <dd><p>minimum fragment duration (in microseconds), default value is 1 second
  3947. (<code class="code">10000000</code>)
  3948. </p>
  3949. </dd>
  3950. <dt><samp class="option">remove_at_exit <var class="var">bool</var></samp></dt>
  3951. <dd><p>remove all fragments when finished when set to <code class="code">true</code>
  3952. </p>
  3953. </dd>
  3954. <dt><samp class="option">window_size <var class="var">int</var></samp></dt>
  3955. <dd><p>number of fragments kept in the manifest, if set to a value different from
  3956. <code class="code">0</code>. By default all segments are kept in the output directory.
  3957. </p></dd>
  3958. </dl>
  3959. <a name="Example-7"></a>
  3960. <h4 class="subsection">4.45.2 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-7" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-7" aria-hidden="true">TOC</a></span></h4>
  3961. <p>Use <code class="command">ffmpeg</code> to generate HDS files to the <samp class="file">output.hds</samp> directory in
  3962. real-time rate:
  3963. </p><div class="example">
  3964. <pre class="example-preformatted">ffmpeg -re -i INPUT -f hds -b:v 200k output.hds
  3965. </pre></div>
  3966. <a class="anchor" id="hls"></a><a name="hls-2"></a>
  3967. <h3 class="section">4.46 hls<span class="pull-right"><a class="anchor hidden-xs" href="#hls-2" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-hls-2" aria-hidden="true">TOC</a></span></h3>
  3968. <p>Apple HTTP Live Streaming muxer that segments MPEG-TS according to
  3969. the HTTP Live Streaming (HLS) specification.
  3970. </p>
  3971. <p>It creates a playlist file, and one or more segment files. The output filename
  3972. specifies the playlist filename.
  3973. </p>
  3974. <p>By default, the muxer creates a file for each segment produced. These files
  3975. have the same name as the playlist, followed by a sequential number and a
  3976. .ts extension.
  3977. </p>
  3978. <p>Make sure to require a closed GOP when encoding and to set the GOP
  3979. size to fit your segment time constraint.
  3980. </p>
  3981. <p>For example, to convert an input file with <code class="command">ffmpeg</code>:
  3982. </p><div class="example">
  3983. <pre class="example-preformatted">ffmpeg -i in.mkv -c:v h264 -flags +cgop -g 30 -hls_time 1 out.m3u8
  3984. </pre></div>
  3985. <p>This example will produce the playlist, <samp class="file">out.m3u8</samp>, and segment files:
  3986. <samp class="file">out0.ts</samp>, <samp class="file">out1.ts</samp>, <samp class="file">out2.ts</samp>, etc.
  3987. </p>
  3988. <p>See also the <a class="ref" href="#segment">segment</a> muxer, which provides a more generic and
  3989. flexible implementation of a segmenter, and can be used to perform HLS
  3990. segmentation.
  3991. </p>
  3992. <a name="Options-26"></a>
  3993. <h4 class="subsection">4.46.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-26" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-26" aria-hidden="true">TOC</a></span></h4>
  3994. <dl class="table">
  3995. <dt><samp class="option">hls_init_time <var class="var">duration</var></samp></dt>
  3996. <dd><p>Set the initial target segment length. Default value is <var class="var">0</var>.
  3997. </p>
  3998. <p><var class="var">duration</var> must be a time duration specification,
  3999. see <a data-manual="ffmpeg-utils" href="ffmpeg-utils.html#time-duration-syntax">the Time duration section in the ffmpeg-utils(1) manual</a>.
  4000. </p>
  4001. <p>Segment will be cut on the next key frame after this time has passed on the
  4002. first m3u8 list. After the initial playlist is filled, <code class="command">ffmpeg</code> will cut
  4003. segments at duration equal to <samp class="option">hls_time</samp>.
  4004. </p>
  4005. </dd>
  4006. <dt><samp class="option">hls_time <var class="var">duration</var></samp></dt>
  4007. <dd><p>Set the target segment length. Default value is 2.
  4008. </p>
  4009. <p><var class="var">duration</var> must be a time duration specification,
  4010. see <a data-manual="ffmpeg-utils" href="ffmpeg-utils.html#time-duration-syntax">the Time duration section in the ffmpeg-utils(1) manual</a>.
  4011. Segment will be cut on the next key frame after this time has passed.
  4012. </p>
  4013. </dd>
  4014. <dt><samp class="option">hls_list_size <var class="var">size</var></samp></dt>
  4015. <dd><p>Set the maximum number of playlist entries. If set to 0 the list file
  4016. will contain all the segments. Default value is 5.
  4017. </p>
  4018. </dd>
  4019. <dt><samp class="option">hls_delete_threshold <var class="var">size</var></samp></dt>
  4020. <dd><p>Set the number of unreferenced segments to keep on disk before <code class="code">hls_flags delete_segments</code>
  4021. deletes them. Increase this to allow continue clients to download segments which
  4022. were recently referenced in the playlist. Default value is 1, meaning segments older than
  4023. <samp class="option">hls_list_size+1</samp> will be deleted.
  4024. </p>
  4025. </dd>
  4026. <dt><samp class="option">hls_start_number_source <var class="var">source</var></samp></dt>
  4027. <dd><p>Start the playlist sequence number (<code class="code">#EXT-X-MEDIA-SEQUENCE</code>) according to the specified source.
  4028. Unless <samp class="option">hls_flags single_file</samp> is set, it also specifies source of starting sequence numbers of
  4029. segment and subtitle filenames. In any case, if <samp class="option">hls_flags append_list</samp>
  4030. is set and read playlist sequence number is greater than the specified start sequence number,
  4031. then that value will be used as start value.
  4032. </p>
  4033. <p>It accepts the following values:
  4034. </p>
  4035. <dl class="table">
  4036. <dt><samp class="option">generic (default)</samp></dt>
  4037. <dd><p>Set the start numbers according to the <samp class="option">start_number</samp> option value.
  4038. </p>
  4039. </dd>
  4040. <dt><samp class="option">epoch</samp></dt>
  4041. <dd><p>Set the start number as the seconds since epoch (1970-01-01 00:00:00).
  4042. </p>
  4043. </dd>
  4044. <dt><samp class="option">epoch_us</samp></dt>
  4045. <dd><p>Set the start number as the microseconds since epoch (1970-01-01 00:00:00).
  4046. </p>
  4047. </dd>
  4048. <dt><samp class="option">datetime</samp></dt>
  4049. <dd><p>Set the start number based on the current date/time as YYYYmmddHHMMSS. e.g. 20161231235759.
  4050. </p></dd>
  4051. </dl>
  4052. </dd>
  4053. <dt><samp class="option">start_number <var class="var">number</var></samp></dt>
  4054. <dd><p>Start the playlist sequence number (<code class="code">#EXT-X-MEDIA-SEQUENCE</code>) from the specified <var class="var">number</var>
  4055. when <samp class="option">hls_start_number_source</samp> value is <var class="var">generic</var>. (This is the default case.)
  4056. Unless <samp class="option">hls_flags single_file</samp> is set, it also specifies starting sequence numbers of segment and subtitle filenames.
  4057. Default value is 0.
  4058. </p>
  4059. </dd>
  4060. <dt><samp class="option">hls_allow_cache <var class="var">bool</var></samp></dt>
  4061. <dd><p>Explicitly set whether the client MAY (1) or MUST NOT (0) cache media segments.
  4062. </p>
  4063. </dd>
  4064. <dt><samp class="option">hls_base_url <var class="var">baseurl</var></samp></dt>
  4065. <dd><p>Append <var class="var">baseurl</var> to every entry in the playlist.
  4066. Useful to generate playlists with absolute paths.
  4067. </p>
  4068. <p>Note that the playlist sequence number must be unique for each segment
  4069. and it is not to be confused with the segment filename sequence number
  4070. which can be cyclic, for example if the <samp class="option">wrap</samp> option is
  4071. specified.
  4072. </p>
  4073. </dd>
  4074. <dt><samp class="option">hls_segment_filename <var class="var">filename</var></samp></dt>
  4075. <dd><p>Set the segment filename. Unless the <samp class="option">hls_flags</samp> option is set with
  4076. &lsquo;<samp class="samp">single_file</samp>&rsquo;, <var class="var">filename</var> is used as a string format with the
  4077. segment number appended.
  4078. </p>
  4079. <p>For example:
  4080. </p><div class="example">
  4081. <pre class="example-preformatted">ffmpeg -i in.nut -hls_segment_filename 'file%03d.ts' out.m3u8
  4082. </pre></div>
  4083. <p>will produce the playlist, <samp class="file">out.m3u8</samp>, and segment files:
  4084. <samp class="file">file000.ts</samp>, <samp class="file">file001.ts</samp>, <samp class="file">file002.ts</samp>, etc.
  4085. </p>
  4086. <p><var class="var">filename</var> may contain a full path or relative path specification,
  4087. but only the file name part without any path will be contained in the m3u8 segment list.
  4088. Should a relative path be specified, the path of the created segment
  4089. files will be relative to the current working directory.
  4090. When <samp class="option">strftime_mkdir</samp> is set, the whole expanded value of <var class="var">filename</var> will be written into the m3u8 segment list.
  4091. </p>
  4092. <p>When <samp class="option">var_stream_map</samp> is set with two or more variant streams, the
  4093. <var class="var">filename</var> pattern must contain the string &quot;%v&quot;, and this string will be
  4094. expanded to the position of variant stream index in the generated segment file
  4095. names.
  4096. </p>
  4097. <p>For example:
  4098. </p><div class="example">
  4099. <pre class="example-preformatted">ffmpeg -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  4100. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map &quot;v:0,a:0 v:1,a:1&quot; \
  4101. -hls_segment_filename 'file_%v_%03d.ts' out_%v.m3u8
  4102. </pre></div>
  4103. <p>will produce the playlists segment file sets:
  4104. <samp class="file">file_0_000.ts</samp>, <samp class="file">file_0_001.ts</samp>, <samp class="file">file_0_002.ts</samp>, etc. and
  4105. <samp class="file">file_1_000.ts</samp>, <samp class="file">file_1_001.ts</samp>, <samp class="file">file_1_002.ts</samp>, etc.
  4106. </p>
  4107. <p>The string &quot;%v&quot; may be present in the filename or in the last directory name
  4108. containing the file, but only in one of them. (Additionally, %v may appear multiple times in the last
  4109. sub-directory or filename.) If the string %v is present in the directory name, then
  4110. sub-directories are created after expanding the directory name pattern. This
  4111. enables creation of segments corresponding to different variant streams in
  4112. subdirectories.
  4113. </p>
  4114. <p>For example:
  4115. </p><div class="example">
  4116. <pre class="example-preformatted">ffmpeg -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  4117. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map &quot;v:0,a:0 v:1,a:1&quot; \
  4118. -hls_segment_filename 'vs%v/file_%03d.ts' vs%v/out.m3u8
  4119. </pre></div>
  4120. <p>will produce the playlists segment file sets:
  4121. <samp class="file">vs0/file_000.ts</samp>, <samp class="file">vs0/file_001.ts</samp>, <samp class="file">vs0/file_002.ts</samp>, etc. and
  4122. <samp class="file">vs1/file_000.ts</samp>, <samp class="file">vs1/file_001.ts</samp>, <samp class="file">vs1/file_002.ts</samp>, etc.
  4123. </p>
  4124. </dd>
  4125. <dt><samp class="option">strftime <var class="var">bool</var></samp></dt>
  4126. <dd><p>Use <code class="code">strftime()</code> on <var class="var">filename</var> to expand the segment filename with
  4127. localtime. The segment number is also available in this mode, but to use it,
  4128. you need to set &lsquo;<samp class="samp">second_level_segment_index</samp>&rsquo; in the <samp class="option">hls_flag</samp> and
  4129. %%d will be the specifier.
  4130. </p>
  4131. <p>For example:
  4132. </p><div class="example">
  4133. <pre class="example-preformatted">ffmpeg -i in.nut -strftime 1 -hls_segment_filename 'file-%Y%m%d-%s.ts' out.m3u8
  4134. </pre></div>
  4135. <p>will produce the playlist, <samp class="file">out.m3u8</samp>, and segment files:
  4136. <samp class="file">file-20160215-1455569023.ts</samp>, <samp class="file">file-20160215-1455569024.ts</samp>, etc.
  4137. Note: On some systems/environments, the <code class="code">%s</code> specifier is not
  4138. available. See <code class="code">strftime()</code> documentation.
  4139. </p>
  4140. <p>For example:
  4141. </p><div class="example">
  4142. <pre class="example-preformatted">ffmpeg -i in.nut -strftime 1 -hls_flags second_level_segment_index -hls_segment_filename 'file-%Y%m%d-%%04d.ts' out.m3u8
  4143. </pre></div>
  4144. <p>will produce the playlist, <samp class="file">out.m3u8</samp>, and segment files:
  4145. <samp class="file">file-20160215-0001.ts</samp>, <samp class="file">file-20160215-0002.ts</samp>, etc.
  4146. </p>
  4147. </dd>
  4148. <dt><samp class="option">strftime_mkdir <var class="var">bool</var></samp></dt>
  4149. <dd><p>Used together with <samp class="option">strftime</samp>, it will create all subdirectories which
  4150. are present in the expanded values of option <samp class="option">hls_segment_filename</samp>.
  4151. </p>
  4152. <p>For example:
  4153. </p><div class="example">
  4154. <pre class="example-preformatted">ffmpeg -i in.nut -strftime 1 -strftime_mkdir 1 -hls_segment_filename '%Y%m%d/file-%Y%m%d-%s.ts' out.m3u8
  4155. </pre></div>
  4156. <p>will create a directory <samp class="file">201560215</samp> (if it does not exist), and then
  4157. produce the playlist, <samp class="file">out.m3u8</samp>, and segment files:
  4158. <samp class="file">20160215/file-20160215-1455569023.ts</samp>,
  4159. <samp class="file">20160215/file-20160215-1455569024.ts</samp>, etc.
  4160. </p>
  4161. <p>For example:
  4162. </p><div class="example">
  4163. <pre class="example-preformatted">ffmpeg -i in.nut -strftime 1 -strftime_mkdir 1 -hls_segment_filename '%Y/%m/%d/file-%Y%m%d-%s.ts' out.m3u8
  4164. </pre></div>
  4165. <p>will create a directory hierarchy <samp class="file">2016/02/15</samp> (if any of them do not
  4166. exist), and then produce the playlist, <samp class="file">out.m3u8</samp>, and segment files:
  4167. <samp class="file">2016/02/15/file-20160215-1455569023.ts</samp>,
  4168. <samp class="file">2016/02/15/file-20160215-1455569024.ts</samp>, etc.
  4169. </p>
  4170. </dd>
  4171. <dt><samp class="option">hls_segment_options <var class="var">options_list</var></samp></dt>
  4172. <dd><p>Set output format options using a :-separated list of key=value
  4173. parameters. Values containing <code class="code">:</code> special characters must be
  4174. escaped.
  4175. </p>
  4176. </dd>
  4177. <dt><samp class="option">hls_key_info_file <var class="var">key_info_file</var></samp></dt>
  4178. <dd><p>Use the information in <var class="var">key_info_file</var> for segment encryption. The first
  4179. line of <var class="var">key_info_file</var> specifies the key URI written to the playlist. The
  4180. key URL is used to access the encryption key during playback. The second line
  4181. specifies the path to the key file used to obtain the key during the encryption
  4182. process. The key file is read as a single packed array of 16 octets in binary
  4183. format. The optional third line specifies the initialization vector (IV) as a
  4184. hexadecimal string to be used instead of the segment sequence number (default)
  4185. for encryption. Changes to <var class="var">key_info_file</var> will result in segment
  4186. encryption with the new key/IV and an entry in the playlist for the new key
  4187. URI/IV if <samp class="option">hls_flags periodic_rekey</samp> is enabled.
  4188. </p>
  4189. <p>Key info file format:
  4190. </p><div class="example">
  4191. <pre class="example-preformatted"><var class="var">key URI</var>
  4192. <var class="var">key file path</var>
  4193. <var class="var">IV</var> (optional)
  4194. </pre></div>
  4195. <p>Example key URIs:
  4196. </p><div class="example">
  4197. <pre class="example-preformatted">http://server/file.key
  4198. /path/to/file.key
  4199. file.key
  4200. </pre></div>
  4201. <p>Example key file paths:
  4202. </p><div class="example">
  4203. <pre class="example-preformatted">file.key
  4204. /path/to/file.key
  4205. </pre></div>
  4206. <p>Example IV:
  4207. </p><div class="example">
  4208. <pre class="example-preformatted">0123456789ABCDEF0123456789ABCDEF
  4209. </pre></div>
  4210. <p>Key info file example:
  4211. </p><div class="example">
  4212. <pre class="example-preformatted">http://server/file.key
  4213. /path/to/file.key
  4214. 0123456789ABCDEF0123456789ABCDEF
  4215. </pre></div>
  4216. <p>Example shell script:
  4217. </p><div class="example">
  4218. <pre class="example-preformatted">#!/bin/sh
  4219. BASE_URL=${1:-'.'}
  4220. openssl rand 16 &gt; file.key
  4221. echo $BASE_URL/file.key &gt; file.keyinfo
  4222. echo file.key &gt;&gt; file.keyinfo
  4223. echo $(openssl rand -hex 16) &gt;&gt; file.keyinfo
  4224. ffmpeg -f lavfi -re -i testsrc -c:v h264 -hls_flags delete_segments \
  4225. -hls_key_info_file file.keyinfo out.m3u8
  4226. </pre></div>
  4227. </dd>
  4228. <dt><samp class="option">hls_enc <var class="var">bool</var></samp></dt>
  4229. <dd><p>Enable (1) or disable (0) the AES128 encryption.
  4230. When enabled every segment generated is encrypted and the encryption key
  4231. is saved as <var class="var">playlist name</var>.key.
  4232. </p>
  4233. </dd>
  4234. <dt><samp class="option">hls_enc_key <var class="var">key</var></samp></dt>
  4235. <dd><p>Specify a 16-octet key to encrypt the segments, by default it is randomly
  4236. generated.
  4237. </p>
  4238. </dd>
  4239. <dt><samp class="option">hls_enc_key_url <var class="var">keyurl</var></samp></dt>
  4240. <dd><p>If set, <var class="var">keyurl</var> is prepended instead of <var class="var">baseurl</var> to the key filename
  4241. in the playlist.
  4242. </p>
  4243. </dd>
  4244. <dt><samp class="option">hls_enc_iv <var class="var">iv</var></samp></dt>
  4245. <dd><p>Specify the 16-octet initialization vector for every segment instead of the
  4246. autogenerated ones.
  4247. </p>
  4248. </dd>
  4249. <dt><samp class="option">hls_segment_type <var class="var">flags</var></samp></dt>
  4250. <dd><p>Possible values:
  4251. </p>
  4252. <dl class="table">
  4253. <dt>&lsquo;<samp class="samp">mpegts</samp>&rsquo;</dt>
  4254. <dd><p>Output segment files in MPEG-2 Transport Stream format. This is
  4255. compatible with all HLS versions.
  4256. </p>
  4257. </dd>
  4258. <dt>&lsquo;<samp class="samp">fmp4</samp>&rsquo;</dt>
  4259. <dd><p>Output segment files in fragmented MP4 format, similar to MPEG-DASH.
  4260. fmp4 files may be used in HLS version 7 and above.
  4261. </p></dd>
  4262. </dl>
  4263. </dd>
  4264. <dt><samp class="option">hls_fmp4_init_filename <var class="var">filename</var></samp></dt>
  4265. <dd><p>Set filename for the fragment files header file, default filename is <samp class="file">init.mp4</samp>.
  4266. </p>
  4267. <p>When <samp class="option">strftime</samp> is enabled, <var class="var">filename</var> is expanded to the segment filename with localtime.
  4268. </p>
  4269. <p>For example:
  4270. </p><div class="example">
  4271. <pre class="example-preformatted">ffmpeg -i in.nut -hls_segment_type fmp4 -strftime 1 -hls_fmp4_init_filename &quot;%s_init.mp4&quot; out.m3u8
  4272. </pre></div>
  4273. <p>will produce init like this <samp class="file">1602678741_init.mp4</samp>.
  4274. </p>
  4275. </dd>
  4276. <dt><samp class="option">hls_fmp4_init_resend <var class="var">bool</var></samp></dt>
  4277. <dd><p>Resend init file after m3u8 file refresh every time, default is <var class="var">0</var>.
  4278. </p>
  4279. <p>When <samp class="option">var_stream_map</samp> is set with two or more variant streams, the
  4280. <var class="var">filename</var> pattern must contain the string &quot;%v&quot;, this string specifies
  4281. the position of variant stream index in the generated init file names.
  4282. The string &quot;%v&quot; may be present in the filename or in the last directory name
  4283. containing the file. If the string is present in the directory name, then
  4284. sub-directories are created after expanding the directory name pattern. This
  4285. enables creation of init files corresponding to different variant streams in
  4286. subdirectories.
  4287. </p>
  4288. </dd>
  4289. <dt><samp class="option">hls_flags <var class="var">flags</var></samp></dt>
  4290. <dd><p>Possible values:
  4291. </p>
  4292. <dl class="table">
  4293. <dt>&lsquo;<samp class="samp">single_file</samp>&rsquo;</dt>
  4294. <dd><p>If this flag is set, the muxer will store all segments in a single MPEG-TS
  4295. file, and will use byte ranges in the playlist. HLS playlists generated with
  4296. this way will have the version number 4.
  4297. </p>
  4298. <p>For example:
  4299. </p><div class="example">
  4300. <pre class="example-preformatted">ffmpeg -i in.nut -hls_flags single_file out.m3u8
  4301. </pre></div>
  4302. <p>will produce the playlist, <samp class="file">out.m3u8</samp>, and a single segment file,
  4303. <samp class="file">out.ts</samp>.
  4304. </p>
  4305. </dd>
  4306. <dt>&lsquo;<samp class="samp">delete_segments</samp>&rsquo;</dt>
  4307. <dd><p>Segment files removed from the playlist are deleted after a period of time
  4308. equal to the duration of the segment plus the duration of the playlist.
  4309. </p>
  4310. </dd>
  4311. <dt>&lsquo;<samp class="samp">append_list</samp>&rsquo;</dt>
  4312. <dd><p>Append new segments into the end of old segment list,
  4313. and remove the <code class="code">#EXT-X-ENDLIST</code> from the old segment list.
  4314. </p>
  4315. </dd>
  4316. <dt>&lsquo;<samp class="samp">round_durations</samp>&rsquo;</dt>
  4317. <dd><p>Round the duration info in the playlist file segment info to integer
  4318. values, instead of using floating point.
  4319. If there are no other features requiring higher HLS versions be used,
  4320. then this will allow <code class="command">ffmpeg</code> to output a HLS version 2 m3u8.
  4321. </p>
  4322. </dd>
  4323. <dt>&lsquo;<samp class="samp">discont_start</samp>&rsquo;</dt>
  4324. <dd><p>Add the <code class="code">#EXT-X-DISCONTINUITY</code> tag to the playlist, before the
  4325. first segment&rsquo;s information.
  4326. </p>
  4327. </dd>
  4328. <dt>&lsquo;<samp class="samp">omit_endlist</samp>&rsquo;</dt>
  4329. <dd><p>Do not append the <code class="code">EXT-X-ENDLIST</code> tag at the end of the playlist.
  4330. </p>
  4331. </dd>
  4332. <dt>&lsquo;<samp class="samp">periodic_rekey</samp>&rsquo;</dt>
  4333. <dd><p>The file specified by <code class="code">hls_key_info_file</code> will be checked periodically and
  4334. detect updates to the encryption info. Be sure to replace this file atomically,
  4335. including the file containing the AES encryption key.
  4336. </p>
  4337. </dd>
  4338. <dt>&lsquo;<samp class="samp">independent_segments</samp>&rsquo;</dt>
  4339. <dd><p>Add the <code class="code">#EXT-X-INDEPENDENT-SEGMENTS</code> tag to playlists that has video segments
  4340. and when all the segments of that playlist are guaranteed to start with a key frame.
  4341. </p>
  4342. </dd>
  4343. <dt>&lsquo;<samp class="samp">iframes_only</samp>&rsquo;</dt>
  4344. <dd><p>Add the <code class="code">#EXT-X-I-FRAMES-ONLY</code> tag to playlists that has video segments
  4345. and can play only I-frames in the <code class="code">#EXT-X-BYTERANGE</code> mode.
  4346. </p>
  4347. </dd>
  4348. <dt>&lsquo;<samp class="samp">split_by_time</samp>&rsquo;</dt>
  4349. <dd><p>Allow segments to start on frames other than key frames. This improves
  4350. behavior on some players when the time between key frames is inconsistent,
  4351. but may make things worse on others, and can cause some oddities during
  4352. seeking. This flag should be used with the <samp class="option">hls_time</samp> option.
  4353. </p>
  4354. </dd>
  4355. <dt>&lsquo;<samp class="samp">program_date_time</samp>&rsquo;</dt>
  4356. <dd><p>Generate <code class="code">EXT-X-PROGRAM-DATE-TIME</code> tags.
  4357. </p>
  4358. </dd>
  4359. <dt>&lsquo;<samp class="samp">second_level_segment_index</samp>&rsquo;</dt>
  4360. <dd><p>Make it possible to use segment indexes as %%d in the
  4361. <samp class="option">hls_segment_filename</samp> option expression besides date/time values when
  4362. <samp class="option">strftime</samp> option is on. To get fixed width numbers with trailing zeroes, %%0xd format
  4363. is available where x is the required width.
  4364. </p>
  4365. </dd>
  4366. <dt>&lsquo;<samp class="samp">second_level_segment_size</samp>&rsquo;</dt>
  4367. <dd><p>Make it possible to use segment sizes (counted in bytes) as %%s in
  4368. <samp class="option">hls_segment_filename</samp> option expression besides date/time values when
  4369. strftime is on. To get fixed width numbers with trailing zeroes, %%0xs format
  4370. is available where x is the required width.
  4371. </p>
  4372. </dd>
  4373. <dt>&lsquo;<samp class="samp">second_level_segment_duration</samp>&rsquo;</dt>
  4374. <dd><p>Make it possible to use segment duration (calculated in microseconds) as %%t in
  4375. <samp class="option">hls_segment_filename</samp> option expression besides date/time values when
  4376. strftime is on. To get fixed width numbers with trailing zeroes, %%0xt format
  4377. is available where x is the required width.
  4378. </p>
  4379. <p>For example:
  4380. </p><div class="example">
  4381. <pre class="example-preformatted">ffmpeg -i sample.mpeg \
  4382. -f hls -hls_time 3 -hls_list_size 5 \
  4383. -hls_flags second_level_segment_index+second_level_segment_size+second_level_segment_duration \
  4384. -strftime 1 -strftime_mkdir 1 -hls_segment_filename &quot;segment_%Y%m%d%H%M%S_%%04d_%%08s_%%013t.ts&quot; stream.m3u8
  4385. </pre></div>
  4386. <p>will produce segments like this:
  4387. <samp class="file">segment_20170102194334_0003_00122200_0000003000000.ts</samp>, <samp class="file">segment_20170102194334_0004_00120072_0000003000000.ts</samp> etc.
  4388. </p>
  4389. </dd>
  4390. <dt>&lsquo;<samp class="samp">temp_file</samp>&rsquo;</dt>
  4391. <dd><p>Write segment data to <samp class="file">filename.tmp</samp> and rename to filename only once the
  4392. segment is complete.
  4393. </p>
  4394. <p>A webserver serving up segments can be configured to reject requests to *.tmp to
  4395. prevent access to in-progress segments before they have been added to the m3u8
  4396. playlist.
  4397. </p>
  4398. <p>This flag also affects how m3u8 playlist files are created. If this flag is set,
  4399. all playlist files will be written into a temporary file and renamed after they
  4400. are complete, similarly as segments are handled. But playlists with <code class="code">file</code>
  4401. protocol and with <samp class="option">hls_playlist_type</samp> type other than &lsquo;<samp class="samp">vod</samp>&rsquo; are
  4402. always written into a temporary file regardless of this flag.
  4403. </p>
  4404. <p>Master playlist files specified with <samp class="option">master_pl_name</samp>, if any, with
  4405. <code class="code">file</code> protocol, are always written into temporary file regardless of this
  4406. flag if <samp class="option">master_pl_publish_rate</samp> value is other than zero.
  4407. </p></dd>
  4408. </dl>
  4409. </dd>
  4410. <dt><samp class="option">hls_playlist_type <var class="var">type</var></samp></dt>
  4411. <dd><p>If type is &lsquo;<samp class="samp">event</samp>&rsquo;, emit <code class="code">#EXT-X-PLAYLIST-TYPE:EVENT</code> in the m3u8
  4412. header. This forces <samp class="option">hls_list_size</samp> to 0; the playlist can only be
  4413. appended to.
  4414. </p>
  4415. <p>If type is &lsquo;<samp class="samp">vod</samp>&rsquo;, emit <code class="code">#EXT-X-PLAYLIST-TYPE:VOD</code> in the m3u8
  4416. header. This forces <samp class="option">hls_list_size</samp> to 0; the playlist must not change.
  4417. </p>
  4418. </dd>
  4419. <dt><samp class="option">method <var class="var">method</var></samp></dt>
  4420. <dd><p>Use the given HTTP method to create the hls files.
  4421. </p>
  4422. <p>For example:
  4423. </p><div class="example">
  4424. <pre class="example-preformatted">ffmpeg -re -i in.ts -f hls -method PUT http://example.com/live/out.m3u8
  4425. </pre></div>
  4426. <p>will upload all the mpegts segment files to the HTTP server using the HTTP PUT
  4427. method, and update the m3u8 files every <code class="code">refresh</code> times using the same
  4428. method. Note that the HTTP server must support the given method for uploading
  4429. files.
  4430. </p>
  4431. </dd>
  4432. <dt><samp class="option">http_user_agent <var class="var">agent</var></samp></dt>
  4433. <dd><p>Override User-Agent field in HTTP header. Applicable only for HTTP output.
  4434. </p>
  4435. </dd>
  4436. <dt><samp class="option">var_stream_map <var class="var">stream_map</var></samp></dt>
  4437. <dd><p>Specify a map string defining how to group the audio, video and subtitle streams
  4438. into different variant streams. The variant stream groups are separated by
  4439. space.
  4440. </p>
  4441. <p>Expected string format is like this &quot;a:0,v:0 a:1,v:1 ....&quot;. Here a:, v:, s: are
  4442. the keys to specify audio, video and subtitle streams respectively.
  4443. Allowed values are 0 to 9 (limited just based on practical usage).
  4444. </p>
  4445. <p>When there are two or more variant streams, the output filename pattern must
  4446. contain the string &quot;%v&quot;: this string specifies the position of variant stream
  4447. index in the output media playlist filenames. The string &quot;%v&quot; may be present in
  4448. the filename or in the last directory name containing the file. If the string is
  4449. present in the directory name, then sub-directories are created after expanding
  4450. the directory name pattern. This enables creation of variant streams in
  4451. subdirectories.
  4452. </p>
  4453. <p>A few examples follow.
  4454. </p>
  4455. <ul class="itemize mark-bullet">
  4456. <li>Create two hls variant streams. The first variant stream will contain video
  4457. stream of bitrate 1000k and audio stream of bitrate 64k and the second variant
  4458. stream will contain video stream of bitrate 256k and audio stream of bitrate
  4459. 32k. Here, two media playlist with file names <samp class="file">out_0.m3u8</samp> and
  4460. <samp class="file">out_1.m3u8</samp> will be created.
  4461. <div class="example">
  4462. <pre class="example-preformatted">ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  4463. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map &quot;v:0,a:0 v:1,a:1&quot; \
  4464. http://example.com/live/out_%v.m3u8
  4465. </pre></div>
  4466. </li><li>If you want something meaningful text instead of indexes in result names, you
  4467. may specify names for each or some of the variants. The following example will
  4468. create two hls variant streams as in the previous one. But here, the two media
  4469. playlist with file names <samp class="file">out_my_hd.m3u8</samp> and <samp class="file">out_my_sd.m3u8</samp> will be
  4470. created.
  4471. <div class="example">
  4472. <pre class="example-preformatted">ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  4473. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map &quot;v:0,a:0,name:my_hd v:1,a:1,name:my_sd&quot; \
  4474. http://example.com/live/out_%v.m3u8
  4475. </pre></div>
  4476. </li><li>Create three hls variant streams. The first variant stream will be a video only
  4477. stream with video bitrate 1000k, the second variant stream will be an audio only
  4478. stream with bitrate 64k and the third variant stream will be a video only stream
  4479. with bitrate 256k. Here, three media playlist with file names <samp class="file">out_0.m3u8</samp>,
  4480. <samp class="file">out_1.m3u8</samp> and <samp class="file">out_2.m3u8</samp> will be created.
  4481. <div class="example">
  4482. <pre class="example-preformatted">ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k \
  4483. -map 0:v -map 0:a -map 0:v -f hls -var_stream_map &quot;v:0 a:0 v:1&quot; \
  4484. http://example.com/live/out_%v.m3u8
  4485. </pre></div>
  4486. </li><li>Create the variant streams in subdirectories. Here, the first media playlist is
  4487. created at <samp class="file">http://example.com/live/vs_0/out.m3u8</samp> and the second one at
  4488. <samp class="file">http://example.com/live/vs_1/out.m3u8</samp>.
  4489. <div class="example">
  4490. <pre class="example-preformatted">ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  4491. -map 0:v -map 0:a -map 0:v -map 0:a -f hls -var_stream_map &quot;v:0,a:0 v:1,a:1&quot; \
  4492. http://example.com/live/vs_%v/out.m3u8
  4493. </pre></div>
  4494. </li><li>Create two audio only and two video only variant streams. In addition to the
  4495. <code class="code">#EXT-X-STREAM-INF</code> tag for each variant stream in the master playlist, the
  4496. <code class="code">#EXT-X-MEDIA</code> tag is also added for the two audio only variant streams and
  4497. they are mapped to the two video only variant streams with audio group names
  4498. &rsquo;aud_low&rsquo; and &rsquo;aud_high&rsquo;.
  4499. By default, a single hls variant containing all the encoded streams is created.
  4500. <div class="example">
  4501. <pre class="example-preformatted">ffmpeg -re -i in.ts -b:a:0 32k -b:a:1 64k -b:v:0 1000k -b:v:1 3000k \
  4502. -map 0:a -map 0:a -map 0:v -map 0:v -f hls \
  4503. -var_stream_map &quot;a:0,agroup:aud_low a:1,agroup:aud_high v:0,agroup:aud_low v:1,agroup:aud_high&quot; \
  4504. -master_pl_name master.m3u8 \
  4505. http://example.com/live/out_%v.m3u8
  4506. </pre></div>
  4507. </li><li>
  4508. Create two audio only and one video only variant streams. In addition to the
  4509. <code class="code">#EXT-X-STREAM-INF</code> tag for each variant stream in the master playlist, the
  4510. <code class="code">#EXT-X-MEDIA</code> tag is also added for the two audio only variant streams and
  4511. they are mapped to the one video only variant streams with audio group name
  4512. &rsquo;aud_low&rsquo;, and the audio group have default stat is NO or YES.
  4513. By default, a single hls variant containing all the encoded streams is created.
  4514. <div class="example">
  4515. <pre class="example-preformatted">ffmpeg -re -i in.ts -b:a:0 32k -b:a:1 64k -b:v:0 1000k \
  4516. -map 0:a -map 0:a -map 0:v -f hls \
  4517. -var_stream_map &quot;a:0,agroup:aud_low,default:yes a:1,agroup:aud_low v:0,agroup:aud_low&quot; \
  4518. -master_pl_name master.m3u8 \
  4519. http://example.com/live/out_%v.m3u8
  4520. </pre></div>
  4521. </li><li>Create two audio only and one video only variant streams. In addition to the
  4522. <code class="code">#EXT-X-STREAM-INF</code> tag for each variant stream in the master playlist, the
  4523. <code class="code">#EXT-X-MEDIA</code> tag is also added for the two audio only variant streams and
  4524. they are mapped to the one video only variant streams with audio group name
  4525. &rsquo;aud_low&rsquo;, and the audio group have default stat is NO or YES, and one audio
  4526. have and language is named ENG, the other audio language is named CHN. By
  4527. default, a single hls variant containing all the encoded streams is created.
  4528. <div class="example">
  4529. <pre class="example-preformatted">ffmpeg -re -i in.ts -b:a:0 32k -b:a:1 64k -b:v:0 1000k \
  4530. -map 0:a -map 0:a -map 0:v -f hls \
  4531. -var_stream_map &quot;a:0,agroup:aud_low,default:yes,language:ENG a:1,agroup:aud_low,language:CHN v:0,agroup:aud_low&quot; \
  4532. -master_pl_name master.m3u8 \
  4533. http://example.com/live/out_%v.m3u8
  4534. </pre></div>
  4535. </li><li>Create a single variant stream. Add the <code class="code">#EXT-X-MEDIA</code> tag with
  4536. <code class="code">TYPE=SUBTITLES</code> in the master playlist with webvtt subtitle group name
  4537. &rsquo;subtitle&rsquo; and optional subtitle name, e.g. &rsquo;English&rsquo;. Make sure the input
  4538. file has one text subtitle stream at least.
  4539. <div class="example">
  4540. <pre class="example-preformatted">ffmpeg -y -i input_with_subtitle.mkv \
  4541. -b:v:0 5250k -c:v h264 -pix_fmt yuv420p -profile:v main -level 4.1 \
  4542. -b:a:0 256k \
  4543. -c:s webvtt -c:a mp2 -ar 48000 -ac 2 -map 0:v -map 0:a:0 -map 0:s:0 \
  4544. -f hls -var_stream_map &quot;v:0,a:0,s:0,sgroup:subtitle,sname:English&quot; \
  4545. -master_pl_name master.m3u8 -t 300 -hls_time 10 -hls_init_time 4 -hls_list_size \
  4546. 10 -master_pl_publish_rate 10 -hls_flags \
  4547. delete_segments+discont_start+split_by_time ./tmp/video.m3u8
  4548. </pre></div>
  4549. </li></ul>
  4550. </dd>
  4551. <dt><samp class="option">cc_stream_map <var class="var">cc_stream_map</var></samp></dt>
  4552. <dd><p>Map string which specifies different closed captions groups and their
  4553. attributes. The closed captions stream groups are separated by space.
  4554. </p>
  4555. <p>Expected string format is like this
  4556. &quot;ccgroup:&lt;group name&gt;,instreamid:&lt;INSTREAM-ID&gt;,language:&lt;language code&gt; ....&quot;.
  4557. &rsquo;ccgroup&rsquo; and &rsquo;instreamid&rsquo; are mandatory attributes. &rsquo;language&rsquo; is an optional
  4558. attribute.
  4559. </p>
  4560. <p>The closed captions groups configured using this option are mapped to different
  4561. variant streams by providing the same &rsquo;ccgroup&rsquo; name in the
  4562. <samp class="option">var_stream_map</samp> string.
  4563. </p>
  4564. <p>For example:
  4565. </p><div class="example">
  4566. <pre class="example-preformatted">ffmpeg -re -i in.ts -b:v:0 1000k -b:v:1 256k -b:a:0 64k -b:a:1 32k \
  4567. -a53cc:0 1 -a53cc:1 1 \
  4568. -map 0:v -map 0:a -map 0:v -map 0:a -f hls \
  4569. -cc_stream_map &quot;ccgroup:cc,instreamid:CC1,language:en ccgroup:cc,instreamid:CC2,language:sp&quot; \
  4570. -var_stream_map &quot;v:0,a:0,ccgroup:cc v:1,a:1,ccgroup:cc&quot; \
  4571. -master_pl_name master.m3u8 \
  4572. http://example.com/live/out_%v.m3u8
  4573. </pre></div>
  4574. <p>will add two <code class="code">#EXT-X-MEDIA</code> tags with <code class="code">TYPE=CLOSED-CAPTIONS</code> in the
  4575. master playlist for the INSTREAM-IDs &rsquo;CC1&rsquo; and &rsquo;CC2&rsquo;. Also, it will add
  4576. <code class="code">CLOSED-CAPTIONS</code> attribute with group name &rsquo;cc&rsquo; for the two output variant
  4577. streams.
  4578. </p>
  4579. <p>If <samp class="option">var_stream_map</samp> is not set, then the first available ccgroup in
  4580. <samp class="option">cc_stream_map</samp> is mapped to the output variant stream.
  4581. </p>
  4582. <p>For example:
  4583. </p><div class="example">
  4584. <pre class="example-preformatted">ffmpeg -re -i in.ts -b:v 1000k -b:a 64k -a53cc 1 -f hls \
  4585. -cc_stream_map &quot;ccgroup:cc,instreamid:CC1,language:en&quot; \
  4586. -master_pl_name master.m3u8 \
  4587. http://example.com/live/out.m3u8
  4588. </pre></div>
  4589. <p>this will add <code class="code">#EXT-X-MEDIA</code> tag with <code class="code">TYPE=CLOSED-CAPTIONS</code> in the
  4590. master playlist with group name &rsquo;cc&rsquo;, language &rsquo;en&rsquo; (english) and INSTREAM-ID
  4591. &rsquo;CC1&rsquo;. Also, it will add <code class="code">CLOSED-CAPTIONS</code> attribute with group name &rsquo;cc&rsquo;
  4592. for the output variant stream.
  4593. </p>
  4594. </dd>
  4595. <dt><samp class="option">master_pl_name <var class="var">name</var></samp></dt>
  4596. <dd><p>Create HLS master playlist with the given name.
  4597. </p>
  4598. <p>For example:
  4599. </p><div class="example">
  4600. <pre class="example-preformatted">ffmpeg -re -i in.ts -f hls -master_pl_name master.m3u8 http://example.com/live/out.m3u8
  4601. </pre></div>
  4602. <p>creates an HLS master playlist with name <samp class="file">master.m3u8</samp> which is published
  4603. at <a class="url" href="http://example.com/live/">http://example.com/live/</a>.
  4604. </p>
  4605. </dd>
  4606. <dt><samp class="option">master_pl_publish_rate <var class="var">count</var></samp></dt>
  4607. <dd><p>Publish master play list repeatedly every after specified number of segment intervals.
  4608. </p>
  4609. <p>For example:
  4610. </p><div class="example">
  4611. <pre class="example-preformatted">ffmpeg -re -i in.ts -f hls -master_pl_name master.m3u8 \
  4612. -hls_time 2 -master_pl_publish_rate 30 http://example.com/live/out.m3u8
  4613. </pre></div>
  4614. <p>creates an HLS master playlist with name <samp class="file">master.m3u8</samp> and keeps
  4615. publishing it repeatedly every after 30 segments i.e. every after 60s.
  4616. </p>
  4617. </dd>
  4618. <dt><samp class="option">http_persistent <var class="var">bool</var></samp></dt>
  4619. <dd><p>Use persistent HTTP connections. Applicable only for HTTP output.
  4620. </p>
  4621. </dd>
  4622. <dt><samp class="option">timeout <var class="var">timeout</var></samp></dt>
  4623. <dd><p>Set timeout for socket I/O operations. Applicable only for HTTP output.
  4624. </p>
  4625. </dd>
  4626. <dt><samp class="option">ignore_io_errors <var class="var">bool</var></samp></dt>
  4627. <dd><p>Ignore IO errors during open, write and delete. Useful for long-duration runs with network output.
  4628. </p>
  4629. </dd>
  4630. <dt><samp class="option">headers <var class="var">headers</var></samp></dt>
  4631. <dd><p>Set custom HTTP headers, can override built in default headers. Applicable only for HTTP output.
  4632. </p></dd>
  4633. </dl>
  4634. <a name="iamf"></a>
  4635. <h3 class="section">4.47 iamf<span class="pull-right"><a class="anchor hidden-xs" href="#iamf" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-iamf" aria-hidden="true">TOC</a></span></h3>
  4636. <p>Immersive Audio Model and Formats (IAMF) muxer.
  4637. </p>
  4638. <p>IAMF is used to provide immersive audio content for presentation on a wide range
  4639. of devices in both streaming and offline applications. These applications
  4640. include internet audio streaming, multicasting/broadcasting services, file
  4641. download, gaming, communication, virtual and augmented reality, and others. In
  4642. these applications, audio may be played back on a wide range of devices, e.g.,
  4643. headphones, mobile phones, tablets, TVs, sound bars, home theater systems, and
  4644. big screens.
  4645. </p>
  4646. <p>This format was promoted and designed by Alliance for Open Media.
  4647. </p>
  4648. <p>For more information about this format, see <a class="url" href="https://aomedia.org/iamf/">https://aomedia.org/iamf/</a>.
  4649. </p>
  4650. <a class="anchor" id="ico"></a><a name="ico-1"></a>
  4651. <h3 class="section">4.48 ico<span class="pull-right"><a class="anchor hidden-xs" href="#ico-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ico-1" aria-hidden="true">TOC</a></span></h3>
  4652. <p>ICO file muxer.
  4653. </p>
  4654. <p>Microsoft&rsquo;s icon file format (ICO) has some strict limitations that should be noted:
  4655. </p>
  4656. <ul class="itemize mark-bullet">
  4657. <li>Size cannot exceed 256 pixels in any dimension
  4658. </li><li>Only BMP and PNG images can be stored
  4659. </li><li>If a BMP image is used, it must be one of the following pixel formats:
  4660. <div class="example">
  4661. <pre class="example-preformatted">BMP Bit Depth FFmpeg Pixel Format
  4662. 1bit pal8
  4663. 4bit pal8
  4664. 8bit pal8
  4665. 16bit rgb555le
  4666. 24bit bgr24
  4667. 32bit bgra
  4668. </pre></div>
  4669. </li><li>If a BMP image is used, it must use the BITMAPINFOHEADER DIB header
  4670. </li><li>If a PNG image is used, it must use the rgba pixel format
  4671. </li></ul>
  4672. <a name="ilbc"></a>
  4673. <h3 class="section">4.49 ilbc<span class="pull-right"><a class="anchor hidden-xs" href="#ilbc" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ilbc" aria-hidden="true">TOC</a></span></h3>
  4674. <p>Internet Low Bitrate Codec (iLBC) raw muxer.
  4675. </p>
  4676. <p>It accepts a single &lsquo;<samp class="samp">ilbc</samp>&rsquo; audio stream.
  4677. </p>
  4678. <a class="anchor" id="image2"></a><a name="image2_002c-image2pipe"></a>
  4679. <h3 class="section">4.50 image2, image2pipe<span class="pull-right"><a class="anchor hidden-xs" href="#image2_002c-image2pipe" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-image2_002c-image2pipe" aria-hidden="true">TOC</a></span></h3>
  4680. <p>Image file muxer.
  4681. </p>
  4682. <p>The &lsquo;<samp class="samp">image2</samp>&rsquo; muxer writes video frames to image files.
  4683. </p>
  4684. <p>The output filenames are specified by a pattern, which can be used to
  4685. produce sequentially numbered series of files.
  4686. The pattern may contain the string &quot;%d&quot; or &quot;%0<var class="var">N</var>d&quot;, this string
  4687. specifies the position of the characters representing a numbering in
  4688. the filenames. If the form &quot;%0<var class="var">N</var>d&quot; is used, the string
  4689. representing the number in each filename is 0-padded to <var class="var">N</var>
  4690. digits. The literal character &rsquo;%&rsquo; can be specified in the pattern with
  4691. the string &quot;%%&quot;.
  4692. </p>
  4693. <p>If the pattern contains &quot;%d&quot; or &quot;%0<var class="var">N</var>d&quot;, the first filename of
  4694. the file list specified will contain the number 1, all the following
  4695. numbers will be sequential.
  4696. </p>
  4697. <p>The pattern may contain a suffix which is used to automatically
  4698. determine the format of the image files to write.
  4699. </p>
  4700. <p>For example the pattern &quot;img-%03d.bmp&quot; will specify a sequence of
  4701. filenames of the form <samp class="file">img-001.bmp</samp>, <samp class="file">img-002.bmp</samp>, ...,
  4702. <samp class="file">img-010.bmp</samp>, etc.
  4703. The pattern &quot;img%%-%d.jpg&quot; will specify a sequence of filenames of the
  4704. form <samp class="file">img%-1.jpg</samp>, <samp class="file">img%-2.jpg</samp>, ..., <samp class="file">img%-10.jpg</samp>,
  4705. etc.
  4706. </p>
  4707. <p>The image muxer supports the .Y.U.V image file format. This format is
  4708. special in that each image frame consists of three files, for
  4709. each of the YUV420P components. To read or write this image file format,
  4710. specify the name of the &rsquo;.Y&rsquo; file. The muxer will automatically open the
  4711. &rsquo;.U&rsquo; and &rsquo;.V&rsquo; files as required.
  4712. </p>
  4713. <p>The &lsquo;<samp class="samp">image2pipe</samp>&rsquo; muxer accepts the same options as the &lsquo;<samp class="samp">image2</samp>&rsquo; muxer,
  4714. but ignores the pattern verification and expansion, as it is supposed to write
  4715. to the command output rather than to an actual stored file.
  4716. </p>
  4717. <a name="Options-27"></a>
  4718. <h4 class="subsection">4.50.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-27" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-27" aria-hidden="true">TOC</a></span></h4>
  4719. <dl class="table">
  4720. <dt><samp class="option">frame_pts <var class="var">bool</var></samp></dt>
  4721. <dd><p>If set to 1, expand the filename with the packet PTS (presentation time stamp).
  4722. Default value is 0.
  4723. </p>
  4724. </dd>
  4725. <dt><samp class="option">start_number <var class="var">count</var></samp></dt>
  4726. <dd><p>Start the sequence from the specified number. Default value is 1.
  4727. </p>
  4728. </dd>
  4729. <dt><samp class="option">update <var class="var">bool</var></samp></dt>
  4730. <dd><p>If set to 1, the filename will always be interpreted as just a
  4731. filename, not a pattern, and the corresponding file will be continuously
  4732. overwritten with new images. Default value is 0.
  4733. </p>
  4734. </dd>
  4735. <dt><samp class="option">strftime <var class="var">bool</var></samp></dt>
  4736. <dd><p>If set to 1, expand the filename with date and time information from
  4737. <code class="code">strftime()</code>. Default value is 0.
  4738. </p>
  4739. </dd>
  4740. <dt><samp class="option">atomic_writing <var class="var">bool</var></samp></dt>
  4741. <dd><p>Write output to a temporary file, which is renamed to target filename once
  4742. writing is completed. Default is disabled.
  4743. </p>
  4744. </dd>
  4745. <dt><samp class="option">protocol_opts <var class="var">options_list</var></samp></dt>
  4746. <dd><p>Set protocol options as a :-separated list of key=value parameters. Values
  4747. containing the <code class="code">:</code> special character must be escaped.
  4748. </p></dd>
  4749. </dl>
  4750. <a name="Examples-13"></a>
  4751. <h4 class="subsection">4.50.2 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-13" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-13" aria-hidden="true">TOC</a></span></h4>
  4752. <ul class="itemize mark-bullet">
  4753. <li>Use <code class="command">ffmpeg</code> for creating a sequence of files <samp class="file">img-001.jpeg</samp>,
  4754. <samp class="file">img-002.jpeg</samp>, ..., taking one image every second from the input video:
  4755. <div class="example">
  4756. <pre class="example-preformatted">ffmpeg -i in.avi -vsync cfr -r 1 -f image2 'img-%03d.jpeg'
  4757. </pre></div>
  4758. <p>Note that with <code class="command">ffmpeg</code>, if the format is not specified with the
  4759. <code class="code">-f</code> option and the output filename specifies an image file
  4760. format, the image2 muxer is automatically selected, so the previous
  4761. command can be written as:
  4762. </p><div class="example">
  4763. <pre class="example-preformatted">ffmpeg -i in.avi -vsync cfr -r 1 'img-%03d.jpeg'
  4764. </pre></div>
  4765. <p>Note also that the pattern must not necessarily contain &quot;%d&quot; or
  4766. &quot;%0<var class="var">N</var>d&quot;, for example to create a single image file
  4767. <samp class="file">img.jpeg</samp> from the start of the input video you can employ the command:
  4768. </p><div class="example">
  4769. <pre class="example-preformatted">ffmpeg -i in.avi -f image2 -frames:v 1 img.jpeg
  4770. </pre></div>
  4771. </li><li>The <samp class="option">strftime</samp> option allows you to expand the filename with
  4772. date and time information. Check the documentation of
  4773. the <code class="code">strftime()</code> function for the syntax.
  4774. <p>To generate image files from the <code class="code">strftime()</code> &quot;%Y-%m-%d_%H-%M-%S&quot; pattern,
  4775. the following <code class="command">ffmpeg</code> command can be used:
  4776. </p><div class="example">
  4777. <pre class="example-preformatted">ffmpeg -f v4l2 -r 1 -i /dev/video0 -f image2 -strftime 1 &quot;%Y-%m-%d_%H-%M-%S.jpg&quot;
  4778. </pre></div>
  4779. </li><li>Set the file name with current frame&rsquo;s PTS:
  4780. <div class="example">
  4781. <pre class="example-preformatted">ffmpeg -f v4l2 -r 1 -i /dev/video0 -copyts -f image2 -frame_pts true %d.jpg
  4782. </pre></div>
  4783. </li><li>Publish contents of your desktop directly to a WebDAV server every second:
  4784. <div class="example">
  4785. <pre class="example-preformatted">ffmpeg -f x11grab -framerate 1 -i :0.0 -q:v 6 -update 1 -protocol_opts method=PUT http://example.com/desktop.jpg
  4786. </pre></div>
  4787. </li></ul>
  4788. <a name="ircam"></a>
  4789. <h3 class="section">4.51 ircam<span class="pull-right"><a class="anchor hidden-xs" href="#ircam" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ircam" aria-hidden="true">TOC</a></span></h3>
  4790. <p>Berkeley / IRCAM / CARL Sound Filesystem (BICSF) format muxer.
  4791. </p>
  4792. <p>The Berkeley/IRCAM/CARL Sound Format, developed in the 1980s, is a result of the
  4793. merging of several different earlier sound file formats and systems including
  4794. the csound system developed by Dr Gareth Loy at the Computer Audio Research Lab
  4795. (CARL) at UC San Diego, the IRCAM sound file system developed by Rob Gross and
  4796. Dan Timis at the Institut de Recherche et Coordination Acoustique / Musique in
  4797. Paris and the Berkeley Fast Filesystem.
  4798. </p>
  4799. <p>It was developed initially as part of the Berkeley/IRCAM/CARL Sound Filesystem,
  4800. a suite of programs designed to implement a filesystem for audio applications
  4801. running under Berkeley UNIX. It was particularly popular in academic music
  4802. research centres, and was used a number of times in the creation of early
  4803. computer-generated compositions.
  4804. </p>
  4805. <p>This muxer accepts a single audio stream containing PCM data.
  4806. </p>
  4807. <a name="ivf"></a>
  4808. <h3 class="section">4.52 ivf<span class="pull-right"><a class="anchor hidden-xs" href="#ivf" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ivf" aria-hidden="true">TOC</a></span></h3>
  4809. <p>On2 IVF muxer.
  4810. </p>
  4811. <p>IVF was developed by On2 Technologies (formerly known as Duck
  4812. Corporation), to store internally developed codecs.
  4813. </p>
  4814. <p>This muxer accepts a single &lsquo;<samp class="samp">vp8</samp>&rsquo;, &lsquo;<samp class="samp">vp9</samp>&rsquo;, or &lsquo;<samp class="samp">av1</samp>&rsquo;
  4815. video stream.
  4816. </p>
  4817. <a name="jacosub"></a>
  4818. <h3 class="section">4.53 jacosub<span class="pull-right"><a class="anchor hidden-xs" href="#jacosub" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-jacosub" aria-hidden="true">TOC</a></span></h3>
  4819. <p>JACOsub subtitle format muxer.
  4820. </p>
  4821. <p>This muxer accepts a single &lsquo;<samp class="samp">jacosub</samp>&rsquo; subtitles stream.
  4822. </p>
  4823. <p>For more information about the format, see
  4824. <a class="url" href="http://unicorn.us.com/jacosub/jscripts.html">http://unicorn.us.com/jacosub/jscripts.html</a>.
  4825. </p>
  4826. <a name="kvag"></a>
  4827. <h3 class="section">4.54 kvag<span class="pull-right"><a class="anchor hidden-xs" href="#kvag" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-kvag" aria-hidden="true">TOC</a></span></h3>
  4828. <p>Simon &amp; Schuster Interactive VAG muxer.
  4829. </p>
  4830. <p>This custom VAG container is used by some Simon &amp; Schuster Interactive
  4831. games such as &quot;Real War&quot;, and &quot;Real War: Rogue States&quot;.
  4832. </p>
  4833. <p>This muxer accepts a single &lsquo;<samp class="samp">adpcm_ima_ssi</samp>&rsquo; audio stream.
  4834. </p>
  4835. <a name="lc3"></a>
  4836. <h3 class="section">4.55 lc3<span class="pull-right"><a class="anchor hidden-xs" href="#lc3" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-lc3" aria-hidden="true">TOC</a></span></h3>
  4837. <p>Bluetooth SIG Low Complexity Communication Codec audio (LC3), or
  4838. ETSI TS 103 634 Low Complexity Communication Codec plus (LC3plus).
  4839. </p>
  4840. <p>This muxer accepts a single &lsquo;<samp class="samp">lc3</samp>&rsquo; audio stream.
  4841. </p>
  4842. <a name="lrc"></a>
  4843. <h3 class="section">4.56 lrc<span class="pull-right"><a class="anchor hidden-xs" href="#lrc" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-lrc" aria-hidden="true">TOC</a></span></h3>
  4844. <p>LRC lyrics file format muxer.
  4845. </p>
  4846. <p>LRC (short for LyRiCs) is a computer file format that synchronizes
  4847. song lyrics with an audio file, such as MP3, Vorbis, or MIDI.
  4848. </p>
  4849. <p>This muxer accepts a single &lsquo;<samp class="samp">subrip</samp>&rsquo; or &lsquo;<samp class="samp">text</samp>&rsquo; subtitles stream.
  4850. </p>
  4851. <a name="Metadata"></a>
  4852. <h4 class="subsection">4.56.1 Metadata<span class="pull-right"><a class="anchor hidden-xs" href="#Metadata" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Metadata" aria-hidden="true">TOC</a></span></h4>
  4853. <p>The following metadata tags are converted to the format corresponding
  4854. metadata:
  4855. </p>
  4856. <dl class="table">
  4857. <dt><samp class="option">title</samp></dt>
  4858. <dt><samp class="option">album</samp></dt>
  4859. <dt><samp class="option">artist</samp></dt>
  4860. <dt><samp class="option">author</samp></dt>
  4861. <dt><samp class="option">creator</samp></dt>
  4862. <dt><samp class="option">encoder</samp></dt>
  4863. <dt><samp class="option">encoder_version</samp></dt>
  4864. </dl>
  4865. <p>If &lsquo;<samp class="samp">encoder_version</samp>&rsquo; is not explicitly set, it is automatically
  4866. set to the libavformat version.
  4867. </p>
  4868. <a name="matroska"></a>
  4869. <h3 class="section">4.57 matroska<span class="pull-right"><a class="anchor hidden-xs" href="#matroska" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-matroska" aria-hidden="true">TOC</a></span></h3>
  4870. <p>Matroska container muxer.
  4871. </p>
  4872. <p>This muxer implements the matroska and webm container specs.
  4873. </p>
  4874. <a name="Metadata-1"></a>
  4875. <h4 class="subsection">4.57.1 Metadata<span class="pull-right"><a class="anchor hidden-xs" href="#Metadata-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Metadata-1" aria-hidden="true">TOC</a></span></h4>
  4876. <p>The recognized metadata settings in this muxer are:
  4877. </p>
  4878. <dl class="table">
  4879. <dt><samp class="option">title</samp></dt>
  4880. <dd><p>Set title name provided to a single track. This gets mapped to
  4881. the FileDescription element for a stream written as attachment.
  4882. </p>
  4883. </dd>
  4884. <dt><samp class="option">language</samp></dt>
  4885. <dd><p>Specify the language of the track in the Matroska languages form.
  4886. </p>
  4887. <p>The language can be either the 3 letters bibliographic ISO-639-2 (ISO
  4888. 639-2/B) form (like &quot;fre&quot; for French), or a language code mixed with a
  4889. country code for specialities in languages (like &quot;fre-ca&quot; for Canadian
  4890. French).
  4891. </p>
  4892. </dd>
  4893. <dt><samp class="option">stereo_mode</samp></dt>
  4894. <dd><p>Set stereo 3D video layout of two views in a single video track.
  4895. </p>
  4896. <p>The following values are recognized:
  4897. </p><dl class="table">
  4898. <dt>&lsquo;<samp class="samp">mono</samp>&rsquo;</dt>
  4899. <dd><p>video is not stereo
  4900. </p></dd>
  4901. <dt>&lsquo;<samp class="samp">left_right</samp>&rsquo;</dt>
  4902. <dd><p>Both views are arranged side by side, Left-eye view is on the left
  4903. </p></dd>
  4904. <dt>&lsquo;<samp class="samp">bottom_top</samp>&rsquo;</dt>
  4905. <dd><p>Both views are arranged in top-bottom orientation, Left-eye view is at bottom
  4906. </p></dd>
  4907. <dt>&lsquo;<samp class="samp">top_bottom</samp>&rsquo;</dt>
  4908. <dd><p>Both views are arranged in top-bottom orientation, Left-eye view is on top
  4909. </p></dd>
  4910. <dt>&lsquo;<samp class="samp">checkerboard_rl</samp>&rsquo;</dt>
  4911. <dd><p>Each view is arranged in a checkerboard interleaved pattern, Left-eye view being first
  4912. </p></dd>
  4913. <dt>&lsquo;<samp class="samp">checkerboard_lr</samp>&rsquo;</dt>
  4914. <dd><p>Each view is arranged in a checkerboard interleaved pattern, Right-eye view being first
  4915. </p></dd>
  4916. <dt>&lsquo;<samp class="samp">row_interleaved_rl</samp>&rsquo;</dt>
  4917. <dd><p>Each view is constituted by a row based interleaving, Right-eye view is first row
  4918. </p></dd>
  4919. <dt>&lsquo;<samp class="samp">row_interleaved_lr</samp>&rsquo;</dt>
  4920. <dd><p>Each view is constituted by a row based interleaving, Left-eye view is first row
  4921. </p></dd>
  4922. <dt>&lsquo;<samp class="samp">col_interleaved_rl</samp>&rsquo;</dt>
  4923. <dd><p>Both views are arranged in a column based interleaving manner, Right-eye view is first column
  4924. </p></dd>
  4925. <dt>&lsquo;<samp class="samp">col_interleaved_lr</samp>&rsquo;</dt>
  4926. <dd><p>Both views are arranged in a column based interleaving manner, Left-eye view is first column
  4927. </p></dd>
  4928. <dt>&lsquo;<samp class="samp">anaglyph_cyan_red</samp>&rsquo;</dt>
  4929. <dd><p>All frames are in anaglyph format viewable through red-cyan filters
  4930. </p></dd>
  4931. <dt>&lsquo;<samp class="samp">right_left</samp>&rsquo;</dt>
  4932. <dd><p>Both views are arranged side by side, Right-eye view is on the left
  4933. </p></dd>
  4934. <dt>&lsquo;<samp class="samp">anaglyph_green_magenta</samp>&rsquo;</dt>
  4935. <dd><p>All frames are in anaglyph format viewable through green-magenta filters
  4936. </p></dd>
  4937. <dt>&lsquo;<samp class="samp">block_lr</samp>&rsquo;</dt>
  4938. <dd><p>Both eyes laced in one Block, Left-eye view is first
  4939. </p></dd>
  4940. <dt>&lsquo;<samp class="samp">block_rl</samp>&rsquo;</dt>
  4941. <dd><p>Both eyes laced in one Block, Right-eye view is first
  4942. </p></dd>
  4943. </dl>
  4944. </dd>
  4945. </dl>
  4946. <p>For example a 3D WebM clip can be created using the following command line:
  4947. </p><div class="example">
  4948. <pre class="example-preformatted">ffmpeg -i sample_left_right_clip.mpg -an -c:v libvpx -metadata stereo_mode=left_right -y stereo_clip.webm
  4949. </pre></div>
  4950. <a name="Options-28"></a>
  4951. <h4 class="subsection">4.57.2 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-28" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-28" aria-hidden="true">TOC</a></span></h4>
  4952. <dl class="table">
  4953. <dt><samp class="option">reserve_index_space <var class="var">size</var></samp></dt>
  4954. <dd><p>By default, this muxer writes the index for seeking (called cues in Matroska
  4955. terms) at the end of the file, because it cannot know in advance how much space
  4956. to leave for the index at the beginning of the file. However for some use cases
  4957. &ndash; e.g. streaming where seeking is possible but slow &ndash; it is useful to put the
  4958. index at the beginning of the file.
  4959. </p>
  4960. <p>If this option is set to a non-zero value, the muxer will reserve <var class="var">size</var> bytes
  4961. of space in the file header and then try to write the cues there when the muxing
  4962. finishes. If the reserved space does not suffice, no Cues will be written, the
  4963. file will be finalized and writing the trailer will return an error.
  4964. A safe size for most use cases should be about 50kB per hour of video.
  4965. </p>
  4966. <p>Note that cues are only written if the output is seekable and this option will
  4967. have no effect if it is not.
  4968. </p>
  4969. </dd>
  4970. <dt><samp class="option">cues_to_front <var class="var">bool</var></samp></dt>
  4971. <dd><p>If set, the muxer will write the index at the beginning of the file
  4972. by shifting the main data if necessary. This can be combined with
  4973. reserve_index_space in which case the data is only shifted if
  4974. the initially reserved space turns out to be insufficient.
  4975. </p>
  4976. <p>This option is ignored if the output is unseekable.
  4977. </p>
  4978. </dd>
  4979. <dt><samp class="option">cluster_size_limit <var class="var">size</var></samp></dt>
  4980. <dd><p>Store at most the provided amount of bytes in a cluster.
  4981. </p>
  4982. <p>If not specified, the limit is set automatically to a sensible
  4983. hardcoded fixed value.
  4984. </p>
  4985. </dd>
  4986. <dt><samp class="option">cluster_time_limit <var class="var">duration</var></samp></dt>
  4987. <dd><p>Store at most the provided number of milliseconds in a cluster.
  4988. </p>
  4989. <p>If not specified, the limit is set automatically to a sensible
  4990. hardcoded fixed value.
  4991. </p>
  4992. </dd>
  4993. <dt><samp class="option">dash <var class="var">bool</var></samp></dt>
  4994. <dd><p>Create a WebM file conforming to WebM DASH specification. By default
  4995. it is set to <code class="code">false</code>.
  4996. </p>
  4997. </dd>
  4998. <dt><samp class="option">dash_track_number <var class="var">index</var></samp></dt>
  4999. <dd><p>Track number for the DASH stream. By default it is set to <code class="code">1</code>.
  5000. </p>
  5001. </dd>
  5002. <dt><samp class="option">live <var class="var">bool</var></samp></dt>
  5003. <dd><p>Write files assuming it is a live stream. By default it is set to
  5004. <code class="code">false</code>.
  5005. </p>
  5006. </dd>
  5007. <dt><samp class="option">allow_raw_vfw <var class="var">bool</var></samp></dt>
  5008. <dd><p>Allow raw VFW mode. By default it is set to <code class="code">false</code>.
  5009. </p>
  5010. </dd>
  5011. <dt><samp class="option">flipped_raw_rgb <var class="var">bool</var></samp></dt>
  5012. <dd><p>If set to <code class="code">true</code>, store positive height for raw RGB bitmaps, which indicates
  5013. bitmap is stored bottom-up. Note that this option does not flip the bitmap
  5014. which has to be done manually beforehand, e.g. by using the &lsquo;<samp class="samp">vflip</samp>&rsquo; filter.
  5015. Default is <code class="code">false</code> and indicates bitmap is stored top down.
  5016. </p>
  5017. </dd>
  5018. <dt><samp class="option">write_crc32 <var class="var">bool</var></samp></dt>
  5019. <dd><p>Write a CRC32 element inside every Level 1 element. By default it is
  5020. set to <code class="code">true</code>. This option is ignored for WebM.
  5021. </p>
  5022. </dd>
  5023. <dt><samp class="option">default_mode <var class="var">mode</var></samp></dt>
  5024. <dd><p>Control how the FlagDefault of the output tracks will be set.
  5025. It influences which tracks players should play by default. The default mode
  5026. is &lsquo;<samp class="samp">passthrough</samp>&rsquo;.
  5027. </p><dl class="table">
  5028. <dt>&lsquo;<samp class="samp">infer</samp>&rsquo;</dt>
  5029. <dd><p>Every track with disposition default will have the FlagDefault set.
  5030. Additionally, for each type of track (audio, video or subtitle), if no track
  5031. with disposition default of this type exists, then the first track of this type
  5032. will be marked as default (if existing). This ensures that the default flag
  5033. is set in a sensible way even if the input originated from containers that
  5034. lack the concept of default tracks.
  5035. </p></dd>
  5036. <dt>&lsquo;<samp class="samp">infer_no_subs</samp>&rsquo;</dt>
  5037. <dd><p>This mode is the same as infer except that if no subtitle track with
  5038. disposition default exists, no subtitle track will be marked as default.
  5039. </p></dd>
  5040. <dt>&lsquo;<samp class="samp">passthrough</samp>&rsquo;</dt>
  5041. <dd><p>In this mode the FlagDefault is set if and only if the AV_DISPOSITION_DEFAULT
  5042. flag is set in the disposition of the corresponding stream.
  5043. </p></dd>
  5044. </dl>
  5045. </dd>
  5046. </dl>
  5047. <a class="anchor" id="md5"></a><a name="md5-1"></a>
  5048. <h3 class="section">4.58 md5<span class="pull-right"><a class="anchor hidden-xs" href="#md5-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-md5-1" aria-hidden="true">TOC</a></span></h3>
  5049. <p>MD5 testing format.
  5050. </p>
  5051. <p>This is a variant of the <a class="ref" href="#hash">hash</a> muxer. Unlike that muxer, it
  5052. defaults to using the MD5 hash function.
  5053. </p>
  5054. <p>See also the <a class="ref" href="#hash">hash</a> and <a class="ref" href="#framemd5">framemd5</a> muxers.
  5055. </p>
  5056. <a name="Examples-14"></a>
  5057. <h4 class="subsection">4.58.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-14" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-14" aria-hidden="true">TOC</a></span></h4>
  5058. <ul class="itemize mark-bullet">
  5059. <li>To compute the MD5 hash of the input converted to raw
  5060. audio and video, and store it in the file <samp class="file">out.md5</samp>:
  5061. <div class="example">
  5062. <pre class="example-preformatted">ffmpeg -i INPUT -f md5 out.md5
  5063. </pre></div>
  5064. </li><li>To print the MD5 hash to stdout:
  5065. <div class="example">
  5066. <pre class="example-preformatted">ffmpeg -i INPUT -f md5 -
  5067. </pre></div>
  5068. </li></ul>
  5069. <a class="anchor" id="mccenc"></a><a name="mcc-1"></a>
  5070. <h3 class="section">4.59 mcc<span class="pull-right"><a class="anchor hidden-xs" href="#mcc-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-mcc-1" aria-hidden="true">TOC</a></span></h3>
  5071. <p>Muxer for MacCaption MCC files, it supports MCC versions 1.0 and 2.0.
  5072. MCC files store VANC data, which can include closed captions (EIA-608 and CEA-708), ancillary time code, pan-scan data, etc.
  5073. </p>
  5074. <a name="Options-29"></a>
  5075. <h4 class="subsection">4.59.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-29" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-29" aria-hidden="true">TOC</a></span></h4>
  5076. <p>The muxer options are:
  5077. </p>
  5078. <dl class="table">
  5079. <dt><samp class="option">override_time_code_rate</samp></dt>
  5080. <dd><p>Override the <code class="code">Time Code Rate</code> value in the output. Defaults to trying to deduce from the stream&rsquo;s <code class="code">time_base</code>, which often doesn&rsquo;t work.
  5081. </p></dd>
  5082. <dt><samp class="option">use_u_alias</samp></dt>
  5083. <dd><p>Use the <code class="code">U</code> alias for the byte sequence <code class="code">E1h 00h 00h 00h</code>.
  5084. Disabled by default because some <samp class="file">.mcc</samp> files disagree on whether it has 2 or 3 zero bytes.
  5085. </p></dd>
  5086. <dt><samp class="option">mcc_version</samp></dt>
  5087. <dd><p>The MCC file format version. Must be either 1 or 2, defaults to 2.
  5088. </p></dd>
  5089. <dt><samp class="option">creation_program</samp></dt>
  5090. <dd><p>The creation program. Defaults to this version of FFmpeg.
  5091. </p></dd>
  5092. <dt><samp class="option">creation_time</samp></dt>
  5093. <dd><p>The creation time. Defaults to the current time.
  5094. </p></dd>
  5095. </dl>
  5096. <a name="Examples-15"></a>
  5097. <h4 class="subsection">4.59.2 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-15" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-15" aria-hidden="true">TOC</a></span></h4>
  5098. <ul class="itemize mark-bullet">
  5099. <li>Extract a MXF <code class="code">SMPTE_436M_ANC</code> stream from a MXF file and write it to a MCC file at 30 fps.
  5100. <div class="example">
  5101. <pre class="example-preformatted">ffmpeg -i input.mxf -c copy -map 0:d -override_time_code_rate 30 out.mcc
  5102. </pre></div>
  5103. </li><li>Extract EIA-608/CTA-708 closed captions from a <samp class="file">.mp4</samp> file and write them to a MCC file at 29.97 fps.
  5104. <div class="example">
  5105. <pre class="example-preformatted">ffmpeg -f lavfi -i &quot;movie=input.mp4[out+subcc]&quot; -c:s copy -map 0:s -override_time_code_rate 30000/1001 out.mcc
  5106. </pre></div>
  5107. </li></ul>
  5108. <a name="microdvd"></a>
  5109. <h3 class="section">4.60 microdvd<span class="pull-right"><a class="anchor hidden-xs" href="#microdvd" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-microdvd" aria-hidden="true">TOC</a></span></h3>
  5110. <p>MicroDVD subtitle format muxer.
  5111. </p>
  5112. <p>This muxer accepts a single &lsquo;<samp class="samp">microdvd</samp>&rsquo; subtitles stream.
  5113. </p>
  5114. <a name="mmf"></a>
  5115. <h3 class="section">4.61 mmf<span class="pull-right"><a class="anchor hidden-xs" href="#mmf" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-mmf" aria-hidden="true">TOC</a></span></h3>
  5116. <p>Synthetic music Mobile Application Format (SMAF) format muxer.
  5117. </p>
  5118. <p>SMAF is a music data format specified by Yamaha for portable
  5119. electronic devices, such as mobile phones and personal digital
  5120. assistants.
  5121. </p>
  5122. <p>This muxer accepts a single &lsquo;<samp class="samp">adpcm_yamaha</samp>&rsquo; audio stream.
  5123. </p>
  5124. <a name="mp3"></a>
  5125. <h3 class="section">4.62 mp3<span class="pull-right"><a class="anchor hidden-xs" href="#mp3" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-mp3" aria-hidden="true">TOC</a></span></h3>
  5126. <p>The MP3 muxer writes a raw MP3 stream with the following optional features:
  5127. </p><ul class="itemize mark-bullet">
  5128. <li>An ID3v2 metadata header at the beginning (enabled by default). Versions 2.3 and
  5129. 2.4 are supported, the <code class="code">id3v2_version</code> private option controls which one is
  5130. used (3 or 4). Setting <code class="code">id3v2_version</code> to 0 disables the ID3v2 header
  5131. completely.
  5132. <p>The muxer supports writing attached pictures (APIC frames) to the ID3v2 header.
  5133. The pictures are supplied to the muxer in form of a video stream with a single
  5134. packet. There can be any number of those streams, each will correspond to a
  5135. single APIC frame. The stream metadata tags <var class="var">title</var> and <var class="var">comment</var> map
  5136. to APIC <var class="var">description</var> and <var class="var">picture type</var> respectively. See
  5137. <a class="url" href="http://id3.org/id3v2.4.0-frames">http://id3.org/id3v2.4.0-frames</a> for allowed picture types.
  5138. </p>
  5139. <p>Note that the APIC frames must be written at the beginning, so the muxer will
  5140. buffer the audio frames until it gets all the pictures. It is therefore advised
  5141. to provide the pictures as soon as possible to avoid excessive buffering.
  5142. </p>
  5143. </li><li>A Xing/LAME frame right after the ID3v2 header (if present). It is enabled by
  5144. default, but will be written only if the output is seekable. The
  5145. <code class="code">write_xing</code> private option can be used to disable it. The frame contains
  5146. various information that may be useful to the decoder, like the audio duration
  5147. or encoder delay.
  5148. </li><li>A legacy ID3v1 tag at the end of the file (disabled by default). It may be
  5149. enabled with the <code class="code">write_id3v1</code> private option, but as its capabilities are
  5150. very limited, its usage is not recommended.
  5151. </li></ul>
  5152. <p>Examples:
  5153. </p>
  5154. <p>Write an mp3 with an ID3v2.3 header and an ID3v1 footer:
  5155. </p><div class="example">
  5156. <pre class="example-preformatted">ffmpeg -i INPUT -id3v2_version 3 -write_id3v1 1 out.mp3
  5157. </pre></div>
  5158. <p>To attach a picture to an mp3 file select both the audio and the picture stream
  5159. with <code class="code">map</code>:
  5160. </p><div class="example">
  5161. <pre class="example-preformatted">ffmpeg -i input.mp3 -i cover.png -c copy -map 0 -map 1
  5162. -metadata:s:v title=&quot;Album cover&quot; -metadata:s:v comment=&quot;Cover (Front)&quot; out.mp3
  5163. </pre></div>
  5164. <p>Write a &quot;clean&quot; MP3 without any extra features:
  5165. </p><div class="example">
  5166. <pre class="example-preformatted">ffmpeg -i input.wav -write_xing 0 -id3v2_version 0 out.mp3
  5167. </pre></div>
  5168. <a name="mpegts-1"></a>
  5169. <h3 class="section">4.63 mpegts<span class="pull-right"><a class="anchor hidden-xs" href="#mpegts-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-mpegts-1" aria-hidden="true">TOC</a></span></h3>
  5170. <p>MPEG transport stream muxer.
  5171. </p>
  5172. <p>This muxer implements ISO 13818-1 and part of ETSI EN 300 468.
  5173. </p>
  5174. <p>The recognized metadata settings in mpegts muxer are <code class="code">service_provider</code>
  5175. and <code class="code">service_name</code>. If they are not set the default for
  5176. <code class="code">service_provider</code> is &lsquo;<samp class="samp">FFmpeg</samp>&rsquo; and the default for
  5177. <code class="code">service_name</code> is &lsquo;<samp class="samp">Service01</samp>&rsquo;.
  5178. </p>
  5179. <a name="Options-30"></a>
  5180. <h4 class="subsection">4.63.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-30" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-30" aria-hidden="true">TOC</a></span></h4>
  5181. <p>The muxer options are:
  5182. </p>
  5183. <dl class="table">
  5184. <dt><samp class="option">mpegts_transport_stream_id <var class="var">integer</var></samp></dt>
  5185. <dd><p>Set the &lsquo;<samp class="samp">transport_stream_id</samp>&rsquo;. This identifies a transponder in DVB.
  5186. Default is <code class="code">0x0001</code>.
  5187. </p>
  5188. </dd>
  5189. <dt><samp class="option">mpegts_original_network_id <var class="var">integer</var></samp></dt>
  5190. <dd><p>Set the &lsquo;<samp class="samp">original_network_id</samp>&rsquo;. This is unique identifier of a
  5191. network in DVB. Its main use is in the unique identification of a service
  5192. through the path &lsquo;<samp class="samp">Original_Network_ID, Transport_Stream_ID</samp>&rsquo;. Default
  5193. is <code class="code">0x0001</code>.
  5194. </p>
  5195. </dd>
  5196. <dt><samp class="option">mpegts_service_id <var class="var">integer</var></samp></dt>
  5197. <dd><p>Set the &lsquo;<samp class="samp">service_id</samp>&rsquo;, also known as program in DVB. Default is
  5198. <code class="code">0x0001</code>.
  5199. </p>
  5200. </dd>
  5201. <dt><samp class="option">mpegts_service_type <var class="var">integer</var></samp></dt>
  5202. <dd><p>Set the program &lsquo;<samp class="samp">service_type</samp>&rsquo;. Default is <code class="code">digital_tv</code>.
  5203. Accepts the following options:
  5204. </p><dl class="table">
  5205. <dt>&lsquo;<samp class="samp">hex_value</samp>&rsquo;</dt>
  5206. <dd><p>Any hexadecimal value between <code class="code">0x01</code> and <code class="code">0xff</code> as defined in
  5207. ETSI 300 468.
  5208. </p></dd>
  5209. <dt>&lsquo;<samp class="samp">digital_tv</samp>&rsquo;</dt>
  5210. <dd><p>Digital TV service.
  5211. </p></dd>
  5212. <dt>&lsquo;<samp class="samp">digital_radio</samp>&rsquo;</dt>
  5213. <dd><p>Digital Radio service.
  5214. </p></dd>
  5215. <dt>&lsquo;<samp class="samp">teletext</samp>&rsquo;</dt>
  5216. <dd><p>Teletext service.
  5217. </p></dd>
  5218. <dt>&lsquo;<samp class="samp">advanced_codec_digital_radio</samp>&rsquo;</dt>
  5219. <dd><p>Advanced Codec Digital Radio service.
  5220. </p></dd>
  5221. <dt>&lsquo;<samp class="samp">mpeg2_digital_hdtv</samp>&rsquo;</dt>
  5222. <dd><p>MPEG2 Digital HDTV service.
  5223. </p></dd>
  5224. <dt>&lsquo;<samp class="samp">advanced_codec_digital_sdtv</samp>&rsquo;</dt>
  5225. <dd><p>Advanced Codec Digital SDTV service.
  5226. </p></dd>
  5227. <dt>&lsquo;<samp class="samp">advanced_codec_digital_hdtv</samp>&rsquo;</dt>
  5228. <dd><p>Advanced Codec Digital HDTV service.
  5229. </p></dd>
  5230. </dl>
  5231. </dd>
  5232. <dt><samp class="option">mpegts_pmt_start_pid <var class="var">integer</var></samp></dt>
  5233. <dd><p>Set the first PID for PMTs. Default is <code class="code">0x1000</code>, minimum is <code class="code">0x0020</code>,
  5234. maximum is <code class="code">0x1ffa</code>. This option has no effect in m2ts mode where the PMT
  5235. PID is fixed <code class="code">0x0100</code>.
  5236. </p>
  5237. </dd>
  5238. <dt><samp class="option">mpegts_start_pid <var class="var">integer</var></samp></dt>
  5239. <dd><p>Set the first PID for elementary streams. Default is <code class="code">0x0100</code>, minimum is
  5240. <code class="code">0x0020</code>, maximum is <code class="code">0x1ffa</code>. This option has no effect in m2ts mode
  5241. where the elementary stream PIDs are fixed.
  5242. </p>
  5243. </dd>
  5244. <dt><samp class="option">mpegts_m2ts_mode <var class="var">boolean</var></samp></dt>
  5245. <dd><p>Enable m2ts mode if set to <code class="code">1</code>. Default value is <code class="code">-1</code> which
  5246. disables m2ts mode.
  5247. </p>
  5248. </dd>
  5249. <dt><samp class="option">muxrate <var class="var">integer</var></samp></dt>
  5250. <dd><p>Set a constant muxrate. Default is VBR.
  5251. </p>
  5252. </dd>
  5253. <dt><samp class="option">pes_payload_size <var class="var">integer</var></samp></dt>
  5254. <dd><p>Set minimum PES packet payload in bytes. Default is <code class="code">2930</code>.
  5255. </p>
  5256. </dd>
  5257. <dt><samp class="option">mpegts_flags <var class="var">flags</var></samp></dt>
  5258. <dd><p>Set mpegts flags. Accepts the following options:
  5259. </p><dl class="table">
  5260. <dt>&lsquo;<samp class="samp">resend_headers</samp>&rsquo;</dt>
  5261. <dd><p>Reemit PAT/PMT before writing the next packet.
  5262. </p></dd>
  5263. <dt>&lsquo;<samp class="samp">latm</samp>&rsquo;</dt>
  5264. <dd><p>Use LATM packetization for AAC.
  5265. </p></dd>
  5266. <dt>&lsquo;<samp class="samp">pat_pmt_at_frames</samp>&rsquo;</dt>
  5267. <dd><p>Reemit PAT and PMT at each video frame.
  5268. </p></dd>
  5269. <dt>&lsquo;<samp class="samp">system_b</samp>&rsquo;</dt>
  5270. <dd><p>Conform to System B (DVB) instead of System A (ATSC).
  5271. </p></dd>
  5272. <dt>&lsquo;<samp class="samp">initial_discontinuity</samp>&rsquo;</dt>
  5273. <dd><p>Mark the initial packet of each stream as discontinuity.
  5274. </p></dd>
  5275. <dt>&lsquo;<samp class="samp">nit</samp>&rsquo;</dt>
  5276. <dd><p>Emit NIT table.
  5277. </p></dd>
  5278. <dt>&lsquo;<samp class="samp">omit_rai</samp>&rsquo;</dt>
  5279. <dd><p>Disable writing of random access indicator.
  5280. </p></dd>
  5281. </dl>
  5282. </dd>
  5283. <dt><samp class="option">mpegts_copyts <var class="var">boolean</var></samp></dt>
  5284. <dd><p>Preserve original timestamps, if value is set to <code class="code">1</code>. Default value
  5285. is <code class="code">-1</code>, which results in shifting timestamps so that they start from 0.
  5286. </p>
  5287. </dd>
  5288. <dt><samp class="option">omit_video_pes_length <var class="var">boolean</var></samp></dt>
  5289. <dd><p>Omit the PES packet length for video packets. Default is <code class="code">1</code> (true).
  5290. </p>
  5291. </dd>
  5292. <dt><samp class="option">pcr_period <var class="var">integer</var></samp></dt>
  5293. <dd><p>Override the default PCR retransmission time in milliseconds. Default is
  5294. <code class="code">-1</code> which means that the PCR interval will be determined automatically:
  5295. 20 ms is used for CBR streams, the highest multiple of the frame duration which
  5296. is less than 100 ms is used for VBR streams.
  5297. </p>
  5298. </dd>
  5299. <dt><samp class="option">pat_period <var class="var">duration</var></samp></dt>
  5300. <dd><p>Maximum time in seconds between PAT/PMT tables. Default is <code class="code">0.1</code>.
  5301. </p>
  5302. </dd>
  5303. <dt><samp class="option">sdt_period <var class="var">duration</var></samp></dt>
  5304. <dd><p>Maximum time in seconds between SDT tables. Default is <code class="code">0.5</code>.
  5305. </p>
  5306. </dd>
  5307. <dt><samp class="option">nit_period <var class="var">duration</var></samp></dt>
  5308. <dd><p>Maximum time in seconds between NIT tables. Default is <code class="code">0.5</code>.
  5309. </p>
  5310. </dd>
  5311. <dt><samp class="option">tables_version <var class="var">integer</var></samp></dt>
  5312. <dd><p>Set PAT, PMT, SDT and NIT version (default <code class="code">0</code>, valid values are from 0 to 31, inclusively).
  5313. This option allows updating stream structure so that standard consumer may
  5314. detect the change. To do so, reopen output <code class="code">AVFormatContext</code> (in case of API
  5315. usage) or restart <code class="command">ffmpeg</code> instance, cyclically changing
  5316. <samp class="option">tables_version</samp> value:
  5317. </p>
  5318. <div class="example">
  5319. <pre class="example-preformatted">ffmpeg -i source1.ts -codec copy -f mpegts -tables_version 0 udp://1.1.1.1:1111
  5320. ffmpeg -i source2.ts -codec copy -f mpegts -tables_version 1 udp://1.1.1.1:1111
  5321. ...
  5322. ffmpeg -i source3.ts -codec copy -f mpegts -tables_version 31 udp://1.1.1.1:1111
  5323. ffmpeg -i source1.ts -codec copy -f mpegts -tables_version 0 udp://1.1.1.1:1111
  5324. ffmpeg -i source2.ts -codec copy -f mpegts -tables_version 1 udp://1.1.1.1:1111
  5325. ...
  5326. </pre></div>
  5327. </dd>
  5328. </dl>
  5329. <a name="Example-8"></a>
  5330. <h4 class="subsection">4.63.2 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-8" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-8" aria-hidden="true">TOC</a></span></h4>
  5331. <div class="example">
  5332. <pre class="example-preformatted">ffmpeg -i file.mpg -c copy \
  5333. -mpegts_original_network_id 0x1122 \
  5334. -mpegts_transport_stream_id 0x3344 \
  5335. -mpegts_service_id 0x5566 \
  5336. -mpegts_pmt_start_pid 0x1500 \
  5337. -mpegts_start_pid 0x150 \
  5338. -metadata service_provider=&quot;Some provider&quot; \
  5339. -metadata service_name=&quot;Some Channel&quot; \
  5340. out.ts
  5341. </pre></div>
  5342. <a name="mxf_002c-mxf_005fd10_002c-mxf_005fopatom"></a>
  5343. <h3 class="section">4.64 mxf, mxf_d10, mxf_opatom<span class="pull-right"><a class="anchor hidden-xs" href="#mxf_002c-mxf_005fd10_002c-mxf_005fopatom" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-mxf_002c-mxf_005fd10_002c-mxf_005fopatom" aria-hidden="true">TOC</a></span></h3>
  5344. <p>MXF muxer.
  5345. </p>
  5346. <a name="Options-31"></a>
  5347. <h4 class="subsection">4.64.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-31" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-31" aria-hidden="true">TOC</a></span></h4>
  5348. <p>The muxer options are:
  5349. </p>
  5350. <dl class="table">
  5351. <dt><samp class="option">store_user_comments <var class="var">bool</var></samp></dt>
  5352. <dd><p>Set if user comments should be stored if available or never.
  5353. IRT D-10 does not allow user comments. The default is thus to write them for
  5354. mxf and mxf_opatom but not for mxf_d10
  5355. </p></dd>
  5356. </dl>
  5357. <a name="null"></a>
  5358. <h3 class="section">4.65 null<span class="pull-right"><a class="anchor hidden-xs" href="#null" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-null" aria-hidden="true">TOC</a></span></h3>
  5359. <p>Null muxer.
  5360. </p>
  5361. <p>This muxer does not generate any output file, it is mainly useful for
  5362. testing or benchmarking purposes.
  5363. </p>
  5364. <p>For example to benchmark decoding with <code class="command">ffmpeg</code> you can use the
  5365. command:
  5366. </p><div class="example">
  5367. <pre class="example-preformatted">ffmpeg -benchmark -i INPUT -f null out.null
  5368. </pre></div>
  5369. <p>Note that the above command does not read or write the <samp class="file">out.null</samp>
  5370. file, but specifying the output file is required by the <code class="command">ffmpeg</code>
  5371. syntax.
  5372. </p>
  5373. <p>Alternatively you can write the command as:
  5374. </p><div class="example">
  5375. <pre class="example-preformatted">ffmpeg -benchmark -i INPUT -f null -
  5376. </pre></div>
  5377. <a name="nut"></a>
  5378. <h3 class="section">4.66 nut<span class="pull-right"><a class="anchor hidden-xs" href="#nut" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-nut" aria-hidden="true">TOC</a></span></h3>
  5379. <dl class="table">
  5380. <dt><samp class="option">-syncpoints <var class="var">flags</var></samp></dt>
  5381. <dd><p>Change the syncpoint usage in nut:
  5382. </p><dl class="table">
  5383. <dt><samp class="option"><var class="var">default</var> use the normal low-overhead seeking aids.</samp></dt>
  5384. <dt><samp class="option"><var class="var">none</var> do not use the syncpoints at all, reducing the overhead but making the stream non-seekable;</samp></dt>
  5385. <dd><p>Use of this option is not recommended, as the resulting files are very damage
  5386. sensitive and seeking is not possible. Also in general the overhead from
  5387. syncpoints is negligible. Note, -<code class="code">write_index</code> 0 can be used to disable
  5388. all growing data tables, allowing to mux endless streams with limited memory
  5389. and without these disadvantages.
  5390. </p></dd>
  5391. <dt><samp class="option"><var class="var">timestamped</var> extend the syncpoint with a wallclock field.</samp></dt>
  5392. </dl>
  5393. <p>The <var class="var">none</var> and <var class="var">timestamped</var> flags are experimental.
  5394. </p></dd>
  5395. <dt><samp class="option">-write_index <var class="var">bool</var></samp></dt>
  5396. <dd><p>Write index at the end, the default is to write an index.
  5397. </p></dd>
  5398. </dl>
  5399. <div class="example">
  5400. <pre class="example-preformatted">ffmpeg -i INPUT -f_strict experimental -syncpoints none - | processor
  5401. </pre></div>
  5402. <a name="ogg"></a>
  5403. <h3 class="section">4.67 ogg<span class="pull-right"><a class="anchor hidden-xs" href="#ogg" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-ogg" aria-hidden="true">TOC</a></span></h3>
  5404. <p>Ogg container muxer.
  5405. </p>
  5406. <dl class="table">
  5407. <dt><samp class="option">-page_duration <var class="var">duration</var></samp></dt>
  5408. <dd><p>Preferred page duration, in microseconds. The muxer will attempt to create
  5409. pages that are approximately <var class="var">duration</var> microseconds long. This allows the
  5410. user to compromise between seek granularity and container overhead. The default
  5411. is 1 second. A value of 0 will fill all segments, making pages as large as
  5412. possible. A value of 1 will effectively use 1 packet-per-page in most
  5413. situations, giving a small seek granularity at the cost of additional container
  5414. overhead.
  5415. </p></dd>
  5416. <dt><samp class="option">-serial_offset <var class="var">value</var></samp></dt>
  5417. <dd><p>Serial value from which to set the streams serial number.
  5418. Setting it to different and sufficiently large values ensures that the produced
  5419. ogg files can be safely chained.
  5420. </p>
  5421. </dd>
  5422. </dl>
  5423. <a class="anchor" id="rcwtenc"></a><a name="rcwt-1"></a>
  5424. <h3 class="section">4.68 rcwt<span class="pull-right"><a class="anchor hidden-xs" href="#rcwt-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-rcwt-1" aria-hidden="true">TOC</a></span></h3>
  5425. <p>RCWT (Raw Captions With Time) is a format native to ccextractor, a commonly
  5426. used open source tool for processing 608/708 Closed Captions (CC) sources.
  5427. It can be used to archive the original extracted CC bitstream and to produce
  5428. a source file for later processing or conversion. The format allows
  5429. for interoperability between ccextractor and FFmpeg, is simple to parse,
  5430. and can be used to create a backup of the CC presentation.
  5431. </p>
  5432. <p>This muxer implements the specification as of March 2024, which has
  5433. been stable and unchanged since April 2014.
  5434. </p>
  5435. <p>This muxer will have some nuances from the way that ccextractor muxes RCWT.
  5436. No compatibility issues when processing the output with ccextractor
  5437. have been observed as a result of this so far, but mileage may vary
  5438. and outputs will not be a bit-exact match.
  5439. </p>
  5440. <p>A free specification of RCWT can be found here:
  5441. <a class="url" href="https://github.com/CCExtractor/ccextractor/blob/master/docs/BINARY_FILE_FORMAT.TXT">https://github.com/CCExtractor/ccextractor/blob/master/docs/BINARY_FILE_FORMAT.TXT</a>
  5442. </p>
  5443. <a name="Examples-16"></a>
  5444. <h4 class="subsection">4.68.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-16" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-16" aria-hidden="true">TOC</a></span></h4>
  5445. <ul class="itemize mark-bullet">
  5446. <li>Extract Closed Captions to RCWT using lavfi:
  5447. <div class="example">
  5448. <pre class="example-preformatted">ffmpeg -f lavfi -i &quot;movie=INPUT.mkv[out+subcc]&quot; -map 0:s:0 -c:s copy -f rcwt CC.rcwt.bin
  5449. </pre></div>
  5450. </li></ul>
  5451. <a class="anchor" id="segment"></a><a name="segment_002c-stream_005fsegment_002c-ssegment"></a>
  5452. <h3 class="section">4.69 segment, stream_segment, ssegment<span class="pull-right"><a class="anchor hidden-xs" href="#segment_002c-stream_005fsegment_002c-ssegment" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-segment_002c-stream_005fsegment_002c-ssegment" aria-hidden="true">TOC</a></span></h3>
  5453. <p>Basic stream segmenter.
  5454. </p>
  5455. <p>This muxer outputs streams to a number of separate files of nearly
  5456. fixed duration. Output filename pattern can be set in a fashion
  5457. similar to <a class="ref" href="#image2">image2</a>, or by using a <code class="code">strftime</code> template if
  5458. the <samp class="option">strftime</samp> option is enabled.
  5459. </p>
  5460. <p><code class="code">stream_segment</code> is a variant of the muxer used to write to
  5461. streaming output formats, i.e. which do not require global headers,
  5462. and is recommended for outputting e.g. to MPEG transport stream segments.
  5463. <code class="code">ssegment</code> is a shorter alias for <code class="code">stream_segment</code>.
  5464. </p>
  5465. <p>Every segment starts with a keyframe of the selected reference stream,
  5466. which is set through the <samp class="option">reference_stream</samp> option.
  5467. </p>
  5468. <p>Note that if you want accurate splitting for a video file, you need to
  5469. make the input key frames correspond to the exact splitting times
  5470. expected by the segmenter, or the segment muxer will start the new
  5471. segment with the key frame found next after the specified start
  5472. time.
  5473. </p>
  5474. <p>The segment muxer works best with a single constant frame rate video.
  5475. </p>
  5476. <p>Optionally it can generate a list of the created segments, by setting
  5477. the option <var class="var">segment_list</var>. The list type is specified by the
  5478. <var class="var">segment_list_type</var> option. The entry filenames in the segment
  5479. list are set by default to the basename of the corresponding segment
  5480. files.
  5481. </p>
  5482. <p>See also the <a class="ref" href="#hls">hls</a> muxer, which provides a more specific
  5483. implementation for HLS segmentation.
  5484. </p>
  5485. <a name="Options-32"></a>
  5486. <h4 class="subsection">4.69.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-32" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-32" aria-hidden="true">TOC</a></span></h4>
  5487. <p>The segment muxer supports the following options:
  5488. </p>
  5489. <dl class="table">
  5490. <dt><samp class="option">increment_tc <var class="var">1|0</var></samp></dt>
  5491. <dd><p>if set to <code class="code">1</code>, increment timecode between each segment
  5492. If this is selected, the input need to have
  5493. a timecode in the first video stream. Default value is
  5494. <code class="code">0</code>.
  5495. </p>
  5496. </dd>
  5497. <dt><samp class="option">reference_stream <var class="var">specifier</var></samp></dt>
  5498. <dd><p>Set the reference stream, as specified by the string <var class="var">specifier</var>.
  5499. If <var class="var">specifier</var> is set to <code class="code">auto</code>, the reference is chosen
  5500. automatically. Otherwise it must be a stream specifier (see the &ldquo;Stream
  5501. specifiers&rdquo; chapter in the ffmpeg manual) which specifies the
  5502. reference stream. The default value is <code class="code">auto</code>.
  5503. </p>
  5504. </dd>
  5505. <dt><samp class="option">segment_format <var class="var">format</var></samp></dt>
  5506. <dd><p>Override the inner container format, by default it is guessed by the filename
  5507. extension.
  5508. </p>
  5509. </dd>
  5510. <dt><samp class="option">segment_format_options <var class="var">options_list</var></samp></dt>
  5511. <dd><p>Set output format options using a :-separated list of key=value
  5512. parameters. Values containing the <code class="code">:</code> special character must be
  5513. escaped.
  5514. </p>
  5515. </dd>
  5516. <dt><samp class="option">segment_list <var class="var">name</var></samp></dt>
  5517. <dd><p>Generate also a listfile named <var class="var">name</var>. If not specified no
  5518. listfile is generated.
  5519. </p>
  5520. </dd>
  5521. <dt><samp class="option">segment_list_flags <var class="var">flags</var></samp></dt>
  5522. <dd><p>Set flags affecting the segment list generation.
  5523. </p>
  5524. <p>It currently supports the following flags:
  5525. </p><dl class="table">
  5526. <dt>&lsquo;<samp class="samp">cache</samp>&rsquo;</dt>
  5527. <dd><p>Allow caching (only affects M3U8 list files).
  5528. </p>
  5529. </dd>
  5530. <dt>&lsquo;<samp class="samp">live</samp>&rsquo;</dt>
  5531. <dd><p>Allow live-friendly file generation.
  5532. </p></dd>
  5533. </dl>
  5534. </dd>
  5535. <dt><samp class="option">segment_list_size <var class="var">size</var></samp></dt>
  5536. <dd><p>Update the list file so that it contains at most <var class="var">size</var>
  5537. segments. If 0 the list file will contain all the segments. Default
  5538. value is 0.
  5539. </p>
  5540. </dd>
  5541. <dt><samp class="option">segment_list_entry_prefix <var class="var">prefix</var></samp></dt>
  5542. <dd><p>Prepend <var class="var">prefix</var> to each entry. Useful to generate absolute paths.
  5543. By default no prefix is applied.
  5544. </p>
  5545. </dd>
  5546. <dt><samp class="option">segment_list_type <var class="var">type</var></samp></dt>
  5547. <dd><p>Select the listing format.
  5548. </p>
  5549. <p>The following values are recognized:
  5550. </p><dl class="table">
  5551. <dt>&lsquo;<samp class="samp">flat</samp>&rsquo;</dt>
  5552. <dd><p>Generate a flat list for the created segments, one segment per line.
  5553. </p>
  5554. </dd>
  5555. <dt>&lsquo;<samp class="samp">csv, ext</samp>&rsquo;</dt>
  5556. <dd><p>Generate a list for the created segments, one segment per line,
  5557. each line matching the format (comma-separated values):
  5558. </p><div class="example">
  5559. <pre class="example-preformatted"><var class="var">segment_filename</var>,<var class="var">segment_start_time</var>,<var class="var">segment_end_time</var>
  5560. </pre></div>
  5561. <p><var class="var">segment_filename</var> is the name of the output file generated by the
  5562. muxer according to the provided pattern. CSV escaping (according to
  5563. RFC4180) is applied if required.
  5564. </p>
  5565. <p><var class="var">segment_start_time</var> and <var class="var">segment_end_time</var> specify
  5566. the segment start and end time expressed in seconds.
  5567. </p>
  5568. <p>A list file with the suffix <code class="code">&quot;.csv&quot;</code> or <code class="code">&quot;.ext&quot;</code> will
  5569. auto-select this format.
  5570. </p>
  5571. <p>&lsquo;<samp class="samp">ext</samp>&rsquo; is deprecated in favor or &lsquo;<samp class="samp">csv</samp>&rsquo;.
  5572. </p>
  5573. </dd>
  5574. <dt>&lsquo;<samp class="samp">ffconcat</samp>&rsquo;</dt>
  5575. <dd><p>Generate an ffconcat file for the created segments. The resulting file
  5576. can be read using the FFmpeg <a class="ref" href="#concat">concat</a> demuxer.
  5577. </p>
  5578. <p>A list file with the suffix <code class="code">&quot;.ffcat&quot;</code> or <code class="code">&quot;.ffconcat&quot;</code> will
  5579. auto-select this format.
  5580. </p>
  5581. </dd>
  5582. <dt>&lsquo;<samp class="samp">m3u8</samp>&rsquo;</dt>
  5583. <dd><p>Generate an extended M3U8 file, version 3, compliant with
  5584. <a class="url" href="http://tools.ietf.org/id/draft-pantos-http-live-streaming">http://tools.ietf.org/id/draft-pantos-http-live-streaming</a>.
  5585. </p>
  5586. <p>A list file with the suffix <code class="code">&quot;.m3u8&quot;</code> will auto-select this format.
  5587. </p></dd>
  5588. </dl>
  5589. <p>If not specified the type is guessed from the list file name suffix.
  5590. </p>
  5591. </dd>
  5592. <dt><samp class="option">segment_time <var class="var">time</var></samp></dt>
  5593. <dd><p>Set segment duration to <var class="var">time</var>, the value must be a duration
  5594. specification. Default value is &quot;2&quot;. See also the
  5595. <samp class="option">segment_times</samp> option.
  5596. </p>
  5597. <p>Note that splitting may not be accurate, unless you force the
  5598. reference stream key-frames at the given time. See the introductory
  5599. notice and the examples below.
  5600. </p>
  5601. </dd>
  5602. <dt><samp class="option">min_seg_duration <var class="var">time</var></samp></dt>
  5603. <dd><p>Set minimum segment duration to <var class="var">time</var>, the value must be a duration
  5604. specification. This prevents the muxer ending segments at a duration below
  5605. this value. Only effective with <code class="code">segment_time</code>. Default value is &quot;0&quot;.
  5606. </p>
  5607. </dd>
  5608. <dt><samp class="option">segment_atclocktime <var class="var">1|0</var></samp></dt>
  5609. <dd><p>If set to &quot;1&quot; split at regular clock time intervals starting from 00:00
  5610. o&rsquo;clock. The <var class="var">time</var> value specified in <samp class="option">segment_time</samp> is
  5611. used for setting the length of the splitting interval.
  5612. </p>
  5613. <p>For example with <samp class="option">segment_time</samp> set to &quot;900&quot; this makes it possible
  5614. to create files at 12:00 o&rsquo;clock, 12:15, 12:30, etc.
  5615. </p>
  5616. <p>Default value is &quot;0&quot;.
  5617. </p>
  5618. </dd>
  5619. <dt><samp class="option">segment_clocktime_offset <var class="var">duration</var></samp></dt>
  5620. <dd><p>Delay the segment splitting times with the specified duration when using
  5621. <samp class="option">segment_atclocktime</samp>.
  5622. </p>
  5623. <p>For example with <samp class="option">segment_time</samp> set to &quot;900&quot; and
  5624. <samp class="option">segment_clocktime_offset</samp> set to &quot;300&quot; this makes it possible to
  5625. create files at 12:05, 12:20, 12:35, etc.
  5626. </p>
  5627. <p>Default value is &quot;0&quot;.
  5628. </p>
  5629. </dd>
  5630. <dt><samp class="option">segment_clocktime_wrap_duration <var class="var">duration</var></samp></dt>
  5631. <dd><p>Force the segmenter to only start a new segment if a packet reaches the muxer
  5632. within the specified duration after the segmenting clock time. This way you
  5633. can make the segmenter more resilient to backward local time jumps, such as
  5634. leap seconds or transition to standard time from daylight savings time.
  5635. </p>
  5636. <p>Default is the maximum possible duration which means starting a new segment
  5637. regardless of the elapsed time since the last clock time.
  5638. </p>
  5639. </dd>
  5640. <dt><samp class="option">segment_time_delta <var class="var">delta</var></samp></dt>
  5641. <dd><p>Specify the accuracy time when selecting the start time for a
  5642. segment, expressed as a duration specification. Default value is &quot;0&quot;.
  5643. </p>
  5644. <p>When delta is specified a key-frame will start a new segment if its
  5645. PTS satisfies the relation:
  5646. </p><div class="example">
  5647. <pre class="example-preformatted">PTS &gt;= start_time - time_delta
  5648. </pre></div>
  5649. <p>This option is useful when splitting video content, which is always
  5650. split at GOP boundaries, in case a key frame is found just before the
  5651. specified split time.
  5652. </p>
  5653. <p>In particular may be used in combination with the <samp class="file">ffmpeg</samp> option
  5654. <var class="var">force_key_frames</var>. The key frame times specified by
  5655. <var class="var">force_key_frames</var> may not be set accurately because of rounding
  5656. issues, with the consequence that a key frame time may result set just
  5657. before the specified time. For constant frame rate videos a value of
  5658. 1/(2*<var class="var">frame_rate</var>) should address the worst case mismatch between
  5659. the specified time and the time set by <var class="var">force_key_frames</var>.
  5660. </p>
  5661. </dd>
  5662. <dt><samp class="option">segment_times <var class="var">times</var></samp></dt>
  5663. <dd><p>Specify a list of split points. <var class="var">times</var> contains a list of comma
  5664. separated duration specifications, in increasing order. See also
  5665. the <samp class="option">segment_time</samp> option.
  5666. </p>
  5667. </dd>
  5668. <dt><samp class="option">segment_frames <var class="var">frames</var></samp></dt>
  5669. <dd><p>Specify a list of split video frame numbers. <var class="var">frames</var> contains a
  5670. list of comma separated integer numbers, in increasing order.
  5671. </p>
  5672. <p>This option specifies to start a new segment whenever a reference
  5673. stream key frame is found and the sequential number (starting from 0)
  5674. of the frame is greater or equal to the next value in the list.
  5675. </p>
  5676. </dd>
  5677. <dt><samp class="option">segment_wrap <var class="var">limit</var></samp></dt>
  5678. <dd><p>Wrap around segment index once it reaches <var class="var">limit</var>.
  5679. </p>
  5680. </dd>
  5681. <dt><samp class="option">segment_start_number <var class="var">number</var></samp></dt>
  5682. <dd><p>Set the sequence number of the first segment. Defaults to <code class="code">0</code>.
  5683. </p>
  5684. </dd>
  5685. <dt><samp class="option">strftime <var class="var">1|0</var></samp></dt>
  5686. <dd><p>Use the <code class="code">strftime</code> function to define the name of the new
  5687. segments to write. If this is selected, the output segment name must
  5688. contain a <code class="code">strftime</code> function template. Default value is
  5689. <code class="code">0</code>.
  5690. </p>
  5691. </dd>
  5692. <dt><samp class="option">break_non_keyframes <var class="var">1|0</var></samp></dt>
  5693. <dd><p>If enabled, allow segments to start on frames other than keyframes. This
  5694. improves behavior on some players when the time between keyframes is
  5695. inconsistent, but may make things worse on others, and can cause some oddities
  5696. during seeking. Defaults to <code class="code">0</code>.
  5697. </p>
  5698. </dd>
  5699. <dt><samp class="option">reset_timestamps <var class="var">1|0</var></samp></dt>
  5700. <dd><p>Reset timestamps at the beginning of each segment, so that each segment
  5701. will start with near-zero timestamps. It is meant to ease the playback
  5702. of the generated segments. May not work with some combinations of
  5703. muxers/codecs. It is set to <code class="code">0</code> by default.
  5704. </p>
  5705. </dd>
  5706. <dt><samp class="option">initial_offset <var class="var">offset</var></samp></dt>
  5707. <dd><p>Specify timestamp offset to apply to the output packet timestamps. The
  5708. argument must be a time duration specification, and defaults to 0.
  5709. </p>
  5710. </dd>
  5711. <dt><samp class="option">write_empty_segments <var class="var">1|0</var></samp></dt>
  5712. <dd><p>If enabled, write an empty segment if there are no packets during the period a
  5713. segment would usually span. Otherwise, the segment will be filled with the next
  5714. packet written. Defaults to <code class="code">0</code>.
  5715. </p></dd>
  5716. </dl>
  5717. <p>Make sure to require a closed GOP when encoding and to set the GOP
  5718. size to fit your segment time constraint.
  5719. </p>
  5720. <a name="Examples-17"></a>
  5721. <h4 class="subsection">4.69.2 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-17" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-17" aria-hidden="true">TOC</a></span></h4>
  5722. <ul class="itemize mark-bullet">
  5723. <li>Remux the content of file <samp class="file">in.mkv</samp> to a list of segments
  5724. <samp class="file">out-000.nut</samp>, <samp class="file">out-001.nut</samp>, etc., and write the list of
  5725. generated segments to <samp class="file">out.list</samp>:
  5726. <div class="example">
  5727. <pre class="example-preformatted">ffmpeg -i in.mkv -codec hevc -flags +cgop -g 60 -map 0 -f segment -segment_list out.list out%03d.nut
  5728. </pre></div>
  5729. </li><li>Segment input and set output format options for the output segments:
  5730. <div class="example">
  5731. <pre class="example-preformatted">ffmpeg -i in.mkv -f segment -segment_time 10 -segment_format_options movflags=+faststart out%03d.mp4
  5732. </pre></div>
  5733. </li><li>Segment the input file according to the split points specified by the
  5734. <var class="var">segment_times</var> option:
  5735. <div class="example">
  5736. <pre class="example-preformatted">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
  5737. </pre></div>
  5738. </li><li>Use the <code class="command">ffmpeg</code> <samp class="option">force_key_frames</samp>
  5739. option to force key frames in the input at the specified location, together
  5740. with the segment option <samp class="option">segment_time_delta</samp> to account for
  5741. possible roundings operated when setting key frame times.
  5742. <div class="example">
  5743. <pre class="example-preformatted">ffmpeg -i in.mkv -force_key_frames 1,2,3,5,8,13,21 -codec:v mpeg4 -codec:a pcm_s16le -map 0 \
  5744. -f segment -segment_list out.csv -segment_times 1,2,3,5,8,13,21 -segment_time_delta 0.05 out%03d.nut
  5745. </pre></div>
  5746. <p>In order to force key frames on the input file, transcoding is
  5747. required.
  5748. </p>
  5749. </li><li>Segment the input file by splitting the input file according to the
  5750. frame numbers sequence specified with the <samp class="option">segment_frames</samp> option:
  5751. <div class="example">
  5752. <pre class="example-preformatted">ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.csv -segment_frames 100,200,300,500,800 out%03d.nut
  5753. </pre></div>
  5754. </li><li>Convert the <samp class="file">in.mkv</samp> to TS segments using the <code class="code">libx264</code>
  5755. and <code class="code">aac</code> encoders:
  5756. <div class="example">
  5757. <pre class="example-preformatted">ffmpeg -i in.mkv -map 0 -codec:v libx264 -codec:a aac -f ssegment -segment_list out.list out%03d.ts
  5758. </pre></div>
  5759. </li><li>Segment the input file, and create an M3U8 live playlist (can be used
  5760. as live HLS source):
  5761. <div class="example">
  5762. <pre class="example-preformatted">ffmpeg -re -i in.mkv -codec copy -map 0 -f segment -segment_list playlist.m3u8 \
  5763. -segment_list_flags +live -segment_time 10 out%03d.mkv
  5764. </pre></div>
  5765. </li></ul>
  5766. <a name="smoothstreaming"></a>
  5767. <h3 class="section">4.70 smoothstreaming<span class="pull-right"><a class="anchor hidden-xs" href="#smoothstreaming" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-smoothstreaming" aria-hidden="true">TOC</a></span></h3>
  5768. <p>Smooth Streaming muxer generates a set of files (Manifest, chunks) suitable for serving with conventional web server.
  5769. </p>
  5770. <dl class="table">
  5771. <dt><samp class="option">window_size</samp></dt>
  5772. <dd><p>Specify the number of fragments kept in the manifest. Default 0 (keep all).
  5773. </p>
  5774. </dd>
  5775. <dt><samp class="option">extra_window_size</samp></dt>
  5776. <dd><p>Specify the number of fragments kept outside of the manifest before removing from disk. Default 5.
  5777. </p>
  5778. </dd>
  5779. <dt><samp class="option">lookahead_count</samp></dt>
  5780. <dd><p>Specify the number of lookahead fragments. Default 2.
  5781. </p>
  5782. </dd>
  5783. <dt><samp class="option">min_frag_duration</samp></dt>
  5784. <dd><p>Specify the minimum fragment duration (in microseconds). Default 5000000.
  5785. </p>
  5786. </dd>
  5787. <dt><samp class="option">remove_at_exit</samp></dt>
  5788. <dd><p>Specify whether to remove all fragments when finished. Default 0 (do not remove).
  5789. </p>
  5790. </dd>
  5791. </dl>
  5792. <a class="anchor" id="streamhash"></a><a name="streamhash-1"></a>
  5793. <h3 class="section">4.71 streamhash<span class="pull-right"><a class="anchor hidden-xs" href="#streamhash-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-streamhash-1" aria-hidden="true">TOC</a></span></h3>
  5794. <p>Per stream hash testing format.
  5795. </p>
  5796. <p>This muxer computes and prints a cryptographic hash of all the input frames,
  5797. on a per-stream basis. This can be used for equality checks without having
  5798. to do a complete binary comparison.
  5799. </p>
  5800. <p>By default audio frames are converted to signed 16-bit raw audio and
  5801. video frames to raw video before computing the hash, but the output
  5802. of explicit conversions to other codecs can also be used. Timestamps
  5803. are ignored. It uses the SHA-256 cryptographic hash function by default,
  5804. but supports several other algorithms.
  5805. </p>
  5806. <p>The output of the muxer consists of one line per stream of the form:
  5807. <var class="var">streamindex</var>,<var class="var">streamtype</var>,<var class="var">algo</var>=<var class="var">hash</var>, where
  5808. <var class="var">streamindex</var> is the index of the mapped stream, <var class="var">streamtype</var> is a
  5809. single character indicating the type of stream, <var class="var">algo</var> is a short string
  5810. representing the hash function used, and <var class="var">hash</var> is a hexadecimal number
  5811. representing the computed hash.
  5812. </p>
  5813. <dl class="table">
  5814. <dt><samp class="option">hash <var class="var">algorithm</var></samp></dt>
  5815. <dd><p>Use the cryptographic hash function specified by the string <var class="var">algorithm</var>.
  5816. Supported values include <code class="code">MD5</code>, <code class="code">murmur3</code>, <code class="code">RIPEMD128</code>,
  5817. <code class="code">RIPEMD160</code>, <code class="code">RIPEMD256</code>, <code class="code">RIPEMD320</code>, <code class="code">SHA160</code>,
  5818. <code class="code">SHA224</code>, <code class="code">SHA256</code> (default), <code class="code">SHA512/224</code>, <code class="code">SHA512/256</code>,
  5819. <code class="code">SHA384</code>, <code class="code">SHA512</code>, <code class="code">CRC32</code> and <code class="code">adler32</code>.
  5820. </p>
  5821. </dd>
  5822. </dl>
  5823. <a name="Examples-18"></a>
  5824. <h4 class="subsection">4.71.1 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-18" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-18" aria-hidden="true">TOC</a></span></h4>
  5825. <p>To compute the SHA-256 hash of the input converted to raw audio and
  5826. video, and store it in the file <samp class="file">out.sha256</samp>:
  5827. </p><div class="example">
  5828. <pre class="example-preformatted">ffmpeg -i INPUT -f streamhash out.sha256
  5829. </pre></div>
  5830. <p>To print an MD5 hash to stdout use the command:
  5831. </p><div class="example">
  5832. <pre class="example-preformatted">ffmpeg -i INPUT -f streamhash -hash md5 -
  5833. </pre></div>
  5834. <p>See also the <a class="ref" href="#hash">hash</a> and <a class="ref" href="#framehash">framehash</a> muxers.
  5835. </p>
  5836. <a class="anchor" id="tee"></a><a name="tee-1"></a>
  5837. <h3 class="section">4.72 tee<span class="pull-right"><a class="anchor hidden-xs" href="#tee-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-tee-1" aria-hidden="true">TOC</a></span></h3>
  5838. <p>The tee muxer can be used to write the same data to several outputs, such as files or streams.
  5839. It can be used, for example, to stream a video over a network and save it to disk at the same time.
  5840. </p>
  5841. <p>It is different from specifying several outputs to the <code class="command">ffmpeg</code>
  5842. command-line tool. With the tee muxer, the audio and video data will be encoded only once.
  5843. With conventional multiple outputs, multiple encoding operations in parallel are initiated,
  5844. which can be a very expensive process. The tee muxer is not useful when using the libavformat API
  5845. directly because it is then possible to feed the same packets to several muxers directly.
  5846. </p>
  5847. <p>Since the tee muxer does not represent any particular output format, ffmpeg cannot auto-select
  5848. output streams. So all streams intended for output must be specified using <code class="code">-map</code>. See
  5849. the examples below.
  5850. </p>
  5851. <p>Some encoders may need different options depending on the output format;
  5852. the auto-detection of this can not work with the tee muxer, so they need to be explicitly specified.
  5853. The main example is the <samp class="option">global_header</samp> flag.
  5854. </p>
  5855. <p>The slave outputs are specified in the file name given to the muxer,
  5856. separated by &rsquo;|&rsquo;. If any of the slave name contains the &rsquo;|&rsquo; separator,
  5857. leading or trailing spaces or any special character, those must be
  5858. escaped (see <a data-manual="ffmpeg-utils" href="ffmpeg-utils.html#quoting_005fand_005fescaping">the &quot;Quoting and escaping&quot;
  5859. section in the ffmpeg-utils(1) manual</a>).
  5860. </p>
  5861. <a name="Options-33"></a>
  5862. <h4 class="subsection">4.72.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-33" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-33" aria-hidden="true">TOC</a></span></h4>
  5863. <dl class="table">
  5864. <dt><samp class="option">use_fifo <var class="var">bool</var></samp></dt>
  5865. <dd><p>If set to 1, slave outputs will be processed in separate threads using the <a class="ref" href="#fifo">fifo</a>
  5866. muxer. This allows to compensate for different speed/latency/reliability of
  5867. outputs and setup transparent recovery. By default this feature is turned off.
  5868. </p>
  5869. </dd>
  5870. <dt><samp class="option">fifo_options</samp></dt>
  5871. <dd><p>Options to pass to fifo pseudo-muxer instances. See <a class="ref" href="#fifo">fifo</a>.
  5872. </p>
  5873. </dd>
  5874. </dl>
  5875. <p>Muxer options can be specified for each slave by prepending them as a list of
  5876. <var class="var">key</var>=<var class="var">value</var> pairs separated by &rsquo;:&rsquo;, between square brackets. If
  5877. the options values contain a special character or the &rsquo;:&rsquo; separator, they
  5878. must be escaped; note that this is a second level escaping.
  5879. </p>
  5880. <p>The following special options are also recognized:
  5881. </p><dl class="table">
  5882. <dt><samp class="option">f</samp></dt>
  5883. <dd><p>Specify the format name. Required if it cannot be guessed from the
  5884. output URL.
  5885. </p>
  5886. </dd>
  5887. <dt><samp class="option">bsfs[/<var class="var">spec</var>]</samp></dt>
  5888. <dd><p>Specify a list of bitstream filters to apply to the specified
  5889. output.
  5890. </p>
  5891. <p>It is possible to specify to which streams a given bitstream filter
  5892. applies, by appending a stream specifier to the option separated by
  5893. <code class="code">/</code>. <var class="var">spec</var> must be a stream specifier (see <a class="ref" href="#Format-stream-specifiers">Format stream specifiers</a>).
  5894. </p>
  5895. <p>If the stream specifier is not specified, the bitstream filters will be
  5896. applied to all streams in the output. This will cause that output operation
  5897. to fail if the output contains streams to which the bitstream filter cannot
  5898. be applied e.g. <code class="code">h264_mp4toannexb</code> being applied to an output containing an audio stream.
  5899. </p>
  5900. <p>Options for a bitstream filter must be specified in the form of <code class="code">opt=value</code>.
  5901. </p>
  5902. <p>Several bitstream filters can be specified, separated by &quot;,&quot;.
  5903. </p>
  5904. </dd>
  5905. <dt><samp class="option">use_fifo <var class="var">bool</var></samp></dt>
  5906. <dd><p>This allows to override tee muxer use_fifo option for individual slave muxer.
  5907. </p>
  5908. </dd>
  5909. <dt><samp class="option">fifo_options</samp></dt>
  5910. <dd><p>This allows to override tee muxer fifo_options for individual slave muxer.
  5911. See <a class="ref" href="#fifo">fifo</a>.
  5912. </p>
  5913. </dd>
  5914. <dt><samp class="option">select</samp></dt>
  5915. <dd><p>Select the streams that should be mapped to the slave output,
  5916. specified by a stream specifier. If not specified, this defaults to
  5917. all the mapped streams. This will cause that output operation to fail
  5918. if the output format does not accept all mapped streams.
  5919. </p>
  5920. <p>You may use multiple stream specifiers separated by commas (<code class="code">,</code>) e.g.: <code class="code">a:0,v</code>
  5921. </p>
  5922. </dd>
  5923. <dt><samp class="option">onfail</samp></dt>
  5924. <dd><p>Specify behaviour on output failure. This can be set to either <code class="code">abort</code> (which is
  5925. default) or <code class="code">ignore</code>. <code class="code">abort</code> will cause whole process to fail in case of failure
  5926. on this slave output. <code class="code">ignore</code> will ignore failure on this output, so other outputs
  5927. will continue without being affected.
  5928. </p></dd>
  5929. </dl>
  5930. <a name="Examples-19"></a>
  5931. <h4 class="subsection">4.72.2 Examples<span class="pull-right"><a class="anchor hidden-xs" href="#Examples-19" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Examples-19" aria-hidden="true">TOC</a></span></h4>
  5932. <ul class="itemize mark-bullet">
  5933. <li>Encode something and both archive it in a WebM file and stream it
  5934. as MPEG-TS over UDP:
  5935. <div class="example">
  5936. <pre class="example-preformatted">ffmpeg -i ... -c:v libx264 -c:a mp2 -f tee -map 0:v -map 0:a
  5937. &quot;archive-20121107.mkv|[f=mpegts]udp://10.0.1.255:1234/&quot;
  5938. </pre></div>
  5939. </li><li>As above, but continue streaming even if output to local file fails
  5940. (for example local drive fills up):
  5941. <div class="example">
  5942. <pre class="example-preformatted">ffmpeg -i ... -c:v libx264 -c:a mp2 -f tee -map 0:v -map 0:a
  5943. &quot;[onfail=ignore]archive-20121107.mkv|[f=mpegts]udp://10.0.1.255:1234/&quot;
  5944. </pre></div>
  5945. </li><li>Use <code class="command">ffmpeg</code> to encode the input, and send the output
  5946. to three different destinations. The <code class="code">dump_extra</code> bitstream
  5947. filter is used to add extradata information to all the output video
  5948. keyframes packets, as requested by the MPEG-TS format. The select
  5949. option is applied to <samp class="file">out.aac</samp> in order to make it contain only
  5950. audio packets.
  5951. <div class="example">
  5952. <pre class="example-preformatted">ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac
  5953. -f tee &quot;[bsfs/v=dump_extra=freq=keyframe]out.ts|[movflags=+faststart]out.mp4|[select=a]out.aac&quot;
  5954. </pre></div>
  5955. </li><li>As above, but select only stream <code class="code">a:1</code> for the audio output. Note
  5956. that a second level escaping must be performed, as &quot;:&quot; is a special
  5957. character used to separate options.
  5958. <div class="example">
  5959. <pre class="example-preformatted">ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac
  5960. -f tee &quot;[bsfs/v=dump_extra=freq=keyframe]out.ts|[movflags=+faststart]out.mp4|[select=\'a:1\']out.aac&quot;
  5961. </pre></div>
  5962. </li></ul>
  5963. <a name="webm_005fchunk"></a>
  5964. <h3 class="section">4.73 webm_chunk<span class="pull-right"><a class="anchor hidden-xs" href="#webm_005fchunk" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-webm_005fchunk" aria-hidden="true">TOC</a></span></h3>
  5965. <p>WebM Live Chunk Muxer.
  5966. </p>
  5967. <p>This muxer writes out WebM headers and chunks as separate files which can be
  5968. consumed by clients that support WebM Live streams via DASH.
  5969. </p>
  5970. <a name="Options-34"></a>
  5971. <h4 class="subsection">4.73.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-34" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-34" aria-hidden="true">TOC</a></span></h4>
  5972. <p>This muxer supports the following options:
  5973. </p>
  5974. <dl class="table">
  5975. <dt><samp class="option">chunk_start_index</samp></dt>
  5976. <dd><p>Index of the first chunk (defaults to 0).
  5977. </p>
  5978. </dd>
  5979. <dt><samp class="option">header</samp></dt>
  5980. <dd><p>Filename of the header where the initialization data will be written.
  5981. </p>
  5982. </dd>
  5983. <dt><samp class="option">audio_chunk_duration</samp></dt>
  5984. <dd><p>Duration of each audio chunk in milliseconds (defaults to 5000).
  5985. </p></dd>
  5986. </dl>
  5987. <a name="Example-9"></a>
  5988. <h4 class="subsection">4.73.2 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-9" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-9" aria-hidden="true">TOC</a></span></h4>
  5989. <div class="example">
  5990. <pre class="example-preformatted">ffmpeg -f v4l2 -i /dev/video0 \
  5991. -f alsa -i hw:0 \
  5992. -map 0:0 \
  5993. -c:v libvpx-vp9 \
  5994. -s 640x360 -keyint_min 30 -g 30 \
  5995. -f webm_chunk \
  5996. -header webm_live_video_360.hdr \
  5997. -chunk_start_index 1 \
  5998. webm_live_video_360_%d.chk \
  5999. -map 1:0 \
  6000. -c:a libvorbis \
  6001. -b:a 128k \
  6002. -f webm_chunk \
  6003. -header webm_live_audio_128.hdr \
  6004. -chunk_start_index 1 \
  6005. -audio_chunk_duration 1000 \
  6006. webm_live_audio_128_%d.chk
  6007. </pre></div>
  6008. <a name="webm_005fdash_005fmanifest"></a>
  6009. <h3 class="section">4.74 webm_dash_manifest<span class="pull-right"><a class="anchor hidden-xs" href="#webm_005fdash_005fmanifest" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-webm_005fdash_005fmanifest" aria-hidden="true">TOC</a></span></h3>
  6010. <p>WebM DASH Manifest muxer.
  6011. </p>
  6012. <p>This muxer implements the WebM DASH Manifest specification to generate the DASH
  6013. manifest XML. It also supports manifest generation for DASH live streams.
  6014. </p>
  6015. <p>For more information see:
  6016. </p>
  6017. <ul class="itemize mark-bullet">
  6018. <li>WebM DASH Specification: <a class="url" href="https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/webm-dash-specification">https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/webm-dash-specification</a>
  6019. </li><li>ISO DASH Specification: <a class="url" href="http://standards.iso.org/ittf/PubliclyAvailableStandards/c065274_ISO_IEC_23009-1_2014.zip">http://standards.iso.org/ittf/PubliclyAvailableStandards/c065274_ISO_IEC_23009-1_2014.zip</a>
  6020. </li></ul>
  6021. <a name="Options-35"></a>
  6022. <h4 class="subsection">4.74.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-35" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-35" aria-hidden="true">TOC</a></span></h4>
  6023. <p>This muxer supports the following options:
  6024. </p>
  6025. <dl class="table">
  6026. <dt><samp class="option">adaptation_sets</samp></dt>
  6027. <dd><p>This option has the following syntax: &quot;id=x,streams=a,b,c id=y,streams=d,e&quot; where x and y are the
  6028. unique identifiers of the adaptation sets and a,b,c,d and e are the indices of the corresponding
  6029. audio and video streams. Any number of adaptation sets can be added using this option.
  6030. </p>
  6031. </dd>
  6032. <dt><samp class="option">live</samp></dt>
  6033. <dd><p>Set this to 1 to create a live stream DASH Manifest. Default: 0.
  6034. </p>
  6035. </dd>
  6036. <dt><samp class="option">chunk_start_index</samp></dt>
  6037. <dd><p>Start index of the first chunk. This will go in the &lsquo;<samp class="samp">startNumber</samp>&rsquo; attribute
  6038. of the &lsquo;<samp class="samp">SegmentTemplate</samp>&rsquo; element in the manifest. Default: 0.
  6039. </p>
  6040. </dd>
  6041. <dt><samp class="option">chunk_duration_ms</samp></dt>
  6042. <dd><p>Duration of each chunk in milliseconds. This will go in the &lsquo;<samp class="samp">duration</samp>&rsquo;
  6043. attribute of the &lsquo;<samp class="samp">SegmentTemplate</samp>&rsquo; element in the manifest. Default: 1000.
  6044. </p>
  6045. </dd>
  6046. <dt><samp class="option">utc_timing_url</samp></dt>
  6047. <dd><p>URL of the page that will return the UTC timestamp in ISO format. This will go
  6048. in the &lsquo;<samp class="samp">value</samp>&rsquo; attribute of the &lsquo;<samp class="samp">UTCTiming</samp>&rsquo; element in the manifest.
  6049. Default: None.
  6050. </p>
  6051. </dd>
  6052. <dt><samp class="option">time_shift_buffer_depth</samp></dt>
  6053. <dd><p>Smallest time (in seconds) shifting buffer for which any Representation is
  6054. guaranteed to be available. This will go in the &lsquo;<samp class="samp">timeShiftBufferDepth</samp>&rsquo;
  6055. attribute of the &lsquo;<samp class="samp">MPD</samp>&rsquo; element. Default: 60.
  6056. </p>
  6057. </dd>
  6058. <dt><samp class="option">minimum_update_period</samp></dt>
  6059. <dd><p>Minimum update period (in seconds) of the manifest. This will go in the
  6060. &lsquo;<samp class="samp">minimumUpdatePeriod</samp>&rsquo; attribute of the &lsquo;<samp class="samp">MPD</samp>&rsquo; element. Default: 0.
  6061. </p>
  6062. </dd>
  6063. </dl>
  6064. <a name="Example-10"></a>
  6065. <h4 class="subsection">4.74.2 Example<span class="pull-right"><a class="anchor hidden-xs" href="#Example-10" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Example-10" aria-hidden="true">TOC</a></span></h4>
  6066. <div class="example">
  6067. <pre class="example-preformatted">ffmpeg -f webm_dash_manifest -i video1.webm \
  6068. -f webm_dash_manifest -i video2.webm \
  6069. -f webm_dash_manifest -i audio1.webm \
  6070. -f webm_dash_manifest -i audio2.webm \
  6071. -map 0 -map 1 -map 2 -map 3 \
  6072. -c copy \
  6073. -f webm_dash_manifest \
  6074. -adaptation_sets &quot;id=0,streams=0,1 id=1,streams=2,3&quot; \
  6075. manifest.xml
  6076. </pre></div>
  6077. <a class="anchor" id="whip"></a><a name="whip-1"></a>
  6078. <h3 class="section">4.75 whip<span class="pull-right"><a class="anchor hidden-xs" href="#whip-1" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-whip-1" aria-hidden="true">TOC</a></span></h3>
  6079. <p>WebRTC (Real-Time Communication) muxer that supports sub-second latency streaming according to
  6080. the WHIP (WebRTC-HTTP ingestion protocol) specification.
  6081. </p>
  6082. <p>This is an experimental feature.
  6083. </p>
  6084. <p>It uses HTTP as a signaling protocol to exchange SDP capabilities and ICE lite candidates. Then,
  6085. it uses STUN binding requests and responses to establish a session over UDP. Subsequently, it
  6086. initiates a DTLS handshake to exchange the SRTP encryption keys. Lastly, it splits video and
  6087. audio frames into RTP packets and encrypts them using SRTP.
  6088. </p>
  6089. <p>Ensure that you use H.264 without B frames and Opus for the audio codec. For example, to convert
  6090. an input file with <code class="command">ffmpeg</code> to WebRTC:
  6091. </p><div class="example">
  6092. <pre class="example-preformatted">ffmpeg -re -i input.mp4 -acodec libopus -ar 48000 -ac 2 \
  6093. -vcodec libx264 -profile:v baseline -tune zerolatency -threads 1 -bf 0 \
  6094. -f whip &quot;http://localhost:1985/rtc/v1/whip/?app=live&amp;stream=livestream&quot;
  6095. </pre></div>
  6096. <p>For this example, we have employed low latency options, resulting in an end-to-end latency of
  6097. approximately 150ms.
  6098. </p>
  6099. <a name="Options-36"></a>
  6100. <h4 class="subsection">4.75.1 Options<span class="pull-right"><a class="anchor hidden-xs" href="#Options-36" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Options-36" aria-hidden="true">TOC</a></span></h4>
  6101. <p>This muxer supports the following options:
  6102. </p>
  6103. <dl class="table">
  6104. <dt><samp class="option">handshake_timeout <var class="var">integer</var></samp></dt>
  6105. <dd><p>Set the timeout in milliseconds for ICE and DTLS handshake.
  6106. Default value is 5000.
  6107. </p>
  6108. </dd>
  6109. <dt><samp class="option">pkt_size <var class="var">integer</var></samp></dt>
  6110. <dd><p>Set the maximum size, in bytes, of RTP packets that send out.
  6111. Default value is 1200.
  6112. </p>
  6113. </dd>
  6114. <dt><samp class="option">ts_buffer_size <var class="var">integer</var></samp></dt>
  6115. <dd><p>Set the buffer size, in bytes, of underlying protocol.
  6116. Default value is -1(auto). The UDP auto selects a reasonable value.
  6117. </p>
  6118. </dd>
  6119. <dt><samp class="option">whip_flags <var class="var">flags</var></samp></dt>
  6120. <dd><p>Possible values:
  6121. </p>
  6122. <dl class="table">
  6123. <dt>&lsquo;<samp class="samp">dtls_active</samp>&rsquo;</dt>
  6124. <dd><p>The muxer will try to set dtls active role and send the first client hello.
  6125. </p></dd>
  6126. </dl>
  6127. </dd>
  6128. <dt><samp class="option">authorization <var class="var">string</var></samp></dt>
  6129. <dd><p>The optional Bearer token for WHIP Authorization.
  6130. </p>
  6131. </dd>
  6132. <dt><samp class="option">cert_file <var class="var">string</var></samp></dt>
  6133. <dd><p>The optional certificate file path for DTLS.
  6134. </p>
  6135. </dd>
  6136. <dt><samp class="option">key_file <var class="var">string</var></samp></dt>
  6137. <dd><p>The optional private key file path for DTLS.
  6138. </p>
  6139. </dd>
  6140. </dl>
  6141. <a class="anchor" id="metadata"></a><a name="Metadata-2"></a>
  6142. <h2 class="chapter">5 Metadata<span class="pull-right"><a class="anchor hidden-xs" href="#Metadata-2" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Metadata-2" aria-hidden="true">TOC</a></span></h2>
  6143. <p>FFmpeg is able to dump metadata from media files into a simple UTF-8-encoded
  6144. INI-like text file and then load it back using the metadata muxer/demuxer.
  6145. </p>
  6146. <p>The file format is as follows:
  6147. </p><ol class="enumerate">
  6148. <li> A file consists of a header and a number of metadata tags divided into sections,
  6149. each on its own line.
  6150. </li><li> The header is a &lsquo;<samp class="samp">;FFMETADATA</samp>&rsquo; string, followed by a version number (now 1).
  6151. </li><li> Metadata tags are of the form &lsquo;<samp class="samp">key=value</samp>&rsquo;
  6152. </li><li> Immediately after header follows global metadata
  6153. </li><li> After global metadata there may be sections with per-stream/per-chapter
  6154. metadata.
  6155. </li><li> A section starts with the section name in uppercase (i.e. STREAM or CHAPTER) in
  6156. brackets (&lsquo;<samp class="samp">[</samp>&rsquo;, &lsquo;<samp class="samp">]</samp>&rsquo;) and ends with next section or end of file.
  6157. </li><li> At the beginning of a chapter section there may be an optional timebase to be
  6158. used for start/end values. It must be in form
  6159. &lsquo;<samp class="samp">TIMEBASE=<var class="var">num</var>/<var class="var">den</var></samp>&rsquo;, where <var class="var">num</var> and <var class="var">den</var> are
  6160. integers. If the timebase is missing then start/end times are assumed to
  6161. be in nanoseconds.
  6162. <p>Next a chapter section must contain chapter start and end times in form
  6163. &lsquo;<samp class="samp">START=<var class="var">num</var></samp>&rsquo;, &lsquo;<samp class="samp">END=<var class="var">num</var></samp>&rsquo;, where <var class="var">num</var> is a positive
  6164. integer.
  6165. </p>
  6166. </li><li> Empty lines and lines starting with &lsquo;<samp class="samp">;</samp>&rsquo; or &lsquo;<samp class="samp">#</samp>&rsquo; are ignored.
  6167. </li><li> Metadata keys or values containing special characters (&lsquo;<samp class="samp">=</samp>&rsquo;, &lsquo;<samp class="samp">;</samp>&rsquo;,
  6168. &lsquo;<samp class="samp">#</samp>&rsquo;, &lsquo;<samp class="samp">\</samp>&rsquo; and a newline) must be escaped with a backslash &lsquo;<samp class="samp">\</samp>&rsquo;.
  6169. </li><li> Note that whitespace in metadata (e.g. &lsquo;<samp class="samp">foo = bar</samp>&rsquo;) is considered to be
  6170. a part of the tag (in the example above key is &lsquo;<samp class="samp">foo </samp>&rsquo;, value is
  6171. &lsquo;<samp class="samp"> bar</samp>&rsquo;).
  6172. </li></ol>
  6173. <p>A ffmetadata file might look like this:
  6174. </p><div class="example">
  6175. <pre class="example-preformatted">;FFMETADATA1
  6176. title=bike\\shed
  6177. ;this is a comment
  6178. artist=FFmpeg troll team
  6179. [CHAPTER]
  6180. TIMEBASE=1/1000
  6181. START=0
  6182. #chapter ends at 0:01:00
  6183. END=60000
  6184. title=chapter \#1
  6185. [STREAM]
  6186. title=multi\
  6187. line
  6188. </pre></div>
  6189. <p>By using the ffmetadata muxer and demuxer it is possible to extract
  6190. metadata from an input file to an ffmetadata file, and then transcode
  6191. the file into an output file with the edited ffmetadata file.
  6192. </p>
  6193. <p>Extracting an ffmetadata file with <samp class="file">ffmpeg</samp> goes as follows:
  6194. </p><div class="example">
  6195. <pre class="example-preformatted">ffmpeg -i INPUT -f ffmetadata FFMETADATAFILE
  6196. </pre></div>
  6197. <p>Reinserting edited metadata information from the FFMETADATAFILE file can
  6198. be done as:
  6199. </p><div class="example">
  6200. <pre class="example-preformatted">ffmpeg -i INPUT -i FFMETADATAFILE -map_metadata 1 -codec copy OUTPUT
  6201. </pre></div>
  6202. <a name="See-Also"></a>
  6203. <h2 class="chapter">6 See Also<span class="pull-right"><a class="anchor hidden-xs" href="#See-Also" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-See-Also" aria-hidden="true">TOC</a></span></h2>
  6204. <p><a class="url" href="ffmpeg.html">ffmpeg</a>, <a class="url" href="ffplay.html">ffplay</a>, <a class="url" href="ffprobe.html">ffprobe</a>,
  6205. <a class="url" href="libavformat.html">libavformat</a>
  6206. </p>
  6207. <a name="Authors"></a>
  6208. <h2 class="chapter">7 Authors<span class="pull-right"><a class="anchor hidden-xs" href="#Authors" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Authors" aria-hidden="true">TOC</a></span></h2>
  6209. <p>The FFmpeg developers.
  6210. </p>
  6211. <p>For details about the authorship, see the Git history of the project
  6212. (https://git.ffmpeg.org/ffmpeg), e.g. by typing the command
  6213. <code class="command">git log</code> in the FFmpeg source directory, or browsing the
  6214. online repository at <a class="url" href="https://git.ffmpeg.org/ffmpeg">https://git.ffmpeg.org/ffmpeg</a>.
  6215. </p>
  6216. <p>Maintainers for the specific components are listed in the file
  6217. <samp class="file">MAINTAINERS</samp> in the source code tree.
  6218. </p>
  6219. <p style="font-size: small;">
  6220. This document was generated using <a class="uref" href="https://www.gnu.org/software/texinfo/"><em class="emph">makeinfo</em></a>.
  6221. </p>
  6222. </div>
  6223. </body>
  6224. </html>