ffmpeg-protocols.html 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556
  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 -->
  4. <head>
  5. <meta charset="utf-8">
  6. <title>
  7. FFmpeg Protocols 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 Protocols Documentation
  17. </h1>
  18. <div class="top-level-extent" id="SEC_Top">
  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-Protocol-Options" href="#Protocol-Options">2 Protocol Options</a></li>
  25. <li><a id="toc-Protocols" href="#Protocols">3 Protocols</a>
  26. <ul class="toc-numbered-mark">
  27. <li><a id="toc-amqp" href="#amqp">3.1 amqp</a></li>
  28. <li><a id="toc-async" href="#async">3.2 async</a></li>
  29. <li><a id="toc-bluray" href="#bluray">3.3 bluray</a></li>
  30. <li><a id="toc-cache" href="#cache">3.4 cache</a></li>
  31. <li><a id="toc-concat" href="#concat">3.5 concat</a></li>
  32. <li><a id="toc-concatf" href="#concatf">3.6 concatf</a></li>
  33. <li><a id="toc-crypto" href="#crypto">3.7 crypto</a></li>
  34. <li><a id="toc-data" href="#data">3.8 data</a></li>
  35. <li><a id="toc-file" href="#file">3.9 file</a></li>
  36. <li><a id="toc-ftp" href="#ftp">3.10 ftp</a></li>
  37. <li><a id="toc-gopher" href="#gopher">3.11 gopher</a></li>
  38. <li><a id="toc-gophers" href="#gophers">3.12 gophers</a></li>
  39. <li><a id="toc-hls" href="#hls">3.13 hls</a></li>
  40. <li><a id="toc-http" href="#http">3.14 http</a>
  41. <ul class="toc-numbered-mark">
  42. <li><a id="toc-HTTP-Cookies" href="#HTTP-Cookies">3.14.1 HTTP Cookies</a></li>
  43. </ul></li>
  44. <li><a id="toc-Icecast" href="#Icecast">3.15 Icecast</a></li>
  45. <li><a id="toc-ipfs" href="#ipfs">3.16 ipfs</a></li>
  46. <li><a id="toc-mmst" href="#mmst">3.17 mmst</a></li>
  47. <li><a id="toc-mmsh" href="#mmsh">3.18 mmsh</a></li>
  48. <li><a id="toc-md5" href="#md5">3.19 md5</a></li>
  49. <li><a id="toc-pipe" href="#pipe">3.20 pipe</a></li>
  50. <li><a id="toc-prompeg" href="#prompeg">3.21 prompeg</a></li>
  51. <li><a id="toc-rist" href="#rist">3.22 rist</a></li>
  52. <li><a id="toc-rtmp" href="#rtmp">3.23 rtmp</a></li>
  53. <li><a id="toc-rtmpe" href="#rtmpe">3.24 rtmpe</a></li>
  54. <li><a id="toc-rtmps" href="#rtmps">3.25 rtmps</a></li>
  55. <li><a id="toc-rtmpt" href="#rtmpt">3.26 rtmpt</a></li>
  56. <li><a id="toc-rtmpte" href="#rtmpte">3.27 rtmpte</a></li>
  57. <li><a id="toc-rtmpts" href="#rtmpts">3.28 rtmpts</a></li>
  58. <li><a id="toc-libsmbclient" href="#libsmbclient">3.29 libsmbclient</a></li>
  59. <li><a id="toc-libssh" href="#libssh">3.30 libssh</a></li>
  60. <li><a id="toc-librtmp-rtmp_002c-rtmpe_002c-rtmps_002c-rtmpt_002c-rtmpte" href="#librtmp-rtmp_002c-rtmpe_002c-rtmps_002c-rtmpt_002c-rtmpte">3.31 librtmp rtmp, rtmpe, rtmps, rtmpt, rtmpte</a></li>
  61. <li><a id="toc-rtp" href="#rtp">3.32 rtp</a></li>
  62. <li><a id="toc-rtsp" href="#rtsp">3.33 rtsp</a>
  63. <ul class="toc-numbered-mark">
  64. <li><a id="toc-Examples" href="#Examples">3.33.1 Examples</a></li>
  65. </ul></li>
  66. <li><a id="toc-sap" href="#sap">3.34 sap</a>
  67. <ul class="toc-numbered-mark">
  68. <li><a id="toc-Muxer" href="#Muxer">3.34.1 Muxer</a></li>
  69. <li><a id="toc-Demuxer" href="#Demuxer">3.34.2 Demuxer</a></li>
  70. </ul></li>
  71. <li><a id="toc-sctp" href="#sctp">3.35 sctp</a></li>
  72. <li><a id="toc-srt" href="#srt">3.36 srt</a></li>
  73. <li><a id="toc-srtp" href="#srtp">3.37 srtp</a></li>
  74. <li><a id="toc-subfile" href="#subfile">3.38 subfile</a></li>
  75. <li><a id="toc-tee" href="#tee">3.39 tee</a></li>
  76. <li><a id="toc-tcp" href="#tcp">3.40 tcp</a></li>
  77. <li><a id="toc-tls" href="#tls">3.41 tls</a></li>
  78. <li><a id="toc-udp" href="#udp">3.42 udp</a>
  79. <ul class="toc-numbered-mark">
  80. <li><a id="toc-Examples-1" href="#Examples-1">3.42.1 Examples</a></li>
  81. </ul></li>
  82. <li><a id="toc-unix" href="#unix">3.43 unix</a></li>
  83. <li><a id="toc-zmq" href="#zmq">3.44 zmq</a></li>
  84. </ul></li>
  85. <li><a id="toc-See-Also" href="#See-Also">4 See Also</a></li>
  86. <li><a id="toc-Authors" href="#Authors">5 Authors</a></li>
  87. </ul>
  88. </div>
  89. </div>
  90. <ul class="mini-toc">
  91. <li><a href="#Description" accesskey="1">Description</a></li>
  92. <li><a href="#Protocol-Options" accesskey="2">Protocol Options</a></li>
  93. <li><a href="#Protocols" accesskey="3">Protocols</a></li>
  94. <li><a href="#See-Also" accesskey="4">See Also</a></li>
  95. <li><a href="#Authors" accesskey="5">Authors</a></li>
  96. </ul>
  97. <div class="chapter-level-extent" id="Description">
  98. <h2 class="chapter"><span>1 Description<a class="copiable-link" href="#Description"> &para;</a></span></h2>
  99. <p>This document describes the input and output protocols provided by the
  100. libavformat library.
  101. </p>
  102. </div>
  103. <div class="chapter-level-extent" id="Protocol-Options">
  104. <h2 class="chapter"><span>2 Protocol Options<a class="copiable-link" href="#Protocol-Options"> &para;</a></span></h2>
  105. <p>The libavformat library provides some generic global options, which
  106. can be set on all the protocols. In addition each protocol may support
  107. so-called private options, which are specific for that component.
  108. </p>
  109. <p>Options may be set by specifying -<var class="var">option</var> <var class="var">value</var> in the
  110. FFmpeg tools, or by setting the value explicitly in the
  111. <code class="code">AVFormatContext</code> options or using the <samp class="file">libavutil/opt.h</samp> API
  112. for programmatic use.
  113. </p>
  114. <p>The list of supported options follows:
  115. </p>
  116. <dl class="table">
  117. <dt><samp class="option">protocol_whitelist <var class="var">list</var> (<em class="emph">input</em>)</samp></dt>
  118. <dd><p>Set a &quot;,&quot;-separated list of allowed protocols. &quot;ALL&quot; matches all protocols. Protocols
  119. prefixed by &quot;-&quot; are disabled.
  120. All protocols are allowed by default but protocols used by an another
  121. protocol (nested protocols) are restricted to a per protocol subset.
  122. </p></dd>
  123. </dl>
  124. </div>
  125. <div class="chapter-level-extent" id="Protocols">
  126. <h2 class="chapter"><span>3 Protocols<a class="copiable-link" href="#Protocols"> &para;</a></span></h2>
  127. <p>Protocols are configured elements in FFmpeg that enable access to
  128. resources that require specific protocols.
  129. </p>
  130. <p>When you configure your FFmpeg build, all the supported protocols are
  131. enabled by default. You can list all available ones using the
  132. configure option &quot;&ndash;list-protocols&quot;.
  133. </p>
  134. <p>You can disable all the protocols using the configure option
  135. &quot;&ndash;disable-protocols&quot;, and selectively enable a protocol using the
  136. option &quot;&ndash;enable-protocol=<var class="var">PROTOCOL</var>&quot;, or you can disable a
  137. particular protocol using the option
  138. &quot;&ndash;disable-protocol=<var class="var">PROTOCOL</var>&quot;.
  139. </p>
  140. <p>The option &quot;-protocols&quot; of the ff* tools will display the list of
  141. supported protocols.
  142. </p>
  143. <p>All protocols accept the following options:
  144. </p>
  145. <dl class="table">
  146. <dt><samp class="option">rw_timeout</samp></dt>
  147. <dd><p>Maximum time to wait for (network) read/write operations to complete,
  148. in microseconds.
  149. </p></dd>
  150. </dl>
  151. <p>A description of the currently available protocols follows.
  152. </p>
  153. <ul class="mini-toc">
  154. <li><a href="#amqp" accesskey="1">amqp</a></li>
  155. <li><a href="#async" accesskey="2">async</a></li>
  156. <li><a href="#bluray" accesskey="3">bluray</a></li>
  157. <li><a href="#cache" accesskey="4">cache</a></li>
  158. <li><a href="#concat" accesskey="5">concat</a></li>
  159. <li><a href="#concatf" accesskey="6">concatf</a></li>
  160. <li><a href="#crypto" accesskey="7">crypto</a></li>
  161. <li><a href="#data" accesskey="8">data</a></li>
  162. <li><a href="#file" accesskey="9">file</a></li>
  163. <li><a href="#ftp">ftp</a></li>
  164. <li><a href="#gopher">gopher</a></li>
  165. <li><a href="#gophers">gophers</a></li>
  166. <li><a href="#hls">hls</a></li>
  167. <li><a href="#http">http</a></li>
  168. <li><a href="#Icecast">Icecast</a></li>
  169. <li><a href="#ipfs">ipfs</a></li>
  170. <li><a href="#mmst">mmst</a></li>
  171. <li><a href="#mmsh">mmsh</a></li>
  172. <li><a href="#md5">md5</a></li>
  173. <li><a href="#pipe">pipe</a></li>
  174. <li><a href="#prompeg">prompeg</a></li>
  175. <li><a href="#rist">rist</a></li>
  176. <li><a href="#rtmp">rtmp</a></li>
  177. <li><a href="#rtmpe">rtmpe</a></li>
  178. <li><a href="#rtmps">rtmps</a></li>
  179. <li><a href="#rtmpt">rtmpt</a></li>
  180. <li><a href="#rtmpte">rtmpte</a></li>
  181. <li><a href="#rtmpts">rtmpts</a></li>
  182. <li><a href="#libsmbclient">libsmbclient</a></li>
  183. <li><a href="#libssh">libssh</a></li>
  184. <li><a href="#librtmp-rtmp_002c-rtmpe_002c-rtmps_002c-rtmpt_002c-rtmpte">librtmp rtmp, rtmpe, rtmps, rtmpt, rtmpte</a></li>
  185. <li><a href="#rtp">rtp</a></li>
  186. <li><a href="#rtsp">rtsp</a></li>
  187. <li><a href="#sap">sap</a></li>
  188. <li><a href="#sctp">sctp</a></li>
  189. <li><a href="#srt">srt</a></li>
  190. <li><a href="#srtp">srtp</a></li>
  191. <li><a href="#subfile">subfile</a></li>
  192. <li><a href="#tee">tee</a></li>
  193. <li><a href="#tcp">tcp</a></li>
  194. <li><a href="#tls">tls</a></li>
  195. <li><a href="#udp">udp</a></li>
  196. <li><a href="#unix">unix</a></li>
  197. <li><a href="#zmq">zmq</a></li>
  198. </ul>
  199. <div class="section-level-extent" id="amqp">
  200. <h3 class="section"><span>3.1 amqp<a class="copiable-link" href="#amqp"> &para;</a></span></h3>
  201. <p>Advanced Message Queueing Protocol (AMQP) version 0-9-1 is a broker based
  202. publish-subscribe communication protocol.
  203. </p>
  204. <p>FFmpeg must be compiled with &ndash;enable-librabbitmq to support AMQP. A separate
  205. AMQP broker must also be run. An example open-source AMQP broker is RabbitMQ.
  206. </p>
  207. <p>After starting the broker, an FFmpeg client may stream data to the broker using
  208. the command:
  209. </p>
  210. <div class="example">
  211. <pre class="example-preformatted">ffmpeg -re -i input -f mpegts amqp://[[user]:[password]@]hostname[:port][/vhost]
  212. </pre></div>
  213. <p>Where hostname and port (default is 5672) is the address of the broker. The
  214. client may also set a user/password for authentication. The default for both
  215. fields is &quot;guest&quot;. Name of virtual host on broker can be set with vhost. The
  216. default value is &quot;/&quot;.
  217. </p>
  218. <p>Muliple subscribers may stream from the broker using the command:
  219. </p><div class="example">
  220. <pre class="example-preformatted">ffplay amqp://[[user]:[password]@]hostname[:port][/vhost]
  221. </pre></div>
  222. <p>In RabbitMQ all data published to the broker flows through a specific exchange,
  223. and each subscribing client has an assigned queue/buffer. When a packet arrives
  224. at an exchange, it may be copied to a client&rsquo;s queue depending on the exchange
  225. and routing_key fields.
  226. </p>
  227. <p>The following options are supported:
  228. </p>
  229. <dl class="table">
  230. <dt><samp class="option">exchange</samp></dt>
  231. <dd><p>Sets the exchange to use on the broker. RabbitMQ has several predefined
  232. exchanges: &quot;amq.direct&quot; is the default exchange, where the publisher and
  233. subscriber must have a matching routing_key; &quot;amq.fanout&quot; is the same as a
  234. broadcast operation (i.e. the data is forwarded to all queues on the fanout
  235. exchange independent of the routing_key); and &quot;amq.topic&quot; is similar to
  236. &quot;amq.direct&quot;, but allows for more complex pattern matching (refer to the RabbitMQ
  237. documentation).
  238. </p>
  239. </dd>
  240. <dt><samp class="option">routing_key</samp></dt>
  241. <dd><p>Sets the routing key. The default value is &quot;amqp&quot;. The routing key is used on
  242. the &quot;amq.direct&quot; and &quot;amq.topic&quot; exchanges to decide whether packets are written
  243. to the queue of a subscriber.
  244. </p>
  245. </dd>
  246. <dt><samp class="option">pkt_size</samp></dt>
  247. <dd><p>Maximum size of each packet sent/received to the broker. Default is 131072.
  248. Minimum is 4096 and max is any large value (representable by an int). When
  249. receiving packets, this sets an internal buffer size in FFmpeg. It should be
  250. equal to or greater than the size of the published packets to the broker. Otherwise
  251. the received message may be truncated causing decoding errors.
  252. </p>
  253. </dd>
  254. <dt><samp class="option">connection_timeout</samp></dt>
  255. <dd><p>The timeout in seconds during the initial connection to the broker. The
  256. default value is rw_timeout, or 5 seconds if rw_timeout is not set.
  257. </p>
  258. </dd>
  259. <dt><samp class="option">delivery_mode <var class="var">mode</var></samp></dt>
  260. <dd><p>Sets the delivery mode of each message sent to broker.
  261. The following values are accepted:
  262. </p><dl class="table">
  263. <dt>&lsquo;<samp class="samp">persistent</samp>&rsquo;</dt>
  264. <dd><p>Delivery mode set to &quot;persistent&quot; (2). This is the default value.
  265. Messages may be written to the broker&rsquo;s disk depending on its setup.
  266. </p>
  267. </dd>
  268. <dt>&lsquo;<samp class="samp">non-persistent</samp>&rsquo;</dt>
  269. <dd><p>Delivery mode set to &quot;non-persistent&quot; (1).
  270. Messages will stay in broker&rsquo;s memory unless the broker is under memory
  271. pressure.
  272. </p>
  273. </dd>
  274. </dl>
  275. </dd>
  276. </dl>
  277. </div>
  278. <div class="section-level-extent" id="async">
  279. <h3 class="section"><span>3.2 async<a class="copiable-link" href="#async"> &para;</a></span></h3>
  280. <p>Asynchronous data filling wrapper for input stream.
  281. </p>
  282. <p>Fill data in a background thread, to decouple I/O operation from demux thread.
  283. </p>
  284. <div class="example">
  285. <pre class="example-preformatted">async:<var class="var">URL</var>
  286. async:http://host/resource
  287. async:cache:http://host/resource
  288. </pre></div>
  289. </div>
  290. <div class="section-level-extent" id="bluray">
  291. <h3 class="section"><span>3.3 bluray<a class="copiable-link" href="#bluray"> &para;</a></span></h3>
  292. <p>Read BluRay playlist.
  293. </p>
  294. <p>The accepted options are:
  295. </p><dl class="table">
  296. <dt><samp class="option">angle</samp></dt>
  297. <dd><p>BluRay angle
  298. </p>
  299. </dd>
  300. <dt><samp class="option">chapter</samp></dt>
  301. <dd><p>Start chapter (1...N)
  302. </p>
  303. </dd>
  304. <dt><samp class="option">playlist</samp></dt>
  305. <dd><p>Playlist to read (BDMV/PLAYLIST/?????.mpls)
  306. </p>
  307. </dd>
  308. </dl>
  309. <p>Examples:
  310. </p>
  311. <p>Read longest playlist from BluRay mounted to /mnt/bluray:
  312. </p><div class="example">
  313. <pre class="example-preformatted">bluray:/mnt/bluray
  314. </pre></div>
  315. <p>Read angle 2 of playlist 4 from BluRay mounted to /mnt/bluray, start from chapter 2:
  316. </p><div class="example">
  317. <pre class="example-preformatted">-playlist 4 -angle 2 -chapter 2 bluray:/mnt/bluray
  318. </pre></div>
  319. </div>
  320. <div class="section-level-extent" id="cache">
  321. <h3 class="section"><span>3.4 cache<a class="copiable-link" href="#cache"> &para;</a></span></h3>
  322. <p>Caching wrapper for input stream.
  323. </p>
  324. <p>Cache the input stream to temporary file. It brings seeking capability to live streams.
  325. </p>
  326. <p>The accepted options are:
  327. </p><dl class="table">
  328. <dt><samp class="option">read_ahead_limit</samp></dt>
  329. <dd><p>Amount in bytes that may be read ahead when seeking isn&rsquo;t supported. Range is -1 to INT_MAX.
  330. -1 for unlimited. Default is 65536.
  331. </p>
  332. </dd>
  333. </dl>
  334. <p>URL Syntax is
  335. </p><div class="example">
  336. <pre class="example-preformatted">cache:<var class="var">URL</var>
  337. </pre></div>
  338. </div>
  339. <div class="section-level-extent" id="concat">
  340. <h3 class="section"><span>3.5 concat<a class="copiable-link" href="#concat"> &para;</a></span></h3>
  341. <p>Physical concatenation protocol.
  342. </p>
  343. <p>Read and seek from many resources in sequence as if they were
  344. a unique resource.
  345. </p>
  346. <p>A URL accepted by this protocol has the syntax:
  347. </p><div class="example">
  348. <pre class="example-preformatted">concat:<var class="var">URL1</var>|<var class="var">URL2</var>|...|<var class="var">URLN</var>
  349. </pre></div>
  350. <p>where <var class="var">URL1</var>, <var class="var">URL2</var>, ..., <var class="var">URLN</var> are the urls of the
  351. resource to be concatenated, each one possibly specifying a distinct
  352. protocol.
  353. </p>
  354. <p>For example to read a sequence of files <samp class="file">split1.mpeg</samp>,
  355. <samp class="file">split2.mpeg</samp>, <samp class="file">split3.mpeg</samp> with <code class="command">ffplay</code> use the
  356. command:
  357. </p><div class="example">
  358. <pre class="example-preformatted">ffplay concat:split1.mpeg\|split2.mpeg\|split3.mpeg
  359. </pre></div>
  360. <p>Note that you may need to escape the character &quot;|&quot; which is special for
  361. many shells.
  362. </p>
  363. </div>
  364. <div class="section-level-extent" id="concatf">
  365. <h3 class="section"><span>3.6 concatf<a class="copiable-link" href="#concatf"> &para;</a></span></h3>
  366. <p>Physical concatenation protocol using a line break delimited list of
  367. resources.
  368. </p>
  369. <p>Read and seek from many resources in sequence as if they were
  370. a unique resource.
  371. </p>
  372. <p>A URL accepted by this protocol has the syntax:
  373. </p><div class="example">
  374. <pre class="example-preformatted">concatf:<var class="var">URL</var>
  375. </pre></div>
  376. <p>where <var class="var">URL</var> is the url containing a line break delimited list of
  377. resources to be concatenated, each one possibly specifying a distinct
  378. protocol. Special characters must be escaped with backslash or single
  379. quotes. See <a data-manual="ffmpeg-utils" href="ffmpeg-utils.html#quoting_005fand_005fescaping">the &quot;Quoting and escaping&quot;
  380. section in the ffmpeg-utils(1) manual</a>.
  381. </p>
  382. <p>For example to read a sequence of files <samp class="file">split1.mpeg</samp>,
  383. <samp class="file">split2.mpeg</samp>, <samp class="file">split3.mpeg</samp> listed in separate lines within
  384. a file <samp class="file">split.txt</samp> with <code class="command">ffplay</code> use the command:
  385. </p><div class="example">
  386. <pre class="example-preformatted">ffplay concatf:split.txt
  387. </pre></div>
  388. <p>Where <samp class="file">split.txt</samp> contains the lines:
  389. </p><div class="example">
  390. <pre class="example-preformatted">split1.mpeg
  391. split2.mpeg
  392. split3.mpeg
  393. </pre></div>
  394. </div>
  395. <div class="section-level-extent" id="crypto">
  396. <h3 class="section"><span>3.7 crypto<a class="copiable-link" href="#crypto"> &para;</a></span></h3>
  397. <p>AES-encrypted stream reading protocol.
  398. </p>
  399. <p>The accepted options are:
  400. </p><dl class="table">
  401. <dt><samp class="option">key</samp></dt>
  402. <dd><p>Set the AES decryption key binary block from given hexadecimal representation.
  403. </p>
  404. </dd>
  405. <dt><samp class="option">iv</samp></dt>
  406. <dd><p>Set the AES decryption initialization vector binary block from given hexadecimal representation.
  407. </p></dd>
  408. </dl>
  409. <p>Accepted URL formats:
  410. </p><div class="example">
  411. <pre class="example-preformatted">crypto:<var class="var">URL</var>
  412. crypto+<var class="var">URL</var>
  413. </pre></div>
  414. </div>
  415. <div class="section-level-extent" id="data">
  416. <h3 class="section"><span>3.8 data<a class="copiable-link" href="#data"> &para;</a></span></h3>
  417. <p>Data in-line in the URI. See <a class="url" href="http://en.wikipedia.org/wiki/Data_URI_scheme">http://en.wikipedia.org/wiki/Data_URI_scheme</a>.
  418. </p>
  419. <p>For example, to convert a GIF file given inline with <code class="command">ffmpeg</code>:
  420. </p><div class="example">
  421. <pre class="example-preformatted">ffmpeg -i &quot;data:image/gif;base64,R0lGODdhCAAIAMIEAAAAAAAA//8AAP//AP///////////////ywAAAAACAAIAAADF0gEDLojDgdGiJdJqUX02iB4E8Q9jUMkADs=&quot; smiley.png
  422. </pre></div>
  423. </div>
  424. <div class="section-level-extent" id="file">
  425. <h3 class="section"><span>3.9 file<a class="copiable-link" href="#file"> &para;</a></span></h3>
  426. <p>File access protocol.
  427. </p>
  428. <p>Read from or write to a file.
  429. </p>
  430. <p>A file URL can have the form:
  431. </p><div class="example">
  432. <pre class="example-preformatted">file:<var class="var">filename</var>
  433. </pre></div>
  434. <p>where <var class="var">filename</var> is the path of the file to read.
  435. </p>
  436. <p>An URL that does not have a protocol prefix will be assumed to be a
  437. file URL. Depending on the build, an URL that looks like a Windows
  438. path with the drive letter at the beginning will also be assumed to be
  439. a file URL (usually not the case in builds for unix-like systems).
  440. </p>
  441. <p>For example to read from a file <samp class="file">input.mpeg</samp> with <code class="command">ffmpeg</code>
  442. use the command:
  443. </p><div class="example">
  444. <pre class="example-preformatted">ffmpeg -i file:input.mpeg output.mpeg
  445. </pre></div>
  446. <p>This protocol accepts the following options:
  447. </p>
  448. <dl class="table">
  449. <dt><samp class="option">truncate</samp></dt>
  450. <dd><p>Truncate existing files on write, if set to 1. A value of 0 prevents
  451. truncating. Default value is 1.
  452. </p>
  453. </dd>
  454. <dt><samp class="option">blocksize</samp></dt>
  455. <dd><p>Set I/O operation maximum block size, in bytes. Default value is
  456. <code class="code">INT_MAX</code>, which results in not limiting the requested block size.
  457. Setting this value reasonably low improves user termination request reaction
  458. time, which is valuable for files on slow medium.
  459. </p>
  460. </dd>
  461. <dt><samp class="option">follow</samp></dt>
  462. <dd><p>If set to 1, the protocol will retry reading at the end of the file, allowing
  463. reading files that still are being written. In order for this to terminate,
  464. you either need to use the rw_timeout option, or use the interrupt callback
  465. (for API users).
  466. </p>
  467. </dd>
  468. <dt><samp class="option">seekable</samp></dt>
  469. <dd><p>Controls if seekability is advertised on the file. 0 means non-seekable, -1
  470. means auto (seekable for normal files, non-seekable for named pipes).
  471. </p>
  472. <p>Many demuxers handle seekable and non-seekable resources differently,
  473. overriding this might speed up opening certain files at the cost of losing some
  474. features (e.g. accurate seeking).
  475. </p></dd>
  476. </dl>
  477. </div>
  478. <div class="section-level-extent" id="ftp">
  479. <h3 class="section"><span>3.10 ftp<a class="copiable-link" href="#ftp"> &para;</a></span></h3>
  480. <p>FTP (File Transfer Protocol).
  481. </p>
  482. <p>Read from or write to remote resources using FTP protocol.
  483. </p>
  484. <p>Following syntax is required.
  485. </p><div class="example">
  486. <pre class="example-preformatted">ftp://[user[:password]@]server[:port]/path/to/remote/resource.mpeg
  487. </pre></div>
  488. <p>This protocol accepts the following options.
  489. </p>
  490. <dl class="table">
  491. <dt><samp class="option">timeout</samp></dt>
  492. <dd><p>Set timeout in microseconds of socket I/O operations used by the underlying low level
  493. operation. By default it is set to -1, which means that the timeout is
  494. not specified.
  495. </p>
  496. </dd>
  497. <dt><samp class="option">ftp-user</samp></dt>
  498. <dd><p>Set a user to be used for authenticating to the FTP server. This is overridden by the
  499. user in the FTP URL.
  500. </p>
  501. </dd>
  502. <dt><samp class="option">ftp-password</samp></dt>
  503. <dd><p>Set a password to be used for authenticating to the FTP server. This is overridden by
  504. the password in the FTP URL, or by <samp class="option">ftp-anonymous-password</samp> if no user is set.
  505. </p>
  506. </dd>
  507. <dt><samp class="option">ftp-anonymous-password</samp></dt>
  508. <dd><p>Password used when login as anonymous user. Typically an e-mail address
  509. should be used.
  510. </p>
  511. </dd>
  512. <dt><samp class="option">ftp-write-seekable</samp></dt>
  513. <dd><p>Control seekability of connection during encoding. If set to 1 the
  514. resource is supposed to be seekable, if set to 0 it is assumed not
  515. to be seekable. Default value is 0.
  516. </p></dd>
  517. </dl>
  518. <p>NOTE: Protocol can be used as output, but it is recommended to not do
  519. it, unless special care is taken (tests, customized server configuration
  520. etc.). Different FTP servers behave in different way during seek
  521. operation. ff* tools may produce incomplete content due to server limitations.
  522. </p>
  523. </div>
  524. <div class="section-level-extent" id="gopher">
  525. <h3 class="section"><span>3.11 gopher<a class="copiable-link" href="#gopher"> &para;</a></span></h3>
  526. <p>Gopher protocol.
  527. </p>
  528. </div>
  529. <div class="section-level-extent" id="gophers">
  530. <h3 class="section"><span>3.12 gophers<a class="copiable-link" href="#gophers"> &para;</a></span></h3>
  531. <p>Gophers protocol.
  532. </p>
  533. <p>The Gopher protocol with TLS encapsulation.
  534. </p>
  535. </div>
  536. <div class="section-level-extent" id="hls">
  537. <h3 class="section"><span>3.13 hls<a class="copiable-link" href="#hls"> &para;</a></span></h3>
  538. <p>Read Apple HTTP Live Streaming compliant segmented stream as
  539. a uniform one. The M3U8 playlists describing the segments can be
  540. remote HTTP resources or local files, accessed using the standard
  541. file protocol.
  542. The nested protocol is declared by specifying
  543. &quot;+<var class="var">proto</var>&quot; after the hls URI scheme name, where <var class="var">proto</var>
  544. is either &quot;file&quot; or &quot;http&quot;.
  545. </p>
  546. <div class="example">
  547. <pre class="example-preformatted">hls+http://host/path/to/remote/resource.m3u8
  548. hls+file://path/to/local/resource.m3u8
  549. </pre></div>
  550. <p>Using this protocol is discouraged - the hls demuxer should work
  551. just as well (if not, please report the issues) and is more complete.
  552. To use the hls demuxer instead, simply use the direct URLs to the
  553. m3u8 files.
  554. </p>
  555. </div>
  556. <div class="section-level-extent" id="http">
  557. <h3 class="section"><span>3.14 http<a class="copiable-link" href="#http"> &para;</a></span></h3>
  558. <p>HTTP (Hyper Text Transfer Protocol).
  559. </p>
  560. <p>This protocol accepts the following options:
  561. </p>
  562. <dl class="table">
  563. <dt><samp class="option">seekable</samp></dt>
  564. <dd><p>Control seekability of connection. If set to 1 the resource is
  565. supposed to be seekable, if set to 0 it is assumed not to be seekable,
  566. if set to -1 it will try to autodetect if it is seekable. Default
  567. value is -1.
  568. </p>
  569. </dd>
  570. <dt><samp class="option">chunked_post</samp></dt>
  571. <dd><p>If set to 1 use chunked Transfer-Encoding for posts, default is 1.
  572. </p>
  573. </dd>
  574. <dt><samp class="option">content_type</samp></dt>
  575. <dd><p>Set a specific content type for the POST messages or for listen mode.
  576. </p>
  577. </dd>
  578. <dt><samp class="option">http_proxy</samp></dt>
  579. <dd><p>set HTTP proxy to tunnel through e.g. http://example.com:1234
  580. </p>
  581. </dd>
  582. <dt><samp class="option">headers</samp></dt>
  583. <dd><p>Set custom HTTP headers, can override built in default headers. The
  584. value must be a string encoding the headers.
  585. </p>
  586. </dd>
  587. <dt><samp class="option">multiple_requests</samp></dt>
  588. <dd><p>Use persistent connections if set to 1, default is 0.
  589. </p>
  590. </dd>
  591. <dt><samp class="option">post_data</samp></dt>
  592. <dd><p>Set custom HTTP post data.
  593. </p>
  594. </dd>
  595. <dt><samp class="option">referer</samp></dt>
  596. <dd><p>Set the Referer header. Include &rsquo;Referer: URL&rsquo; header in HTTP request.
  597. </p>
  598. </dd>
  599. <dt><samp class="option">user_agent</samp></dt>
  600. <dd><p>Override the User-Agent header. If not specified the protocol will use a
  601. string describing the libavformat build. (&quot;Lavf/&lt;version&gt;&quot;)
  602. </p>
  603. </dd>
  604. <dt><samp class="option">reconnect_at_eof</samp></dt>
  605. <dd><p>If set then eof is treated like an error and causes reconnection, this is useful
  606. for live / endless streams.
  607. </p>
  608. </dd>
  609. <dt><samp class="option">reconnect_streamed</samp></dt>
  610. <dd><p>If set then even streamed/non seekable streams will be reconnected on errors.
  611. </p>
  612. </dd>
  613. <dt><samp class="option">reconnect_on_network_error</samp></dt>
  614. <dd><p>Reconnect automatically in case of TCP/TLS errors during connect.
  615. </p>
  616. </dd>
  617. <dt><samp class="option">reconnect_on_http_error</samp></dt>
  618. <dd><p>A comma separated list of HTTP status codes to reconnect on. The list can
  619. include specific status codes (e.g. &rsquo;503&rsquo;) or the strings &rsquo;4xx&rsquo; / &rsquo;5xx&rsquo;.
  620. </p>
  621. </dd>
  622. <dt><samp class="option">reconnect_delay_max</samp></dt>
  623. <dd><p>Sets the maximum delay in seconds after which to give up reconnecting
  624. </p>
  625. </dd>
  626. <dt><samp class="option">mime_type</samp></dt>
  627. <dd><p>Export the MIME type.
  628. </p>
  629. </dd>
  630. <dt><samp class="option">http_version</samp></dt>
  631. <dd><p>Exports the HTTP response version number. Usually &quot;1.0&quot; or &quot;1.1&quot;.
  632. </p>
  633. </dd>
  634. <dt><samp class="option">icy</samp></dt>
  635. <dd><p>If set to 1 request ICY (SHOUTcast) metadata from the server. If the server
  636. supports this, the metadata has to be retrieved by the application by reading
  637. the <samp class="option">icy_metadata_headers</samp> and <samp class="option">icy_metadata_packet</samp> options.
  638. The default is 1.
  639. </p>
  640. </dd>
  641. <dt><samp class="option">icy_metadata_headers</samp></dt>
  642. <dd><p>If the server supports ICY metadata, this contains the ICY-specific HTTP reply
  643. headers, separated by newline characters.
  644. </p>
  645. </dd>
  646. <dt><samp class="option">icy_metadata_packet</samp></dt>
  647. <dd><p>If the server supports ICY metadata, and <samp class="option">icy</samp> was set to 1, this
  648. contains the last non-empty metadata packet sent by the server. It should be
  649. polled in regular intervals by applications interested in mid-stream metadata
  650. updates.
  651. </p>
  652. </dd>
  653. <dt><samp class="option">cookies</samp></dt>
  654. <dd><p>Set the cookies to be sent in future requests. The format of each cookie is the
  655. same as the value of a Set-Cookie HTTP response field. Multiple cookies can be
  656. delimited by a newline character.
  657. </p>
  658. </dd>
  659. <dt><samp class="option">offset</samp></dt>
  660. <dd><p>Set initial byte offset.
  661. </p>
  662. </dd>
  663. <dt><samp class="option">end_offset</samp></dt>
  664. <dd><p>Try to limit the request to bytes preceding this offset.
  665. </p>
  666. </dd>
  667. <dt><samp class="option">method</samp></dt>
  668. <dd><p>When used as a client option it sets the HTTP method for the request.
  669. </p>
  670. <p>When used as a server option it sets the HTTP method that is going to be
  671. expected from the client(s).
  672. If the expected and the received HTTP method do not match the client will
  673. be given a Bad Request response.
  674. When unset the HTTP method is not checked for now. This will be replaced by
  675. autodetection in the future.
  676. </p>
  677. </dd>
  678. <dt><samp class="option">listen</samp></dt>
  679. <dd><p>If set to 1 enables experimental HTTP server. This can be used to send data when
  680. used as an output option, or read data from a client with HTTP POST when used as
  681. an input option.
  682. If set to 2 enables experimental multi-client HTTP server. This is not yet implemented
  683. in ffmpeg.c and thus must not be used as a command line option.
  684. </p><div class="example">
  685. <pre class="example-preformatted"># Server side (sending):
  686. ffmpeg -i somefile.ogg -c copy -listen 1 -f ogg http://<var class="var">server</var>:<var class="var">port</var>
  687. # Client side (receiving):
  688. ffmpeg -i http://<var class="var">server</var>:<var class="var">port</var> -c copy somefile.ogg
  689. # Client can also be done with wget:
  690. wget http://<var class="var">server</var>:<var class="var">port</var> -O somefile.ogg
  691. # Server side (receiving):
  692. ffmpeg -listen 1 -i http://<var class="var">server</var>:<var class="var">port</var> -c copy somefile.ogg
  693. # Client side (sending):
  694. ffmpeg -i somefile.ogg -chunked_post 0 -c copy -f ogg http://<var class="var">server</var>:<var class="var">port</var>
  695. # Client can also be done with wget:
  696. wget --post-file=somefile.ogg http://<var class="var">server</var>:<var class="var">port</var>
  697. </pre></div>
  698. </dd>
  699. <dt><samp class="option">send_expect_100</samp></dt>
  700. <dd><p>Send an Expect: 100-continue header for POST. If set to 1 it will send, if set
  701. to 0 it won&rsquo;t, if set to -1 it will try to send if it is applicable. Default
  702. value is -1.
  703. </p>
  704. </dd>
  705. <dt><samp class="option">auth_type</samp></dt>
  706. <dd>
  707. <p>Set HTTP authentication type. No option for Digest, since this method requires
  708. getting nonce parameters from the server first and can&rsquo;t be used straight away like
  709. Basic.
  710. </p>
  711. <dl class="table">
  712. <dt><samp class="option">none</samp></dt>
  713. <dd><p>Choose the HTTP authentication type automatically. This is the default.
  714. </p></dd>
  715. <dt><samp class="option">basic</samp></dt>
  716. <dd>
  717. <p>Choose the HTTP basic authentication.
  718. </p>
  719. <p>Basic authentication sends a Base64-encoded string that contains a user name and password
  720. for the client. Base64 is not a form of encryption and should be considered the same as
  721. sending the user name and password in clear text (Base64 is a reversible encoding).
  722. If a resource needs to be protected, strongly consider using an authentication scheme
  723. other than basic authentication. HTTPS/TLS should be used with basic authentication.
  724. Without these additional security enhancements, basic authentication should not be used
  725. to protect sensitive or valuable information.
  726. </p></dd>
  727. </dl>
  728. </dd>
  729. </dl>
  730. <ul class="mini-toc">
  731. <li><a href="#HTTP-Cookies" accesskey="1">HTTP Cookies</a></li>
  732. </ul>
  733. <div class="subsection-level-extent" id="HTTP-Cookies">
  734. <h4 class="subsection"><span>3.14.1 HTTP Cookies<a class="copiable-link" href="#HTTP-Cookies"> &para;</a></span></h4>
  735. <p>Some HTTP requests will be denied unless cookie values are passed in with the
  736. request. The <samp class="option">cookies</samp> option allows these cookies to be specified. At
  737. the very least, each cookie must specify a value along with a path and domain.
  738. HTTP requests that match both the domain and path will automatically include the
  739. cookie value in the HTTP Cookie header field. Multiple cookies can be delimited
  740. by a newline.
  741. </p>
  742. <p>The required syntax to play a stream specifying a cookie is:
  743. </p><div class="example">
  744. <pre class="example-preformatted">ffplay -cookies &quot;nlqptid=nltid=tsn; path=/; domain=somedomain.com;&quot; http://somedomain.com/somestream.m3u8
  745. </pre></div>
  746. </div>
  747. </div>
  748. <div class="section-level-extent" id="Icecast">
  749. <h3 class="section"><span>3.15 Icecast<a class="copiable-link" href="#Icecast"> &para;</a></span></h3>
  750. <p>Icecast protocol (stream to Icecast servers)
  751. </p>
  752. <p>This protocol accepts the following options:
  753. </p>
  754. <dl class="table">
  755. <dt><samp class="option">ice_genre</samp></dt>
  756. <dd><p>Set the stream genre.
  757. </p>
  758. </dd>
  759. <dt><samp class="option">ice_name</samp></dt>
  760. <dd><p>Set the stream name.
  761. </p>
  762. </dd>
  763. <dt><samp class="option">ice_description</samp></dt>
  764. <dd><p>Set the stream description.
  765. </p>
  766. </dd>
  767. <dt><samp class="option">ice_url</samp></dt>
  768. <dd><p>Set the stream website URL.
  769. </p>
  770. </dd>
  771. <dt><samp class="option">ice_public</samp></dt>
  772. <dd><p>Set if the stream should be public.
  773. The default is 0 (not public).
  774. </p>
  775. </dd>
  776. <dt><samp class="option">user_agent</samp></dt>
  777. <dd><p>Override the User-Agent header. If not specified a string of the form
  778. &quot;Lavf/&lt;version&gt;&quot; will be used.
  779. </p>
  780. </dd>
  781. <dt><samp class="option">password</samp></dt>
  782. <dd><p>Set the Icecast mountpoint password.
  783. </p>
  784. </dd>
  785. <dt><samp class="option">content_type</samp></dt>
  786. <dd><p>Set the stream content type. This must be set if it is different from
  787. audio/mpeg.
  788. </p>
  789. </dd>
  790. <dt><samp class="option">legacy_icecast</samp></dt>
  791. <dd><p>This enables support for Icecast versions &lt; 2.4.0, that do not support the
  792. HTTP PUT method but the SOURCE method.
  793. </p>
  794. </dd>
  795. <dt><samp class="option">tls</samp></dt>
  796. <dd><p>Establish a TLS (HTTPS) connection to Icecast.
  797. </p>
  798. </dd>
  799. </dl>
  800. <div class="example">
  801. <pre class="example-preformatted">icecast://[<var class="var">username</var>[:<var class="var">password</var>]@]<var class="var">server</var>:<var class="var">port</var>/<var class="var">mountpoint</var>
  802. </pre></div>
  803. </div>
  804. <div class="section-level-extent" id="ipfs">
  805. <h3 class="section"><span>3.16 ipfs<a class="copiable-link" href="#ipfs"> &para;</a></span></h3>
  806. <p>InterPlanetary File System (IPFS) protocol support. One can access files stored
  807. on the IPFS network through so-called gateways. These are http(s) endpoints.
  808. This protocol wraps the IPFS native protocols (ipfs:// and ipns://) to be sent
  809. to such a gateway. Users can (and should) host their own node which means this
  810. protocol will use one&rsquo;s local gateway to access files on the IPFS network.
  811. </p>
  812. <p>If a user doesn&rsquo;t have a node of their own then the public gateway <code class="code">https://dweb.link</code>
  813. is used by default.
  814. </p>
  815. <p>This protocol accepts the following options:
  816. </p>
  817. <dl class="table">
  818. <dt><samp class="option">gateway</samp></dt>
  819. <dd><p>Defines the gateway to use. When not set, the protocol will first try
  820. locating the local gateway by looking at <code class="code">$IPFS_GATEWAY</code>, <code class="code">$IPFS_PATH</code>
  821. and <code class="code">$HOME/.ipfs/</code>, in that order. If that fails <code class="code">https://dweb.link</code> will be used.
  822. </p>
  823. </dd>
  824. </dl>
  825. <p>One can use this protocol in 2 ways. Using IPFS:
  826. </p><div class="example">
  827. <pre class="example-preformatted">ffplay ipfs://QmbGtJg23skhvFmu9mJiePVByhfzu5rwo74MEkVDYAmF5T
  828. </pre></div>
  829. <p>Or the IPNS protocol (IPNS is mutable IPFS):
  830. </p><div class="example">
  831. <pre class="example-preformatted">ffplay ipns://QmbGtJg23skhvFmu9mJiePVByhfzu5rwo74MEkVDYAmF5T
  832. </pre></div>
  833. </div>
  834. <div class="section-level-extent" id="mmst">
  835. <h3 class="section"><span>3.17 mmst<a class="copiable-link" href="#mmst"> &para;</a></span></h3>
  836. <p>MMS (Microsoft Media Server) protocol over TCP.
  837. </p>
  838. </div>
  839. <div class="section-level-extent" id="mmsh">
  840. <h3 class="section"><span>3.18 mmsh<a class="copiable-link" href="#mmsh"> &para;</a></span></h3>
  841. <p>MMS (Microsoft Media Server) protocol over HTTP.
  842. </p>
  843. <p>The required syntax is:
  844. </p><div class="example">
  845. <pre class="example-preformatted">mmsh://<var class="var">server</var>[:<var class="var">port</var>][/<var class="var">app</var>][/<var class="var">playpath</var>]
  846. </pre></div>
  847. </div>
  848. <div class="section-level-extent" id="md5">
  849. <h3 class="section"><span>3.19 md5<a class="copiable-link" href="#md5"> &para;</a></span></h3>
  850. <p>MD5 output protocol.
  851. </p>
  852. <p>Computes the MD5 hash of the data to be written, and on close writes
  853. this to the designated output or stdout if none is specified. It can
  854. be used to test muxers without writing an actual file.
  855. </p>
  856. <p>Some examples follow.
  857. </p><div class="example">
  858. <pre class="example-preformatted"># Write the MD5 hash of the encoded AVI file to the file output.avi.md5.
  859. ffmpeg -i input.flv -f avi -y md5:output.avi.md5
  860. # Write the MD5 hash of the encoded AVI file to stdout.
  861. ffmpeg -i input.flv -f avi -y md5:
  862. </pre></div>
  863. <p>Note that some formats (typically MOV) require the output protocol to
  864. be seekable, so they will fail with the MD5 output protocol.
  865. </p>
  866. </div>
  867. <div class="section-level-extent" id="pipe">
  868. <h3 class="section"><span>3.20 pipe<a class="copiable-link" href="#pipe"> &para;</a></span></h3>
  869. <p>UNIX pipe access protocol.
  870. </p>
  871. <p>Read and write from UNIX pipes.
  872. </p>
  873. <p>The accepted syntax is:
  874. </p><div class="example">
  875. <pre class="example-preformatted">pipe:[<var class="var">number</var>]
  876. </pre></div>
  877. <p><var class="var">number</var> is the number corresponding to the file descriptor of the
  878. pipe (e.g. 0 for stdin, 1 for stdout, 2 for stderr). If <var class="var">number</var>
  879. is not specified, by default the stdout file descriptor will be used
  880. for writing, stdin for reading.
  881. </p>
  882. <p>For example to read from stdin with <code class="command">ffmpeg</code>:
  883. </p><div class="example">
  884. <pre class="example-preformatted">cat test.wav | ffmpeg -i pipe:0
  885. # ...this is the same as...
  886. cat test.wav | ffmpeg -i pipe:
  887. </pre></div>
  888. <p>For writing to stdout with <code class="command">ffmpeg</code>:
  889. </p><div class="example">
  890. <pre class="example-preformatted">ffmpeg -i test.wav -f avi pipe:1 | cat &gt; test.avi
  891. # ...this is the same as...
  892. ffmpeg -i test.wav -f avi pipe: | cat &gt; test.avi
  893. </pre></div>
  894. <p>This protocol accepts the following options:
  895. </p>
  896. <dl class="table">
  897. <dt><samp class="option">blocksize</samp></dt>
  898. <dd><p>Set I/O operation maximum block size, in bytes. Default value is
  899. <code class="code">INT_MAX</code>, which results in not limiting the requested block size.
  900. Setting this value reasonably low improves user termination request reaction
  901. time, which is valuable if data transmission is slow.
  902. </p></dd>
  903. </dl>
  904. <p>Note that some formats (typically MOV), require the output protocol to
  905. be seekable, so they will fail with the pipe output protocol.
  906. </p>
  907. </div>
  908. <div class="section-level-extent" id="prompeg">
  909. <h3 class="section"><span>3.21 prompeg<a class="copiable-link" href="#prompeg"> &para;</a></span></h3>
  910. <p>Pro-MPEG Code of Practice #3 Release 2 FEC protocol.
  911. </p>
  912. <p>The Pro-MPEG CoP#3 FEC is a 2D parity-check forward error correction mechanism
  913. for MPEG-2 Transport Streams sent over RTP.
  914. </p>
  915. <p>This protocol must be used in conjunction with the <code class="code">rtp_mpegts</code> muxer and
  916. the <code class="code">rtp</code> protocol.
  917. </p>
  918. <p>The required syntax is:
  919. </p><div class="example">
  920. <pre class="example-preformatted">-f rtp_mpegts -fec prompeg=<var class="var">option</var>=<var class="var">val</var>... rtp://<var class="var">hostname</var>:<var class="var">port</var>
  921. </pre></div>
  922. <p>The destination UDP ports are <code class="code">port + 2</code> for the column FEC stream
  923. and <code class="code">port + 4</code> for the row FEC stream.
  924. </p>
  925. <p>This protocol accepts the following options:
  926. </p><dl class="table">
  927. <dt><samp class="option">l=<var class="var">n</var></samp></dt>
  928. <dd><p>The number of columns (4-20, LxD &lt;= 100)
  929. </p>
  930. </dd>
  931. <dt><samp class="option">d=<var class="var">n</var></samp></dt>
  932. <dd><p>The number of rows (4-20, LxD &lt;= 100)
  933. </p>
  934. </dd>
  935. </dl>
  936. <p>Example usage:
  937. </p>
  938. <div class="example">
  939. <pre class="example-preformatted">-f rtp_mpegts -fec prompeg=l=8:d=4 rtp://<var class="var">hostname</var>:<var class="var">port</var>
  940. </pre></div>
  941. </div>
  942. <div class="section-level-extent" id="rist">
  943. <h3 class="section"><span>3.22 rist<a class="copiable-link" href="#rist"> &para;</a></span></h3>
  944. <p>Reliable Internet Streaming Transport protocol
  945. </p>
  946. <p>The accepted options are:
  947. </p><dl class="table">
  948. <dt><samp class="option">rist_profile</samp></dt>
  949. <dd><p>Supported values:
  950. </p><dl class="table">
  951. <dt>&lsquo;<samp class="samp">simple</samp>&rsquo;</dt>
  952. <dt>&lsquo;<samp class="samp">main</samp>&rsquo;</dt>
  953. <dd><p>This one is default.
  954. </p></dd>
  955. <dt>&lsquo;<samp class="samp">advanced</samp>&rsquo;</dt>
  956. </dl>
  957. </dd>
  958. <dt><samp class="option">buffer_size</samp></dt>
  959. <dd><p>Set internal RIST buffer size in milliseconds for retransmission of data.
  960. Default value is 0 which means the librist default (1 sec). Maximum value is 30
  961. seconds.
  962. </p>
  963. </dd>
  964. <dt><samp class="option">fifo_size</samp></dt>
  965. <dd><p>Size of the librist receiver output fifo in number of packets. This must be a
  966. power of 2.
  967. Defaults to 8192 (vs the librist default of 1024).
  968. </p>
  969. </dd>
  970. <dt><samp class="option">overrun_nonfatal=<var class="var">1|0</var></samp></dt>
  971. <dd><p>Survive in case of librist fifo buffer overrun. Default value is 0.
  972. </p>
  973. </dd>
  974. <dt><samp class="option">pkt_size</samp></dt>
  975. <dd><p>Set maximum packet size for sending data. 1316 by default.
  976. </p>
  977. </dd>
  978. <dt><samp class="option">log_level</samp></dt>
  979. <dd><p>Set loglevel for RIST logging messages. You only need to set this if you
  980. explicitly want to enable debug level messages or packet loss simulation,
  981. otherwise the regular loglevel is respected.
  982. </p>
  983. </dd>
  984. <dt><samp class="option">secret</samp></dt>
  985. <dd><p>Set override of encryption secret, by default is unset.
  986. </p>
  987. </dd>
  988. <dt><samp class="option">encryption</samp></dt>
  989. <dd><p>Set encryption type, by default is disabled.
  990. Acceptable values are 128 and 256.
  991. </p></dd>
  992. </dl>
  993. </div>
  994. <div class="section-level-extent" id="rtmp">
  995. <h3 class="section"><span>3.23 rtmp<a class="copiable-link" href="#rtmp"> &para;</a></span></h3>
  996. <p>Real-Time Messaging Protocol.
  997. </p>
  998. <p>The Real-Time Messaging Protocol (RTMP) is used for streaming multimedia
  999. content across a TCP/IP network.
  1000. </p>
  1001. <p>The required syntax is:
  1002. </p><div class="example">
  1003. <pre class="example-preformatted">rtmp://[<var class="var">username</var>:<var class="var">password</var>@]<var class="var">server</var>[:<var class="var">port</var>][/<var class="var">app</var>][/<var class="var">instance</var>][/<var class="var">playpath</var>]
  1004. </pre></div>
  1005. <p>The accepted parameters are:
  1006. </p><dl class="table">
  1007. <dt><samp class="option">username</samp></dt>
  1008. <dd><p>An optional username (mostly for publishing).
  1009. </p>
  1010. </dd>
  1011. <dt><samp class="option">password</samp></dt>
  1012. <dd><p>An optional password (mostly for publishing).
  1013. </p>
  1014. </dd>
  1015. <dt><samp class="option">server</samp></dt>
  1016. <dd><p>The address of the RTMP server.
  1017. </p>
  1018. </dd>
  1019. <dt><samp class="option">port</samp></dt>
  1020. <dd><p>The number of the TCP port to use (by default is 1935).
  1021. </p>
  1022. </dd>
  1023. <dt><samp class="option">app</samp></dt>
  1024. <dd><p>It is the name of the application to access. It usually corresponds to
  1025. the path where the application is installed on the RTMP server
  1026. (e.g. <samp class="file">/ondemand/</samp>, <samp class="file">/flash/live/</samp>, etc.). You can override
  1027. the value parsed from the URI through the <code class="code">rtmp_app</code> option, too.
  1028. </p>
  1029. </dd>
  1030. <dt><samp class="option">playpath</samp></dt>
  1031. <dd><p>It is the path or name of the resource to play with reference to the
  1032. application specified in <var class="var">app</var>, may be prefixed by &quot;mp4:&quot;. You
  1033. can override the value parsed from the URI through the <code class="code">rtmp_playpath</code>
  1034. option, too.
  1035. </p>
  1036. </dd>
  1037. <dt><samp class="option">listen</samp></dt>
  1038. <dd><p>Act as a server, listening for an incoming connection.
  1039. </p>
  1040. </dd>
  1041. <dt><samp class="option">timeout</samp></dt>
  1042. <dd><p>Maximum time to wait for the incoming connection. Implies listen.
  1043. </p></dd>
  1044. </dl>
  1045. <p>Additionally, the following parameters can be set via command line options
  1046. (or in code via <code class="code">AVOption</code>s):
  1047. </p><dl class="table">
  1048. <dt><samp class="option">rtmp_app</samp></dt>
  1049. <dd><p>Name of application to connect on the RTMP server. This option
  1050. overrides the parameter specified in the URI.
  1051. </p>
  1052. </dd>
  1053. <dt><samp class="option">rtmp_buffer</samp></dt>
  1054. <dd><p>Set the client buffer time in milliseconds. The default is 3000.
  1055. </p>
  1056. </dd>
  1057. <dt><samp class="option">rtmp_conn</samp></dt>
  1058. <dd><p>Extra arbitrary AMF connection parameters, parsed from a string,
  1059. e.g. like <code class="code">B:1 S:authMe O:1 NN:code:1.23 NS:flag:ok O:0</code>.
  1060. Each value is prefixed by a single character denoting the type,
  1061. B for Boolean, N for number, S for string, O for object, or Z for null,
  1062. followed by a colon. For Booleans the data must be either 0 or 1 for
  1063. FALSE or TRUE, respectively. Likewise for Objects the data must be 0 or
  1064. 1 to end or begin an object, respectively. Data items in subobjects may
  1065. be named, by prefixing the type with &rsquo;N&rsquo; and specifying the name before
  1066. the value (i.e. <code class="code">NB:myFlag:1</code>). This option may be used multiple
  1067. times to construct arbitrary AMF sequences.
  1068. </p>
  1069. </dd>
  1070. <dt><samp class="option">rtmp_flashver</samp></dt>
  1071. <dd><p>Version of the Flash plugin used to run the SWF player. The default
  1072. is LNX 9,0,124,2. (When publishing, the default is FMLE/3.0 (compatible;
  1073. &lt;libavformat version&gt;).)
  1074. </p>
  1075. </dd>
  1076. <dt><samp class="option">rtmp_flush_interval</samp></dt>
  1077. <dd><p>Number of packets flushed in the same request (RTMPT only). The default
  1078. is 10.
  1079. </p>
  1080. </dd>
  1081. <dt><samp class="option">rtmp_live</samp></dt>
  1082. <dd><p>Specify that the media is a live stream. No resuming or seeking in
  1083. live streams is possible. The default value is <code class="code">any</code>, which means the
  1084. subscriber first tries to play the live stream specified in the
  1085. playpath. If a live stream of that name is not found, it plays the
  1086. recorded stream. The other possible values are <code class="code">live</code> and
  1087. <code class="code">recorded</code>.
  1088. </p>
  1089. </dd>
  1090. <dt><samp class="option">rtmp_pageurl</samp></dt>
  1091. <dd><p>URL of the web page in which the media was embedded. By default no
  1092. value will be sent.
  1093. </p>
  1094. </dd>
  1095. <dt><samp class="option">rtmp_playpath</samp></dt>
  1096. <dd><p>Stream identifier to play or to publish. This option overrides the
  1097. parameter specified in the URI.
  1098. </p>
  1099. </dd>
  1100. <dt><samp class="option">rtmp_subscribe</samp></dt>
  1101. <dd><p>Name of live stream to subscribe to. By default no value will be sent.
  1102. It is only sent if the option is specified or if rtmp_live
  1103. is set to live.
  1104. </p>
  1105. </dd>
  1106. <dt><samp class="option">rtmp_swfhash</samp></dt>
  1107. <dd><p>SHA256 hash of the decompressed SWF file (32 bytes).
  1108. </p>
  1109. </dd>
  1110. <dt><samp class="option">rtmp_swfsize</samp></dt>
  1111. <dd><p>Size of the decompressed SWF file, required for SWFVerification.
  1112. </p>
  1113. </dd>
  1114. <dt><samp class="option">rtmp_swfurl</samp></dt>
  1115. <dd><p>URL of the SWF player for the media. By default no value will be sent.
  1116. </p>
  1117. </dd>
  1118. <dt><samp class="option">rtmp_swfverify</samp></dt>
  1119. <dd><p>URL to player swf file, compute hash/size automatically.
  1120. </p>
  1121. </dd>
  1122. <dt><samp class="option">rtmp_tcurl</samp></dt>
  1123. <dd><p>URL of the target stream. Defaults to proto://host[:port]/app.
  1124. </p>
  1125. </dd>
  1126. <dt><samp class="option">tcp_nodelay=<var class="var">1|0</var></samp></dt>
  1127. <dd><p>Set TCP_NODELAY to disable Nagle&rsquo;s algorithm. Default value is 0.
  1128. </p>
  1129. <p><em class="emph">Remark: Writing to the socket is currently not optimized to minimize system calls and reduces the efficiency / effect of TCP_NODELAY.</em>
  1130. </p>
  1131. </dd>
  1132. </dl>
  1133. <p>For example to read with <code class="command">ffplay</code> a multimedia resource named
  1134. &quot;sample&quot; from the application &quot;vod&quot; from an RTMP server &quot;myserver&quot;:
  1135. </p><div class="example">
  1136. <pre class="example-preformatted">ffplay rtmp://myserver/vod/sample
  1137. </pre></div>
  1138. <p>To publish to a password protected server, passing the playpath and
  1139. app names separately:
  1140. </p><div class="example">
  1141. <pre class="example-preformatted">ffmpeg -re -i &lt;input&gt; -f flv -rtmp_playpath some/long/path -rtmp_app long/app/name rtmp://username:password@myserver/
  1142. </pre></div>
  1143. </div>
  1144. <div class="section-level-extent" id="rtmpe">
  1145. <h3 class="section"><span>3.24 rtmpe<a class="copiable-link" href="#rtmpe"> &para;</a></span></h3>
  1146. <p>Encrypted Real-Time Messaging Protocol.
  1147. </p>
  1148. <p>The Encrypted Real-Time Messaging Protocol (RTMPE) is used for
  1149. streaming multimedia content within standard cryptographic primitives,
  1150. consisting of Diffie-Hellman key exchange and HMACSHA256, generating
  1151. a pair of RC4 keys.
  1152. </p>
  1153. </div>
  1154. <div class="section-level-extent" id="rtmps">
  1155. <h3 class="section"><span>3.25 rtmps<a class="copiable-link" href="#rtmps"> &para;</a></span></h3>
  1156. <p>Real-Time Messaging Protocol over a secure SSL connection.
  1157. </p>
  1158. <p>The Real-Time Messaging Protocol (RTMPS) is used for streaming
  1159. multimedia content across an encrypted connection.
  1160. </p>
  1161. </div>
  1162. <div class="section-level-extent" id="rtmpt">
  1163. <h3 class="section"><span>3.26 rtmpt<a class="copiable-link" href="#rtmpt"> &para;</a></span></h3>
  1164. <p>Real-Time Messaging Protocol tunneled through HTTP.
  1165. </p>
  1166. <p>The Real-Time Messaging Protocol tunneled through HTTP (RTMPT) is used
  1167. for streaming multimedia content within HTTP requests to traverse
  1168. firewalls.
  1169. </p>
  1170. </div>
  1171. <div class="section-level-extent" id="rtmpte">
  1172. <h3 class="section"><span>3.27 rtmpte<a class="copiable-link" href="#rtmpte"> &para;</a></span></h3>
  1173. <p>Encrypted Real-Time Messaging Protocol tunneled through HTTP.
  1174. </p>
  1175. <p>The Encrypted Real-Time Messaging Protocol tunneled through HTTP (RTMPTE)
  1176. is used for streaming multimedia content within HTTP requests to traverse
  1177. firewalls.
  1178. </p>
  1179. </div>
  1180. <div class="section-level-extent" id="rtmpts">
  1181. <h3 class="section"><span>3.28 rtmpts<a class="copiable-link" href="#rtmpts"> &para;</a></span></h3>
  1182. <p>Real-Time Messaging Protocol tunneled through HTTPS.
  1183. </p>
  1184. <p>The Real-Time Messaging Protocol tunneled through HTTPS (RTMPTS) is used
  1185. for streaming multimedia content within HTTPS requests to traverse
  1186. firewalls.
  1187. </p>
  1188. </div>
  1189. <div class="section-level-extent" id="libsmbclient">
  1190. <h3 class="section"><span>3.29 libsmbclient<a class="copiable-link" href="#libsmbclient"> &para;</a></span></h3>
  1191. <p>libsmbclient permits one to manipulate CIFS/SMB network resources.
  1192. </p>
  1193. <p>Following syntax is required.
  1194. </p>
  1195. <div class="example">
  1196. <pre class="example-preformatted">smb://[[domain:]user[:password@]]server[/share[/path[/file]]]
  1197. </pre></div>
  1198. <p>This protocol accepts the following options.
  1199. </p>
  1200. <dl class="table">
  1201. <dt><samp class="option">timeout</samp></dt>
  1202. <dd><p>Set timeout in milliseconds of socket I/O operations used by the underlying
  1203. low level operation. By default it is set to -1, which means that the timeout
  1204. is not specified.
  1205. </p>
  1206. </dd>
  1207. <dt><samp class="option">truncate</samp></dt>
  1208. <dd><p>Truncate existing files on write, if set to 1. A value of 0 prevents
  1209. truncating. Default value is 1.
  1210. </p>
  1211. </dd>
  1212. <dt><samp class="option">workgroup</samp></dt>
  1213. <dd><p>Set the workgroup used for making connections. By default workgroup is not specified.
  1214. </p>
  1215. </dd>
  1216. </dl>
  1217. <p>For more information see: <a class="url" href="http://www.samba.org/">http://www.samba.org/</a>.
  1218. </p>
  1219. </div>
  1220. <div class="section-level-extent" id="libssh">
  1221. <h3 class="section"><span>3.30 libssh<a class="copiable-link" href="#libssh"> &para;</a></span></h3>
  1222. <p>Secure File Transfer Protocol via libssh
  1223. </p>
  1224. <p>Read from or write to remote resources using SFTP protocol.
  1225. </p>
  1226. <p>Following syntax is required.
  1227. </p>
  1228. <div class="example">
  1229. <pre class="example-preformatted">sftp://[user[:password]@]server[:port]/path/to/remote/resource.mpeg
  1230. </pre></div>
  1231. <p>This protocol accepts the following options.
  1232. </p>
  1233. <dl class="table">
  1234. <dt><samp class="option">timeout</samp></dt>
  1235. <dd><p>Set timeout of socket I/O operations used by the underlying low level
  1236. operation. By default it is set to -1, which means that the timeout
  1237. is not specified.
  1238. </p>
  1239. </dd>
  1240. <dt><samp class="option">truncate</samp></dt>
  1241. <dd><p>Truncate existing files on write, if set to 1. A value of 0 prevents
  1242. truncating. Default value is 1.
  1243. </p>
  1244. </dd>
  1245. <dt><samp class="option">private_key</samp></dt>
  1246. <dd><p>Specify the path of the file containing private key to use during authorization.
  1247. By default libssh searches for keys in the <samp class="file">~/.ssh/</samp> directory.
  1248. </p>
  1249. </dd>
  1250. </dl>
  1251. <p>Example: Play a file stored on remote server.
  1252. </p>
  1253. <div class="example">
  1254. <pre class="example-preformatted">ffplay sftp://user:password@server_address:22/home/user/resource.mpeg
  1255. </pre></div>
  1256. </div>
  1257. <div class="section-level-extent" id="librtmp-rtmp_002c-rtmpe_002c-rtmps_002c-rtmpt_002c-rtmpte">
  1258. <h3 class="section"><span>3.31 librtmp rtmp, rtmpe, rtmps, rtmpt, rtmpte<a class="copiable-link" href="#librtmp-rtmp_002c-rtmpe_002c-rtmps_002c-rtmpt_002c-rtmpte"> &para;</a></span></h3>
  1259. <p>Real-Time Messaging Protocol and its variants supported through
  1260. librtmp.
  1261. </p>
  1262. <p>Requires the presence of the librtmp headers and library during
  1263. configuration. You need to explicitly configure the build with
  1264. &quot;&ndash;enable-librtmp&quot;. If enabled this will replace the native RTMP
  1265. protocol.
  1266. </p>
  1267. <p>This protocol provides most client functions and a few server
  1268. functions needed to support RTMP, RTMP tunneled in HTTP (RTMPT),
  1269. encrypted RTMP (RTMPE), RTMP over SSL/TLS (RTMPS) and tunneled
  1270. variants of these encrypted types (RTMPTE, RTMPTS).
  1271. </p>
  1272. <p>The required syntax is:
  1273. </p><div class="example">
  1274. <pre class="example-preformatted"><var class="var">rtmp_proto</var>://<var class="var">server</var>[:<var class="var">port</var>][/<var class="var">app</var>][/<var class="var">playpath</var>] <var class="var">options</var>
  1275. </pre></div>
  1276. <p>where <var class="var">rtmp_proto</var> is one of the strings &quot;rtmp&quot;, &quot;rtmpt&quot;, &quot;rtmpe&quot;,
  1277. &quot;rtmps&quot;, &quot;rtmpte&quot;, &quot;rtmpts&quot; corresponding to each RTMP variant, and
  1278. <var class="var">server</var>, <var class="var">port</var>, <var class="var">app</var> and <var class="var">playpath</var> have the same
  1279. meaning as specified for the RTMP native protocol.
  1280. <var class="var">options</var> contains a list of space-separated options of the form
  1281. <var class="var">key</var>=<var class="var">val</var>.
  1282. </p>
  1283. <p>See the librtmp manual page (man 3 librtmp) for more information.
  1284. </p>
  1285. <p>For example, to stream a file in real-time to an RTMP server using
  1286. <code class="command">ffmpeg</code>:
  1287. </p><div class="example">
  1288. <pre class="example-preformatted">ffmpeg -re -i myfile -f flv rtmp://myserver/live/mystream
  1289. </pre></div>
  1290. <p>To play the same stream using <code class="command">ffplay</code>:
  1291. </p><div class="example">
  1292. <pre class="example-preformatted">ffplay &quot;rtmp://myserver/live/mystream live=1&quot;
  1293. </pre></div>
  1294. </div>
  1295. <div class="section-level-extent" id="rtp">
  1296. <h3 class="section"><span>3.32 rtp<a class="copiable-link" href="#rtp"> &para;</a></span></h3>
  1297. <p>Real-time Transport Protocol.
  1298. </p>
  1299. <p>The required syntax for an RTP URL is:
  1300. rtp://<var class="var">hostname</var>[:<var class="var">port</var>][?<var class="var">option</var>=<var class="var">val</var>...]
  1301. </p>
  1302. <p><var class="var">port</var> specifies the RTP port to use.
  1303. </p>
  1304. <p>The following URL options are supported:
  1305. </p>
  1306. <dl class="table">
  1307. <dt><samp class="option">ttl=<var class="var">n</var></samp></dt>
  1308. <dd><p>Set the TTL (Time-To-Live) value (for multicast only).
  1309. </p>
  1310. </dd>
  1311. <dt><samp class="option">rtcpport=<var class="var">n</var></samp></dt>
  1312. <dd><p>Set the remote RTCP port to <var class="var">n</var>.
  1313. </p>
  1314. </dd>
  1315. <dt><samp class="option">localrtpport=<var class="var">n</var></samp></dt>
  1316. <dd><p>Set the local RTP port to <var class="var">n</var>.
  1317. </p>
  1318. </dd>
  1319. <dt><samp class="option">localrtcpport=<var class="var">n</var>'</samp></dt>
  1320. <dd><p>Set the local RTCP port to <var class="var">n</var>.
  1321. </p>
  1322. </dd>
  1323. <dt><samp class="option">pkt_size=<var class="var">n</var></samp></dt>
  1324. <dd><p>Set max packet size (in bytes) to <var class="var">n</var>.
  1325. </p>
  1326. </dd>
  1327. <dt><samp class="option">buffer_size=<var class="var">size</var></samp></dt>
  1328. <dd><p>Set the maximum UDP socket buffer size in bytes.
  1329. </p>
  1330. </dd>
  1331. <dt><samp class="option">connect=0|1</samp></dt>
  1332. <dd><p>Do a <code class="code">connect()</code> on the UDP socket (if set to 1) or not (if set
  1333. to 0).
  1334. </p>
  1335. </dd>
  1336. <dt><samp class="option">sources=<var class="var">ip</var>[,<var class="var">ip</var>]</samp></dt>
  1337. <dd><p>List allowed source IP addresses.
  1338. </p>
  1339. </dd>
  1340. <dt><samp class="option">block=<var class="var">ip</var>[,<var class="var">ip</var>]</samp></dt>
  1341. <dd><p>List disallowed (blocked) source IP addresses.
  1342. </p>
  1343. </dd>
  1344. <dt><samp class="option">write_to_source=0|1</samp></dt>
  1345. <dd><p>Send packets to the source address of the latest received packet (if
  1346. set to 1) or to a default remote address (if set to 0).
  1347. </p>
  1348. </dd>
  1349. <dt><samp class="option">localport=<var class="var">n</var></samp></dt>
  1350. <dd><p>Set the local RTP port to <var class="var">n</var>.
  1351. </p>
  1352. </dd>
  1353. <dt><samp class="option">localaddr=<var class="var">addr</var></samp></dt>
  1354. <dd><p>Local IP address of a network interface used for sending packets or joining
  1355. multicast groups.
  1356. </p>
  1357. </dd>
  1358. <dt><samp class="option">timeout=<var class="var">n</var></samp></dt>
  1359. <dd><p>Set timeout (in microseconds) of socket I/O operations to <var class="var">n</var>.
  1360. </p>
  1361. <p>This is a deprecated option. Instead, <samp class="option">localrtpport</samp> should be
  1362. used.
  1363. </p>
  1364. </dd>
  1365. </dl>
  1366. <p>Important notes:
  1367. </p>
  1368. <ol class="enumerate">
  1369. <li> If <samp class="option">rtcpport</samp> is not set the RTCP port will be set to the RTP
  1370. port value plus 1.
  1371. </li><li> If <samp class="option">localrtpport</samp> (the local RTP port) is not set any available
  1372. port will be used for the local RTP and RTCP ports.
  1373. </li><li> If <samp class="option">localrtcpport</samp> (the local RTCP port) is not set it will be
  1374. set to the local RTP port value plus 1.
  1375. </li></ol>
  1376. </div>
  1377. <div class="section-level-extent" id="rtsp">
  1378. <h3 class="section"><span>3.33 rtsp<a class="copiable-link" href="#rtsp"> &para;</a></span></h3>
  1379. <p>Real-Time Streaming Protocol.
  1380. </p>
  1381. <p>RTSP is not technically a protocol handler in libavformat, it is a demuxer
  1382. and muxer. The demuxer supports both normal RTSP (with data transferred
  1383. over RTP; this is used by e.g. Apple and Microsoft) and Real-RTSP (with
  1384. data transferred over RDT).
  1385. </p>
  1386. <p>The muxer can be used to send a stream using RTSP ANNOUNCE to a server
  1387. supporting it (currently Darwin Streaming Server and Mischa Spiegelmock&rsquo;s
  1388. <a class="uref" href="https://github.com/revmischa/rtsp-server">RTSP server</a>).
  1389. </p>
  1390. <p>The required syntax for a RTSP url is:
  1391. </p><div class="example">
  1392. <pre class="example-preformatted">rtsp://<var class="var">hostname</var>[:<var class="var">port</var>]/<var class="var">path</var>
  1393. </pre></div>
  1394. <p>Options can be set on the <code class="command">ffmpeg</code>/<code class="command">ffplay</code> command
  1395. line, or set in code via <code class="code">AVOption</code>s or in
  1396. <code class="code">avformat_open_input</code>.
  1397. </p>
  1398. <p>The following options are supported.
  1399. </p>
  1400. <dl class="table">
  1401. <dt><samp class="option">initial_pause</samp></dt>
  1402. <dd><p>Do not start playing the stream immediately if set to 1. Default value
  1403. is 0.
  1404. </p>
  1405. </dd>
  1406. <dt><samp class="option">rtsp_transport</samp></dt>
  1407. <dd><p>Set RTSP transport protocols.
  1408. </p>
  1409. <p>It accepts the following values:
  1410. </p><dl class="table">
  1411. <dt>&lsquo;<samp class="samp">udp</samp>&rsquo;</dt>
  1412. <dd><p>Use UDP as lower transport protocol.
  1413. </p>
  1414. </dd>
  1415. <dt>&lsquo;<samp class="samp">tcp</samp>&rsquo;</dt>
  1416. <dd><p>Use TCP (interleaving within the RTSP control channel) as lower
  1417. transport protocol.
  1418. </p>
  1419. </dd>
  1420. <dt>&lsquo;<samp class="samp">udp_multicast</samp>&rsquo;</dt>
  1421. <dd><p>Use UDP multicast as lower transport protocol.
  1422. </p>
  1423. </dd>
  1424. <dt>&lsquo;<samp class="samp">http</samp>&rsquo;</dt>
  1425. <dd><p>Use HTTP tunneling as lower transport protocol, which is useful for
  1426. passing proxies.
  1427. </p></dd>
  1428. </dl>
  1429. <p>Multiple lower transport protocols may be specified, in that case they are
  1430. tried one at a time (if the setup of one fails, the next one is tried).
  1431. For the muxer, only the &lsquo;<samp class="samp">tcp</samp>&rsquo; and &lsquo;<samp class="samp">udp</samp>&rsquo; options are supported.
  1432. </p>
  1433. </dd>
  1434. <dt><samp class="option">rtsp_flags</samp></dt>
  1435. <dd><p>Set RTSP flags.
  1436. </p>
  1437. <p>The following values are accepted:
  1438. </p><dl class="table">
  1439. <dt>&lsquo;<samp class="samp">filter_src</samp>&rsquo;</dt>
  1440. <dd><p>Accept packets only from negotiated peer address and port.
  1441. </p></dd>
  1442. <dt>&lsquo;<samp class="samp">listen</samp>&rsquo;</dt>
  1443. <dd><p>Act as a server, listening for an incoming connection.
  1444. </p></dd>
  1445. <dt>&lsquo;<samp class="samp">prefer_tcp</samp>&rsquo;</dt>
  1446. <dd><p>Try TCP for RTP transport first, if TCP is available as RTSP RTP transport.
  1447. </p></dd>
  1448. </dl>
  1449. <p>Default value is &lsquo;<samp class="samp">none</samp>&rsquo;.
  1450. </p>
  1451. </dd>
  1452. <dt><samp class="option">allowed_media_types</samp></dt>
  1453. <dd><p>Set media types to accept from the server.
  1454. </p>
  1455. <p>The following flags are accepted:
  1456. </p><dl class="table">
  1457. <dt>&lsquo;<samp class="samp">video</samp>&rsquo;</dt>
  1458. <dt>&lsquo;<samp class="samp">audio</samp>&rsquo;</dt>
  1459. <dt>&lsquo;<samp class="samp">data</samp>&rsquo;</dt>
  1460. </dl>
  1461. <p>By default it accepts all media types.
  1462. </p>
  1463. </dd>
  1464. <dt><samp class="option">min_port</samp></dt>
  1465. <dd><p>Set minimum local UDP port. Default value is 5000.
  1466. </p>
  1467. </dd>
  1468. <dt><samp class="option">max_port</samp></dt>
  1469. <dd><p>Set maximum local UDP port. Default value is 65000.
  1470. </p>
  1471. </dd>
  1472. <dt><samp class="option">listen_timeout</samp></dt>
  1473. <dd><p>Set maximum timeout (in seconds) to establish an initial connection. Setting
  1474. <samp class="option">listen_timeout</samp> &gt; 0 sets <samp class="option">rtsp_flags</samp> to &lsquo;<samp class="samp">listen</samp>&rsquo;. Default is -1
  1475. which means an infinite timeout when &lsquo;<samp class="samp">listen</samp>&rsquo; mode is set.
  1476. </p>
  1477. </dd>
  1478. <dt><samp class="option">reorder_queue_size</samp></dt>
  1479. <dd><p>Set number of packets to buffer for handling of reordered packets.
  1480. </p>
  1481. </dd>
  1482. <dt><samp class="option">timeout</samp></dt>
  1483. <dd><p>Set socket TCP I/O timeout in microseconds.
  1484. </p>
  1485. </dd>
  1486. <dt><samp class="option">user_agent</samp></dt>
  1487. <dd><p>Override User-Agent header. If not specified, it defaults to the
  1488. libavformat identifier string.
  1489. </p></dd>
  1490. </dl>
  1491. <p>When receiving data over UDP, the demuxer tries to reorder received packets
  1492. (since they may arrive out of order, or packets may get lost totally). This
  1493. can be disabled by setting the maximum demuxing delay to zero (via
  1494. the <code class="code">max_delay</code> field of AVFormatContext).
  1495. </p>
  1496. <p>When watching multi-bitrate Real-RTSP streams with <code class="command">ffplay</code>, the
  1497. streams to display can be chosen with <code class="code">-vst</code> <var class="var">n</var> and
  1498. <code class="code">-ast</code> <var class="var">n</var> for video and audio respectively, and can be switched
  1499. on the fly by pressing <code class="code">v</code> and <code class="code">a</code>.
  1500. </p>
  1501. <ul class="mini-toc">
  1502. <li><a href="#Examples" accesskey="1">Examples</a></li>
  1503. </ul>
  1504. <div class="subsection-level-extent" id="Examples">
  1505. <h4 class="subsection"><span>3.33.1 Examples<a class="copiable-link" href="#Examples"> &para;</a></span></h4>
  1506. <p>The following examples all make use of the <code class="command">ffplay</code> and
  1507. <code class="command">ffmpeg</code> tools.
  1508. </p>
  1509. <ul class="itemize mark-bullet">
  1510. <li>Watch a stream over UDP, with a max reordering delay of 0.5 seconds:
  1511. <div class="example">
  1512. <pre class="example-preformatted">ffplay -max_delay 500000 -rtsp_transport udp rtsp://server/video.mp4
  1513. </pre></div>
  1514. </li><li>Watch a stream tunneled over HTTP:
  1515. <div class="example">
  1516. <pre class="example-preformatted">ffplay -rtsp_transport http rtsp://server/video.mp4
  1517. </pre></div>
  1518. </li><li>Send a stream in realtime to a RTSP server, for others to watch:
  1519. <div class="example">
  1520. <pre class="example-preformatted">ffmpeg -re -i <var class="var">input</var> -f rtsp -muxdelay 0.1 rtsp://server/live.sdp
  1521. </pre></div>
  1522. </li><li>Receive a stream in realtime:
  1523. <div class="example">
  1524. <pre class="example-preformatted">ffmpeg -rtsp_flags listen -i rtsp://ownaddress/live.sdp <var class="var">output</var>
  1525. </pre></div>
  1526. </li></ul>
  1527. </div>
  1528. </div>
  1529. <div class="section-level-extent" id="sap">
  1530. <h3 class="section"><span>3.34 sap<a class="copiable-link" href="#sap"> &para;</a></span></h3>
  1531. <p>Session Announcement Protocol (RFC 2974). This is not technically a
  1532. protocol handler in libavformat, it is a muxer and demuxer.
  1533. It is used for signalling of RTP streams, by announcing the SDP for the
  1534. streams regularly on a separate port.
  1535. </p>
  1536. <ul class="mini-toc">
  1537. <li><a href="#Muxer" accesskey="1">Muxer</a></li>
  1538. <li><a href="#Demuxer" accesskey="2">Demuxer</a></li>
  1539. </ul>
  1540. <div class="subsection-level-extent" id="Muxer">
  1541. <h4 class="subsection"><span>3.34.1 Muxer<a class="copiable-link" href="#Muxer"> &para;</a></span></h4>
  1542. <p>The syntax for a SAP url given to the muxer is:
  1543. </p><div class="example">
  1544. <pre class="example-preformatted">sap://<var class="var">destination</var>[:<var class="var">port</var>][?<var class="var">options</var>]
  1545. </pre></div>
  1546. <p>The RTP packets are sent to <var class="var">destination</var> on port <var class="var">port</var>,
  1547. or to port 5004 if no port is specified.
  1548. <var class="var">options</var> is a <code class="code">&amp;</code>-separated list. The following options
  1549. are supported:
  1550. </p>
  1551. <dl class="table">
  1552. <dt><samp class="option">announce_addr=<var class="var">address</var></samp></dt>
  1553. <dd><p>Specify the destination IP address for sending the announcements to.
  1554. If omitted, the announcements are sent to the commonly used SAP
  1555. announcement multicast address 224.2.127.254 (sap.mcast.net), or
  1556. ff0e::2:7ffe if <var class="var">destination</var> is an IPv6 address.
  1557. </p>
  1558. </dd>
  1559. <dt><samp class="option">announce_port=<var class="var">port</var></samp></dt>
  1560. <dd><p>Specify the port to send the announcements on, defaults to
  1561. 9875 if not specified.
  1562. </p>
  1563. </dd>
  1564. <dt><samp class="option">ttl=<var class="var">ttl</var></samp></dt>
  1565. <dd><p>Specify the time to live value for the announcements and RTP packets,
  1566. defaults to 255.
  1567. </p>
  1568. </dd>
  1569. <dt><samp class="option">same_port=<var class="var">0|1</var></samp></dt>
  1570. <dd><p>If set to 1, send all RTP streams on the same port pair. If zero (the
  1571. default), all streams are sent on unique ports, with each stream on a
  1572. port 2 numbers higher than the previous.
  1573. VLC/Live555 requires this to be set to 1, to be able to receive the stream.
  1574. The RTP stack in libavformat for receiving requires all streams to be sent
  1575. on unique ports.
  1576. </p></dd>
  1577. </dl>
  1578. <p>Example command lines follow.
  1579. </p>
  1580. <p>To broadcast a stream on the local subnet, for watching in VLC:
  1581. </p>
  1582. <div class="example">
  1583. <pre class="example-preformatted">ffmpeg -re -i <var class="var">input</var> -f sap sap://224.0.0.255?same_port=1
  1584. </pre></div>
  1585. <p>Similarly, for watching in <code class="command">ffplay</code>:
  1586. </p>
  1587. <div class="example">
  1588. <pre class="example-preformatted">ffmpeg -re -i <var class="var">input</var> -f sap sap://224.0.0.255
  1589. </pre></div>
  1590. <p>And for watching in <code class="command">ffplay</code>, over IPv6:
  1591. </p>
  1592. <div class="example">
  1593. <pre class="example-preformatted">ffmpeg -re -i <var class="var">input</var> -f sap sap://[ff0e::1:2:3:4]
  1594. </pre></div>
  1595. </div>
  1596. <div class="subsection-level-extent" id="Demuxer">
  1597. <h4 class="subsection"><span>3.34.2 Demuxer<a class="copiable-link" href="#Demuxer"> &para;</a></span></h4>
  1598. <p>The syntax for a SAP url given to the demuxer is:
  1599. </p><div class="example">
  1600. <pre class="example-preformatted">sap://[<var class="var">address</var>][:<var class="var">port</var>]
  1601. </pre></div>
  1602. <p><var class="var">address</var> is the multicast address to listen for announcements on,
  1603. if omitted, the default 224.2.127.254 (sap.mcast.net) is used. <var class="var">port</var>
  1604. is the port that is listened on, 9875 if omitted.
  1605. </p>
  1606. <p>The demuxers listens for announcements on the given address and port.
  1607. Once an announcement is received, it tries to receive that particular stream.
  1608. </p>
  1609. <p>Example command lines follow.
  1610. </p>
  1611. <p>To play back the first stream announced on the normal SAP multicast address:
  1612. </p>
  1613. <div class="example">
  1614. <pre class="example-preformatted">ffplay sap://
  1615. </pre></div>
  1616. <p>To play back the first stream announced on one the default IPv6 SAP multicast address:
  1617. </p>
  1618. <div class="example">
  1619. <pre class="example-preformatted">ffplay sap://[ff0e::2:7ffe]
  1620. </pre></div>
  1621. </div>
  1622. </div>
  1623. <div class="section-level-extent" id="sctp">
  1624. <h3 class="section"><span>3.35 sctp<a class="copiable-link" href="#sctp"> &para;</a></span></h3>
  1625. <p>Stream Control Transmission Protocol.
  1626. </p>
  1627. <p>The accepted URL syntax is:
  1628. </p><div class="example">
  1629. <pre class="example-preformatted">sctp://<var class="var">host</var>:<var class="var">port</var>[?<var class="var">options</var>]
  1630. </pre></div>
  1631. <p>The protocol accepts the following options:
  1632. </p><dl class="table">
  1633. <dt><samp class="option">listen</samp></dt>
  1634. <dd><p>If set to any value, listen for an incoming connection. Outgoing connection is done by default.
  1635. </p>
  1636. </dd>
  1637. <dt><samp class="option">max_streams</samp></dt>
  1638. <dd><p>Set the maximum number of streams. By default no limit is set.
  1639. </p></dd>
  1640. </dl>
  1641. </div>
  1642. <div class="section-level-extent" id="srt">
  1643. <h3 class="section"><span>3.36 srt<a class="copiable-link" href="#srt"> &para;</a></span></h3>
  1644. <p>Haivision Secure Reliable Transport Protocol via libsrt.
  1645. </p>
  1646. <p>The supported syntax for a SRT URL is:
  1647. </p><div class="example">
  1648. <pre class="example-preformatted">srt://<var class="var">hostname</var>:<var class="var">port</var>[?<var class="var">options</var>]
  1649. </pre></div>
  1650. <p><var class="var">options</var> contains a list of &amp;-separated options of the form
  1651. <var class="var">key</var>=<var class="var">val</var>.
  1652. </p>
  1653. <p>or
  1654. </p>
  1655. <div class="example">
  1656. <pre class="example-preformatted"><var class="var">options</var> srt://<var class="var">hostname</var>:<var class="var">port</var>
  1657. </pre></div>
  1658. <p><var class="var">options</var> contains a list of &rsquo;-<var class="var">key</var> <var class="var">val</var>&rsquo;
  1659. options.
  1660. </p>
  1661. <p>This protocol accepts the following options.
  1662. </p>
  1663. <dl class="table">
  1664. <dt><samp class="option">connect_timeout=<var class="var">milliseconds</var></samp></dt>
  1665. <dd><p>Connection timeout; SRT cannot connect for RTT &gt; 1500 msec
  1666. (2 handshake exchanges) with the default connect timeout of
  1667. 3 seconds. This option applies to the caller and rendezvous
  1668. connection modes. The connect timeout is 10 times the value
  1669. set for the rendezvous mode (which can be used as a
  1670. workaround for this connection problem with earlier versions).
  1671. </p>
  1672. </dd>
  1673. <dt><samp class="option">ffs=<var class="var">bytes</var></samp></dt>
  1674. <dd><p>Flight Flag Size (Window Size), in bytes. FFS is actually an
  1675. internal parameter and you should set it to not less than
  1676. <samp class="option">recv_buffer_size</samp> and <samp class="option">mss</samp>. The default value
  1677. is relatively large, therefore unless you set a very large receiver buffer,
  1678. you do not need to change this option. Default value is 25600.
  1679. </p>
  1680. </dd>
  1681. <dt><samp class="option">inputbw=<var class="var">bytes/seconds</var></samp></dt>
  1682. <dd><p>Sender nominal input rate, in bytes per seconds. Used along with
  1683. <samp class="option">oheadbw</samp>, when <samp class="option">maxbw</samp> is set to relative (0), to
  1684. calculate maximum sending rate when recovery packets are sent
  1685. along with the main media stream:
  1686. <samp class="option">inputbw</samp> * (100 + <samp class="option">oheadbw</samp>) / 100
  1687. if <samp class="option">inputbw</samp> is not set while <samp class="option">maxbw</samp> is set to
  1688. relative (0), the actual input rate is evaluated inside
  1689. the library. Default value is 0.
  1690. </p>
  1691. </dd>
  1692. <dt><samp class="option">iptos=<var class="var">tos</var></samp></dt>
  1693. <dd><p>IP Type of Service. Applies to sender only. Default value is 0xB8.
  1694. </p>
  1695. </dd>
  1696. <dt><samp class="option">ipttl=<var class="var">ttl</var></samp></dt>
  1697. <dd><p>IP Time To Live. Applies to sender only. Default value is 64.
  1698. </p>
  1699. </dd>
  1700. <dt><samp class="option">latency=<var class="var">microseconds</var></samp></dt>
  1701. <dd><p>Timestamp-based Packet Delivery Delay.
  1702. Used to absorb bursts of missed packet retransmissions.
  1703. This flag sets both <samp class="option">rcvlatency</samp> and <samp class="option">peerlatency</samp>
  1704. to the same value. Note that prior to version 1.3.0
  1705. this is the only flag to set the latency, however
  1706. this is effectively equivalent to setting <samp class="option">peerlatency</samp>,
  1707. when side is sender and <samp class="option">rcvlatency</samp>
  1708. when side is receiver, and the bidirectional stream
  1709. sending is not supported.
  1710. </p>
  1711. </dd>
  1712. <dt><samp class="option">listen_timeout=<var class="var">microseconds</var></samp></dt>
  1713. <dd><p>Set socket listen timeout.
  1714. </p>
  1715. </dd>
  1716. <dt><samp class="option">maxbw=<var class="var">bytes/seconds</var></samp></dt>
  1717. <dd><p>Maximum sending bandwidth, in bytes per seconds.
  1718. -1 infinite (CSRTCC limit is 30mbps)
  1719. 0 relative to input rate (see <samp class="option">inputbw</samp>)
  1720. &gt;0 absolute limit value
  1721. Default value is 0 (relative)
  1722. </p>
  1723. </dd>
  1724. <dt><samp class="option">mode=<var class="var">caller|listener|rendezvous</var></samp></dt>
  1725. <dd><p>Connection mode.
  1726. <samp class="option">caller</samp> opens client connection.
  1727. <samp class="option">listener</samp> starts server to listen for incoming connections.
  1728. <samp class="option">rendezvous</samp> use Rendez-Vous connection mode.
  1729. Default value is caller.
  1730. </p>
  1731. </dd>
  1732. <dt><samp class="option">mss=<var class="var">bytes</var></samp></dt>
  1733. <dd><p>Maximum Segment Size, in bytes. Used for buffer allocation
  1734. and rate calculation using a packet counter assuming fully
  1735. filled packets. The smallest MSS between the peers is
  1736. used. This is 1500 by default in the overall internet.
  1737. This is the maximum size of the UDP packet and can be
  1738. only decreased, unless you have some unusual dedicated
  1739. network settings. Default value is 1500.
  1740. </p>
  1741. </dd>
  1742. <dt><samp class="option">nakreport=<var class="var">1|0</var></samp></dt>
  1743. <dd><p>If set to 1, Receiver will send &lsquo;UMSG_LOSSREPORT&lsquo; messages
  1744. periodically until a lost packet is retransmitted or
  1745. intentionally dropped. Default value is 1.
  1746. </p>
  1747. </dd>
  1748. <dt><samp class="option">oheadbw=<var class="var">percents</var></samp></dt>
  1749. <dd><p>Recovery bandwidth overhead above input rate, in percents.
  1750. See <samp class="option">inputbw</samp>. Default value is 25%.
  1751. </p>
  1752. </dd>
  1753. <dt><samp class="option">passphrase=<var class="var">string</var></samp></dt>
  1754. <dd><p>HaiCrypt Encryption/Decryption Passphrase string, length
  1755. from 10 to 79 characters. The passphrase is the shared
  1756. secret between the sender and the receiver. It is used
  1757. to generate the Key Encrypting Key using PBKDF2
  1758. (Password-Based Key Derivation Function). It is used
  1759. only if <samp class="option">pbkeylen</samp> is non-zero. It is used on
  1760. the receiver only if the received data is encrypted.
  1761. The configured passphrase cannot be recovered (write-only).
  1762. </p>
  1763. </dd>
  1764. <dt><samp class="option">enforced_encryption=<var class="var">1|0</var></samp></dt>
  1765. <dd><p>If true, both connection parties must have the same password
  1766. set (including empty, that is, with no encryption). If the
  1767. password doesn&rsquo;t match or only one side is unencrypted,
  1768. the connection is rejected. Default is true.
  1769. </p>
  1770. </dd>
  1771. <dt><samp class="option">kmrefreshrate=<var class="var">packets</var></samp></dt>
  1772. <dd><p>The number of packets to be transmitted after which the
  1773. encryption key is switched to a new key. Default is -1.
  1774. -1 means auto (0x1000000 in srt library). The range for
  1775. this option is integers in the 0 - <code class="code">INT_MAX</code>.
  1776. </p>
  1777. </dd>
  1778. <dt><samp class="option">kmpreannounce=<var class="var">packets</var></samp></dt>
  1779. <dd><p>The interval between when a new encryption key is sent and
  1780. when switchover occurs. This value also applies to the
  1781. subsequent interval between when switchover occurs and
  1782. when the old encryption key is decommissioned. Default is -1.
  1783. -1 means auto (0x1000 in srt library). The range for
  1784. this option is integers in the 0 - <code class="code">INT_MAX</code>.
  1785. </p>
  1786. </dd>
  1787. <dt><samp class="option">snddropdelay=<var class="var">microseconds</var></samp></dt>
  1788. <dd><p>The sender&rsquo;s extra delay before dropping packets. This delay is
  1789. added to the default drop delay time interval value.
  1790. </p>
  1791. <p>Special value -1: Do not drop packets on the sender at all.
  1792. </p>
  1793. </dd>
  1794. <dt><samp class="option">payload_size=<var class="var">bytes</var></samp></dt>
  1795. <dd><p>Sets the maximum declared size of a packet transferred
  1796. during the single call to the sending function in Live
  1797. mode. Use 0 if this value isn&rsquo;t used (which is default in
  1798. file mode).
  1799. Default is -1 (automatic), which typically means MPEG-TS;
  1800. if you are going to use SRT
  1801. to send any different kind of payload, such as, for example,
  1802. wrapping a live stream in very small frames, then you can
  1803. use a bigger maximum frame size, though not greater than
  1804. 1456 bytes.
  1805. </p>
  1806. </dd>
  1807. <dt><samp class="option">pkt_size=<var class="var">bytes</var></samp></dt>
  1808. <dd><p>Alias for &lsquo;<samp class="samp">payload_size</samp>&rsquo;.
  1809. </p>
  1810. </dd>
  1811. <dt><samp class="option">peerlatency=<var class="var">microseconds</var></samp></dt>
  1812. <dd><p>The latency value (as described in <samp class="option">rcvlatency</samp>) that is
  1813. set by the sender side as a minimum value for the receiver.
  1814. </p>
  1815. </dd>
  1816. <dt><samp class="option">pbkeylen=<var class="var">bytes</var></samp></dt>
  1817. <dd><p>Sender encryption key length, in bytes.
  1818. Only can be set to 0, 16, 24 and 32.
  1819. Enable sender encryption if not 0.
  1820. Not required on receiver (set to 0),
  1821. key size obtained from sender in HaiCrypt handshake.
  1822. Default value is 0.
  1823. </p>
  1824. </dd>
  1825. <dt><samp class="option">rcvlatency=<var class="var">microseconds</var></samp></dt>
  1826. <dd><p>The time that should elapse since the moment when the
  1827. packet was sent and the moment when it&rsquo;s delivered to
  1828. the receiver application in the receiving function.
  1829. This time should be a buffer time large enough to cover
  1830. the time spent for sending, unexpectedly extended RTT
  1831. time, and the time needed to retransmit the lost UDP
  1832. packet. The effective latency value will be the maximum
  1833. of this options&rsquo; value and the value of <samp class="option">peerlatency</samp>
  1834. set by the peer side. Before version 1.3.0 this option
  1835. is only available as <samp class="option">latency</samp>.
  1836. </p>
  1837. </dd>
  1838. <dt><samp class="option">recv_buffer_size=<var class="var">bytes</var></samp></dt>
  1839. <dd><p>Set UDP receive buffer size, expressed in bytes.
  1840. </p>
  1841. </dd>
  1842. <dt><samp class="option">send_buffer_size=<var class="var">bytes</var></samp></dt>
  1843. <dd><p>Set UDP send buffer size, expressed in bytes.
  1844. </p>
  1845. </dd>
  1846. <dt><samp class="option">timeout=<var class="var">microseconds</var></samp></dt>
  1847. <dd><p>Set raise error timeouts for read, write and connect operations. Note that the
  1848. SRT library has internal timeouts which can be controlled separately, the
  1849. value set here is only a cap on those.
  1850. </p>
  1851. </dd>
  1852. <dt><samp class="option">tlpktdrop=<var class="var">1|0</var></samp></dt>
  1853. <dd><p>Too-late Packet Drop. When enabled on receiver, it skips
  1854. missing packets that have not been delivered in time and
  1855. delivers the following packets to the application when
  1856. their time-to-play has come. It also sends a fake ACK to
  1857. the sender. When enabled on sender and enabled on the
  1858. receiving peer, the sender drops the older packets that
  1859. have no chance of being delivered in time. It was
  1860. automatically enabled in the sender if the receiver
  1861. supports it.
  1862. </p>
  1863. </dd>
  1864. <dt><samp class="option">sndbuf=<var class="var">bytes</var></samp></dt>
  1865. <dd><p>Set send buffer size, expressed in bytes.
  1866. </p>
  1867. </dd>
  1868. <dt><samp class="option">rcvbuf=<var class="var">bytes</var></samp></dt>
  1869. <dd><p>Set receive buffer size, expressed in bytes.
  1870. </p>
  1871. <p>Receive buffer must not be greater than <samp class="option">ffs</samp>.
  1872. </p>
  1873. </dd>
  1874. <dt><samp class="option">lossmaxttl=<var class="var">packets</var></samp></dt>
  1875. <dd><p>The value up to which the Reorder Tolerance may grow. When
  1876. Reorder Tolerance is &gt; 0, then packet loss report is delayed
  1877. until that number of packets come in. Reorder Tolerance
  1878. increases every time a &quot;belated&quot; packet has come, but it
  1879. wasn&rsquo;t due to retransmission (that is, when UDP packets tend
  1880. to come out of order), with the difference between the latest
  1881. sequence and this packet&rsquo;s sequence, and not more than the
  1882. value of this option. By default it&rsquo;s 0, which means that this
  1883. mechanism is turned off, and the loss report is always sent
  1884. immediately upon experiencing a &quot;gap&quot; in sequences.
  1885. </p>
  1886. </dd>
  1887. <dt><samp class="option">minversion</samp></dt>
  1888. <dd><p>The minimum SRT version that is required from the peer. A connection
  1889. to a peer that does not satisfy the minimum version requirement
  1890. will be rejected.
  1891. </p>
  1892. <p>The version format in hex is 0xXXYYZZ for x.y.z in human readable
  1893. form.
  1894. </p>
  1895. </dd>
  1896. <dt><samp class="option">streamid=<var class="var">string</var></samp></dt>
  1897. <dd><p>A string limited to 512 characters that can be set on the socket prior
  1898. to connecting. This stream ID will be able to be retrieved by the
  1899. listener side from the socket that is returned from srt_accept and
  1900. was connected by a socket with that set stream ID. SRT does not enforce
  1901. any special interpretation of the contents of this string.
  1902. This option doesn’t make sense in Rendezvous connection; the result
  1903. might be that simply one side will override the value from the other
  1904. side and it’s the matter of luck which one would win
  1905. </p>
  1906. </dd>
  1907. <dt><samp class="option">srt_streamid=<var class="var">string</var></samp></dt>
  1908. <dd><p>Alias for &lsquo;<samp class="samp">streamid</samp>&rsquo; to avoid conflict with ffmpeg command line option.
  1909. </p>
  1910. </dd>
  1911. <dt><samp class="option">smoother=<var class="var">live|file</var></samp></dt>
  1912. <dd><p>The type of Smoother used for the transmission for that socket, which
  1913. is responsible for the transmission and congestion control. The Smoother
  1914. type must be exactly the same on both connecting parties, otherwise
  1915. the connection is rejected.
  1916. </p>
  1917. </dd>
  1918. <dt><samp class="option">messageapi=<var class="var">1|0</var></samp></dt>
  1919. <dd><p>When set, this socket uses the Message API, otherwise it uses Buffer
  1920. API. Note that in live mode (see <samp class="option">transtype</samp>) there’s only
  1921. message API available. In File mode you can chose to use one of two modes:
  1922. </p>
  1923. <p>Stream API (default, when this option is false). In this mode you may
  1924. send as many data as you wish with one sending instruction, or even use
  1925. dedicated functions that read directly from a file. The internal facility
  1926. will take care of any speed and congestion control. When receiving, you
  1927. can also receive as many data as desired, the data not extracted will be
  1928. waiting for the next call. There is no boundary between data portions in
  1929. the Stream mode.
  1930. </p>
  1931. <p>Message API. In this mode your single sending instruction passes exactly
  1932. one piece of data that has boundaries (a message). Contrary to Live mode,
  1933. this message may span across multiple UDP packets and the only size
  1934. limitation is that it shall fit as a whole in the sending buffer. The
  1935. receiver shall use as large buffer as necessary to receive the message,
  1936. otherwise the message will not be given up. When the message is not
  1937. complete (not all packets received or there was a packet loss) it will
  1938. not be given up.
  1939. </p>
  1940. </dd>
  1941. <dt><samp class="option">transtype=<var class="var">live|file</var></samp></dt>
  1942. <dd><p>Sets the transmission type for the socket, in particular, setting this
  1943. option sets multiple other parameters to their default values as required
  1944. for a particular transmission type.
  1945. </p>
  1946. <p>live: Set options as for live transmission. In this mode, you should
  1947. send by one sending instruction only so many data that fit in one UDP packet,
  1948. and limited to the value defined first in <samp class="option">payload_size</samp> (1316 is
  1949. default in this mode). There is no speed control in this mode, only the
  1950. bandwidth control, if configured, in order to not exceed the bandwidth with
  1951. the overhead transmission (retransmitted and control packets).
  1952. </p>
  1953. <p>file: Set options as for non-live transmission. See <samp class="option">messageapi</samp>
  1954. for further explanations
  1955. </p>
  1956. </dd>
  1957. <dt><samp class="option">linger=<var class="var">seconds</var></samp></dt>
  1958. <dd><p>The number of seconds that the socket waits for unsent data when closing.
  1959. Default is -1. -1 means auto (off with 0 seconds in live mode, on with 180
  1960. seconds in file mode). The range for this option is integers in the
  1961. 0 - <code class="code">INT_MAX</code>.
  1962. </p>
  1963. </dd>
  1964. <dt><samp class="option">tsbpd=<var class="var">1|0</var></samp></dt>
  1965. <dd><p>When true, use Timestamp-based Packet Delivery mode. The default behavior
  1966. depends on the transmission type: enabled in live mode, disabled in file
  1967. mode.
  1968. </p>
  1969. </dd>
  1970. </dl>
  1971. <p>For more information see: <a class="url" href="https://github.com/Haivision/srt">https://github.com/Haivision/srt</a>.
  1972. </p>
  1973. </div>
  1974. <div class="section-level-extent" id="srtp">
  1975. <h3 class="section"><span>3.37 srtp<a class="copiable-link" href="#srtp"> &para;</a></span></h3>
  1976. <p>Secure Real-time Transport Protocol.
  1977. </p>
  1978. <p>The accepted options are:
  1979. </p><dl class="table">
  1980. <dt><samp class="option">srtp_in_suite</samp></dt>
  1981. <dt><samp class="option">srtp_out_suite</samp></dt>
  1982. <dd><p>Select input and output encoding suites.
  1983. </p>
  1984. <p>Supported values:
  1985. </p><dl class="table">
  1986. <dt>&lsquo;<samp class="samp">AES_CM_128_HMAC_SHA1_80</samp>&rsquo;</dt>
  1987. <dt>&lsquo;<samp class="samp">SRTP_AES128_CM_HMAC_SHA1_80</samp>&rsquo;</dt>
  1988. <dt>&lsquo;<samp class="samp">AES_CM_128_HMAC_SHA1_32</samp>&rsquo;</dt>
  1989. <dt>&lsquo;<samp class="samp">SRTP_AES128_CM_HMAC_SHA1_32</samp>&rsquo;</dt>
  1990. </dl>
  1991. </dd>
  1992. <dt><samp class="option">srtp_in_params</samp></dt>
  1993. <dt><samp class="option">srtp_out_params</samp></dt>
  1994. <dd><p>Set input and output encoding parameters, which are expressed by a
  1995. base64-encoded representation of a binary block. The first 16 bytes of
  1996. this binary block are used as master key, the following 14 bytes are
  1997. used as master salt.
  1998. </p></dd>
  1999. </dl>
  2000. </div>
  2001. <div class="section-level-extent" id="subfile">
  2002. <h3 class="section"><span>3.38 subfile<a class="copiable-link" href="#subfile"> &para;</a></span></h3>
  2003. <p>Virtually extract a segment of a file or another stream.
  2004. The underlying stream must be seekable.
  2005. </p>
  2006. <p>Accepted options:
  2007. </p><dl class="table">
  2008. <dt><samp class="option">start</samp></dt>
  2009. <dd><p>Start offset of the extracted segment, in bytes.
  2010. </p></dd>
  2011. <dt><samp class="option">end</samp></dt>
  2012. <dd><p>End offset of the extracted segment, in bytes.
  2013. If set to 0, extract till end of file.
  2014. </p></dd>
  2015. </dl>
  2016. <p>Examples:
  2017. </p>
  2018. <p>Extract a chapter from a DVD VOB file (start and end sectors obtained
  2019. externally and multiplied by 2048):
  2020. </p><div class="example">
  2021. <pre class="example-preformatted">subfile,,start,153391104,end,268142592,,:/media/dvd/VIDEO_TS/VTS_08_1.VOB
  2022. </pre></div>
  2023. <p>Play an AVI file directly from a TAR archive:
  2024. </p><div class="example">
  2025. <pre class="example-preformatted">subfile,,start,183241728,end,366490624,,:archive.tar
  2026. </pre></div>
  2027. <p>Play a MPEG-TS file from start offset till end:
  2028. </p><div class="example">
  2029. <pre class="example-preformatted">subfile,,start,32815239,end,0,,:video.ts
  2030. </pre></div>
  2031. </div>
  2032. <div class="section-level-extent" id="tee">
  2033. <h3 class="section"><span>3.39 tee<a class="copiable-link" href="#tee"> &para;</a></span></h3>
  2034. <p>Writes the output to multiple protocols. The individual outputs are separated
  2035. by |
  2036. </p>
  2037. <div class="example">
  2038. <pre class="example-preformatted">tee:file://path/to/local/this.avi|file://path/to/local/that.avi
  2039. </pre></div>
  2040. </div>
  2041. <div class="section-level-extent" id="tcp">
  2042. <h3 class="section"><span>3.40 tcp<a class="copiable-link" href="#tcp"> &para;</a></span></h3>
  2043. <p>Transmission Control Protocol.
  2044. </p>
  2045. <p>The required syntax for a TCP url is:
  2046. </p><div class="example">
  2047. <pre class="example-preformatted">tcp://<var class="var">hostname</var>:<var class="var">port</var>[?<var class="var">options</var>]
  2048. </pre></div>
  2049. <p><var class="var">options</var> contains a list of &amp;-separated options of the form
  2050. <var class="var">key</var>=<var class="var">val</var>.
  2051. </p>
  2052. <p>The list of supported options follows.
  2053. </p>
  2054. <dl class="table">
  2055. <dt><samp class="option">listen=<var class="var">2|1|0</var></samp></dt>
  2056. <dd><p>Listen for an incoming connection. 0 disables listen, 1 enables listen in
  2057. single client mode, 2 enables listen in multi-client mode. Default value is 0.
  2058. </p>
  2059. </dd>
  2060. <dt><samp class="option">timeout=<var class="var">microseconds</var></samp></dt>
  2061. <dd><p>Set raise error timeout, expressed in microseconds.
  2062. </p>
  2063. <p>This option is only relevant in read mode: if no data arrived in more
  2064. than this time interval, raise error.
  2065. </p>
  2066. </dd>
  2067. <dt><samp class="option">listen_timeout=<var class="var">milliseconds</var></samp></dt>
  2068. <dd><p>Set listen timeout, expressed in milliseconds.
  2069. </p>
  2070. </dd>
  2071. <dt><samp class="option">recv_buffer_size=<var class="var">bytes</var></samp></dt>
  2072. <dd><p>Set receive buffer size, expressed bytes.
  2073. </p>
  2074. </dd>
  2075. <dt><samp class="option">send_buffer_size=<var class="var">bytes</var></samp></dt>
  2076. <dd><p>Set send buffer size, expressed bytes.
  2077. </p>
  2078. </dd>
  2079. <dt><samp class="option">tcp_nodelay=<var class="var">1|0</var></samp></dt>
  2080. <dd><p>Set TCP_NODELAY to disable Nagle&rsquo;s algorithm. Default value is 0.
  2081. </p>
  2082. <p><em class="emph">Remark: Writing to the socket is currently not optimized to minimize system calls and reduces the efficiency / effect of TCP_NODELAY.</em>
  2083. </p>
  2084. </dd>
  2085. <dt><samp class="option">tcp_mss=<var class="var">bytes</var></samp></dt>
  2086. <dd><p>Set maximum segment size for outgoing TCP packets, expressed in bytes.
  2087. </p></dd>
  2088. </dl>
  2089. <p>The following example shows how to setup a listening TCP connection
  2090. with <code class="command">ffmpeg</code>, which is then accessed with <code class="command">ffplay</code>:
  2091. </p><div class="example">
  2092. <pre class="example-preformatted">ffmpeg -i <var class="var">input</var> -f <var class="var">format</var> tcp://<var class="var">hostname</var>:<var class="var">port</var>?listen
  2093. ffplay tcp://<var class="var">hostname</var>:<var class="var">port</var>
  2094. </pre></div>
  2095. </div>
  2096. <div class="section-level-extent" id="tls">
  2097. <h3 class="section"><span>3.41 tls<a class="copiable-link" href="#tls"> &para;</a></span></h3>
  2098. <p>Transport Layer Security (TLS) / Secure Sockets Layer (SSL)
  2099. </p>
  2100. <p>The required syntax for a TLS/SSL url is:
  2101. </p><div class="example">
  2102. <pre class="example-preformatted">tls://<var class="var">hostname</var>:<var class="var">port</var>[?<var class="var">options</var>]
  2103. </pre></div>
  2104. <p>The following parameters can be set via command line options
  2105. (or in code via <code class="code">AVOption</code>s):
  2106. </p>
  2107. <dl class="table">
  2108. <dt><samp class="option">ca_file, cafile=<var class="var">filename</var></samp></dt>
  2109. <dd><p>A file containing certificate authority (CA) root certificates to treat
  2110. as trusted. If the linked TLS library contains a default this might not
  2111. need to be specified for verification to work, but not all libraries and
  2112. setups have defaults built in.
  2113. The file must be in OpenSSL PEM format.
  2114. </p>
  2115. </dd>
  2116. <dt><samp class="option">tls_verify=<var class="var">1|0</var></samp></dt>
  2117. <dd><p>If enabled, try to verify the peer that we are communicating with.
  2118. Note, if using OpenSSL, this currently only makes sure that the
  2119. peer certificate is signed by one of the root certificates in the CA
  2120. database, but it does not validate that the certificate actually
  2121. matches the host name we are trying to connect to. (With other backends,
  2122. the host name is validated as well.)
  2123. </p>
  2124. <p>This is disabled by default since it requires a CA database to be
  2125. provided by the caller in many cases.
  2126. </p>
  2127. </dd>
  2128. <dt><samp class="option">cert_file, cert=<var class="var">filename</var></samp></dt>
  2129. <dd><p>A file containing a certificate to use in the handshake with the peer.
  2130. (When operating as server, in listen mode, this is more often required
  2131. by the peer, while client certificates only are mandated in certain
  2132. setups.)
  2133. </p>
  2134. </dd>
  2135. <dt><samp class="option">key_file, key=<var class="var">filename</var></samp></dt>
  2136. <dd><p>A file containing the private key for the certificate.
  2137. </p>
  2138. </dd>
  2139. <dt><samp class="option">listen=<var class="var">1|0</var></samp></dt>
  2140. <dd><p>If enabled, listen for connections on the provided port, and assume
  2141. the server role in the handshake instead of the client role.
  2142. </p>
  2143. </dd>
  2144. <dt><samp class="option">http_proxy</samp></dt>
  2145. <dd><p>The HTTP proxy to tunnel through, e.g. <code class="code">http://example.com:1234</code>.
  2146. The proxy must support the CONNECT method.
  2147. </p>
  2148. </dd>
  2149. </dl>
  2150. <p>Example command lines:
  2151. </p>
  2152. <p>To create a TLS/SSL server that serves an input stream.
  2153. </p>
  2154. <div class="example">
  2155. <pre class="example-preformatted">ffmpeg -i <var class="var">input</var> -f <var class="var">format</var> tls://<var class="var">hostname</var>:<var class="var">port</var>?listen&amp;cert=<var class="var">server.crt</var>&amp;key=<var class="var">server.key</var>
  2156. </pre></div>
  2157. <p>To play back a stream from the TLS/SSL server using <code class="command">ffplay</code>:
  2158. </p>
  2159. <div class="example">
  2160. <pre class="example-preformatted">ffplay tls://<var class="var">hostname</var>:<var class="var">port</var>
  2161. </pre></div>
  2162. </div>
  2163. <div class="section-level-extent" id="udp">
  2164. <h3 class="section"><span>3.42 udp<a class="copiable-link" href="#udp"> &para;</a></span></h3>
  2165. <p>User Datagram Protocol.
  2166. </p>
  2167. <p>The required syntax for an UDP URL is:
  2168. </p><div class="example">
  2169. <pre class="example-preformatted">udp://<var class="var">hostname</var>:<var class="var">port</var>[?<var class="var">options</var>]
  2170. </pre></div>
  2171. <p><var class="var">options</var> contains a list of &amp;-separated options of the form <var class="var">key</var>=<var class="var">val</var>.
  2172. </p>
  2173. <p>In case threading is enabled on the system, a circular buffer is used
  2174. to store the incoming data, which allows one to reduce loss of data due to
  2175. UDP socket buffer overruns. The <var class="var">fifo_size</var> and
  2176. <var class="var">overrun_nonfatal</var> options are related to this buffer.
  2177. </p>
  2178. <p>The list of supported options follows.
  2179. </p>
  2180. <dl class="table">
  2181. <dt><samp class="option">buffer_size=<var class="var">size</var></samp></dt>
  2182. <dd><p>Set the UDP maximum socket buffer size in bytes. This is used to set either
  2183. the receive or send buffer size, depending on what the socket is used for.
  2184. Default is 32 KB for output, 384 KB for input. See also <var class="var">fifo_size</var>.
  2185. </p>
  2186. </dd>
  2187. <dt><samp class="option">bitrate=<var class="var">bitrate</var></samp></dt>
  2188. <dd><p>If set to nonzero, the output will have the specified constant bitrate if the
  2189. input has enough packets to sustain it.
  2190. </p>
  2191. </dd>
  2192. <dt><samp class="option">burst_bits=<var class="var">bits</var></samp></dt>
  2193. <dd><p>When using <var class="var">bitrate</var> this specifies the maximum number of bits in
  2194. packet bursts.
  2195. </p>
  2196. </dd>
  2197. <dt><samp class="option">localport=<var class="var">port</var></samp></dt>
  2198. <dd><p>Override the local UDP port to bind with.
  2199. </p>
  2200. </dd>
  2201. <dt><samp class="option">localaddr=<var class="var">addr</var></samp></dt>
  2202. <dd><p>Local IP address of a network interface used for sending packets or joining
  2203. multicast groups.
  2204. </p>
  2205. </dd>
  2206. <dt><samp class="option">pkt_size=<var class="var">size</var></samp></dt>
  2207. <dd><p>Set the size in bytes of UDP packets.
  2208. </p>
  2209. </dd>
  2210. <dt><samp class="option">reuse=<var class="var">1|0</var></samp></dt>
  2211. <dd><p>Explicitly allow or disallow reusing UDP sockets.
  2212. </p>
  2213. </dd>
  2214. <dt><samp class="option">ttl=<var class="var">ttl</var></samp></dt>
  2215. <dd><p>Set the time to live value (for multicast only).
  2216. </p>
  2217. </dd>
  2218. <dt><samp class="option">connect=<var class="var">1|0</var></samp></dt>
  2219. <dd><p>Initialize the UDP socket with <code class="code">connect()</code>. In this case, the
  2220. destination address can&rsquo;t be changed with ff_udp_set_remote_url later.
  2221. If the destination address isn&rsquo;t known at the start, this option can
  2222. be specified in ff_udp_set_remote_url, too.
  2223. This allows finding out the source address for the packets with getsockname,
  2224. and makes writes return with AVERROR(ECONNREFUSED) if &quot;destination
  2225. unreachable&quot; is received.
  2226. For receiving, this gives the benefit of only receiving packets from
  2227. the specified peer address/port.
  2228. </p>
  2229. </dd>
  2230. <dt><samp class="option">sources=<var class="var">address</var>[,<var class="var">address</var>]</samp></dt>
  2231. <dd><p>Only receive packets sent from the specified addresses. In case of multicast,
  2232. also subscribe to multicast traffic coming from these addresses only.
  2233. </p>
  2234. </dd>
  2235. <dt><samp class="option">block=<var class="var">address</var>[,<var class="var">address</var>]</samp></dt>
  2236. <dd><p>Ignore packets sent from the specified addresses. In case of multicast, also
  2237. exclude the source addresses in the multicast subscription.
  2238. </p>
  2239. </dd>
  2240. <dt><samp class="option">fifo_size=<var class="var">units</var></samp></dt>
  2241. <dd><p>Set the UDP receiving circular buffer size, expressed as a number of
  2242. packets with size of 188 bytes. If not specified defaults to 7*4096.
  2243. </p>
  2244. </dd>
  2245. <dt><samp class="option">overrun_nonfatal=<var class="var">1|0</var></samp></dt>
  2246. <dd><p>Survive in case of UDP receiving circular buffer overrun. Default
  2247. value is 0.
  2248. </p>
  2249. </dd>
  2250. <dt><samp class="option">timeout=<var class="var">microseconds</var></samp></dt>
  2251. <dd><p>Set raise error timeout, expressed in microseconds.
  2252. </p>
  2253. <p>This option is only relevant in read mode: if no data arrived in more
  2254. than this time interval, raise error.
  2255. </p>
  2256. </dd>
  2257. <dt><samp class="option">broadcast=<var class="var">1|0</var></samp></dt>
  2258. <dd><p>Explicitly allow or disallow UDP broadcasting.
  2259. </p>
  2260. <p>Note that broadcasting may not work properly on networks having
  2261. a broadcast storm protection.
  2262. </p></dd>
  2263. </dl>
  2264. <ul class="mini-toc">
  2265. <li><a href="#Examples-1" accesskey="1">Examples</a></li>
  2266. </ul>
  2267. <div class="subsection-level-extent" id="Examples-1">
  2268. <h4 class="subsection"><span>3.42.1 Examples<a class="copiable-link" href="#Examples-1"> &para;</a></span></h4>
  2269. <ul class="itemize mark-bullet">
  2270. <li>Use <code class="command">ffmpeg</code> to stream over UDP to a remote endpoint:
  2271. <div class="example">
  2272. <pre class="example-preformatted">ffmpeg -i <var class="var">input</var> -f <var class="var">format</var> udp://<var class="var">hostname</var>:<var class="var">port</var>
  2273. </pre></div>
  2274. </li><li>Use <code class="command">ffmpeg</code> to stream in mpegts format over UDP using 188
  2275. sized UDP packets, using a large input buffer:
  2276. <div class="example">
  2277. <pre class="example-preformatted">ffmpeg -i <var class="var">input</var> -f mpegts udp://<var class="var">hostname</var>:<var class="var">port</var>?pkt_size=188&amp;buffer_size=65535
  2278. </pre></div>
  2279. </li><li>Use <code class="command">ffmpeg</code> to receive over UDP from a remote endpoint:
  2280. <div class="example">
  2281. <pre class="example-preformatted">ffmpeg -i udp://[<var class="var">multicast-address</var>]:<var class="var">port</var> ...
  2282. </pre></div>
  2283. </li></ul>
  2284. </div>
  2285. </div>
  2286. <div class="section-level-extent" id="unix">
  2287. <h3 class="section"><span>3.43 unix<a class="copiable-link" href="#unix"> &para;</a></span></h3>
  2288. <p>Unix local socket
  2289. </p>
  2290. <p>The required syntax for a Unix socket URL is:
  2291. </p>
  2292. <div class="example">
  2293. <pre class="example-preformatted">unix://<var class="var">filepath</var>
  2294. </pre></div>
  2295. <p>The following parameters can be set via command line options
  2296. (or in code via <code class="code">AVOption</code>s):
  2297. </p>
  2298. <dl class="table">
  2299. <dt><samp class="option">timeout</samp></dt>
  2300. <dd><p>Timeout in ms.
  2301. </p></dd>
  2302. <dt><samp class="option">listen</samp></dt>
  2303. <dd><p>Create the Unix socket in listening mode.
  2304. </p></dd>
  2305. </dl>
  2306. </div>
  2307. <div class="section-level-extent" id="zmq">
  2308. <h3 class="section"><span>3.44 zmq<a class="copiable-link" href="#zmq"> &para;</a></span></h3>
  2309. <p>ZeroMQ asynchronous messaging using the libzmq library.
  2310. </p>
  2311. <p>This library supports unicast streaming to multiple clients without relying on
  2312. an external server.
  2313. </p>
  2314. <p>The required syntax for streaming or connecting to a stream is:
  2315. </p><div class="example">
  2316. <pre class="example-preformatted">zmq:tcp://ip-address:port
  2317. </pre></div>
  2318. <p>Example:
  2319. Create a localhost stream on port 5555:
  2320. </p><div class="example">
  2321. <pre class="example-preformatted">ffmpeg -re -i input -f mpegts zmq:tcp://127.0.0.1:5555
  2322. </pre></div>
  2323. <p>Multiple clients may connect to the stream using:
  2324. </p><div class="example">
  2325. <pre class="example-preformatted">ffplay zmq:tcp://127.0.0.1:5555
  2326. </pre></div>
  2327. <p>Streaming to multiple clients is implemented using a ZeroMQ Pub-Sub pattern.
  2328. The server side binds to a port and publishes data. Clients connect to the
  2329. server (via IP address/port) and subscribe to the stream. The order in which
  2330. the server and client start generally does not matter.
  2331. </p>
  2332. <p>ffmpeg must be compiled with the &ndash;enable-libzmq option to support
  2333. this protocol.
  2334. </p>
  2335. <p>Options can be set on the <code class="command">ffmpeg</code>/<code class="command">ffplay</code> command
  2336. line. The following options are supported:
  2337. </p>
  2338. <dl class="table">
  2339. <dt><samp class="option">pkt_size</samp></dt>
  2340. <dd><p>Forces the maximum packet size for sending/receiving data. The default value is
  2341. 131,072 bytes. On the server side, this sets the maximum size of sent packets
  2342. via ZeroMQ. On the clients, it sets an internal buffer size for receiving
  2343. packets. Note that pkt_size on the clients should be equal to or greater than
  2344. pkt_size on the server. Otherwise the received message may be truncated causing
  2345. decoding errors.
  2346. </p>
  2347. </dd>
  2348. </dl>
  2349. </div>
  2350. </div>
  2351. <div class="chapter-level-extent" id="See-Also">
  2352. <h2 class="chapter"><span>4 See Also<a class="copiable-link" href="#See-Also"> &para;</a></span></h2>
  2353. <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>,
  2354. <a class="url" href="libavformat.html">libavformat</a>
  2355. </p>
  2356. </div>
  2357. <div class="chapter-level-extent" id="Authors">
  2358. <h2 class="chapter"><span>5 Authors<a class="copiable-link" href="#Authors"> &para;</a></span></h2>
  2359. <p>The FFmpeg developers.
  2360. </p>
  2361. <p>For details about the authorship, see the Git history of the project
  2362. (https://git.ffmpeg.org/ffmpeg), e.g. by typing the command
  2363. <code class="command">git log</code> in the FFmpeg source directory, or browsing the
  2364. online repository at <a class="url" href="https://git.ffmpeg.org/ffmpeg">https://git.ffmpeg.org/ffmpeg</a>.
  2365. </p>
  2366. <p>Maintainers for the specific components are listed in the file
  2367. <samp class="file">MAINTAINERS</samp> in the source code tree.
  2368. </p>
  2369. </div>
  2370. </div>
  2371. <p style="font-size: small;">
  2372. This document was generated using <a class="uref" href="https://www.gnu.org/software/texinfo/"><em class="emph">makeinfo</em></a>.
  2373. </p>
  2374. </div>
  2375. </body>
  2376. </html>