]> git.sesse.net Git - ffmpeg/blob - doc/protocols.texi
Fix compilation of dct-test on ia32.
[ffmpeg] / doc / protocols.texi
1 @chapter Protocols
2 @c man begin PROTOCOLS
3
4 Protocols are configured elements in FFmpeg which allow to access
5 resources which require the use of a particular protocol.
6
7 When you configure your FFmpeg build, all the supported protocols are
8 enabled by default. You can list all available ones using the
9 configure option "--list-protocols".
10
11 You can disable all the protocols using the configure option
12 "--disable-protocols", and selectively enable a protocol using the
13 option "--enable-protocol=@var{PROTOCOL}", or you can disable a
14 particular protocol using the option
15 "--disable-protocol=@var{PROTOCOL}".
16
17 The option "-protocols" of the ff* tools will display the list of
18 supported protocols.
19
20 A description of the currently available protocols follows.
21
22 @section applehttp
23
24 Read Apple HTTP Live Streaming compliant segmented stream as
25 a uniform one. The M3U8 playlists describing the segments can be
26 remote HTTP resources or local files, accessed using the standard
27 file protocol.
28 HTTP is default, specific protocol can be declared by specifying
29 "+@var{proto}" after the applehttp URI scheme name, where @var{proto}
30 is either "file" or "http".
31
32 @example
33 applehttp://host/path/to/remote/resource.m3u8
34 applehttp+http://host/path/to/remote/resource.m3u8
35 applehttp+file://path/to/local/resource.m3u8
36 @end example
37
38 @section concat
39
40 Physical concatenation protocol.
41
42 Allow to read and seek from many resource in sequence as if they were
43 a unique resource.
44
45 A URL accepted by this protocol has the syntax:
46 @example
47 concat:@var{URL1}|@var{URL2}|...|@var{URLN}
48 @end example
49
50 where @var{URL1}, @var{URL2}, ..., @var{URLN} are the urls of the
51 resource to be concatenated, each one possibly specifying a distinct
52 protocol.
53
54 For example to read a sequence of files @file{split1.mpeg},
55 @file{split2.mpeg}, @file{split3.mpeg} with @file{ffplay} use the
56 command:
57 @example
58 ffplay concat:split1.mpeg\|split2.mpeg\|split3.mpeg
59 @end example
60
61 Note that you may need to escape the character "|" which is special for
62 many shells.
63
64 @section file
65
66 File access protocol.
67
68 Allow to read from or read to a file.
69
70 For example to read from a file @file{input.mpeg} with @file{ffmpeg}
71 use the command:
72 @example
73 ffmpeg -i file:input.mpeg output.mpeg
74 @end example
75
76 The ff* tools default to the file protocol, that is a resource
77 specified with the name "FILE.mpeg" is interpreted as the URL
78 "file:FILE.mpeg".
79
80 @section gopher
81
82 Gopher protocol.
83
84 @section http
85
86 HTTP (Hyper Text Transfer Protocol).
87
88 @section mmst
89
90 MMS (Microsoft Media Server) protocol over TCP.
91
92 @section mmsh
93
94 MMS (Microsoft Media Server) protocol over HTTP.
95
96 The required syntax is:
97 @example
98 mmsh://@var{server}[:@var{port}][/@var{app}][/@var{playpath}]
99 @end example
100
101 @section md5
102
103 MD5 output protocol.
104
105 Computes the MD5 hash of the data to be written, and on close writes
106 this to the designated output or stdout if none is specified. It can
107 be used to test muxers without writing an actual file.
108
109 Some examples follow.
110 @example
111 # Write the MD5 hash of the encoded AVI file to the file output.avi.md5.
112 ffmpeg -i input.flv -f avi -y md5:output.avi.md5
113
114 # Write the MD5 hash of the encoded AVI file to stdout.
115 ffmpeg -i input.flv -f avi -y md5:
116 @end example
117
118 Note that some formats (typically MOV) require the output protocol to
119 be seekable, so they will fail with the MD5 output protocol.
120
121 @section pipe
122
123 UNIX pipe access protocol.
124
125 Allow to read and write from UNIX pipes.
126
127 The accepted syntax is:
128 @example
129 pipe:[@var{number}]
130 @end example
131
132 @var{number} is the number corresponding to the file descriptor of the
133 pipe (e.g. 0 for stdin, 1 for stdout, 2 for stderr).  If @var{number}
134 is not specified, by default the stdout file descriptor will be used
135 for writing, stdin for reading.
136
137 For example to read from stdin with @file{ffmpeg}:
138 @example
139 cat test.wav | ffmpeg -i pipe:0
140 # ...this is the same as...
141 cat test.wav | ffmpeg -i pipe:
142 @end example
143
144 For writing to stdout with @file{ffmpeg}:
145 @example
146 ffmpeg -i test.wav -f avi pipe:1 | cat > test.avi
147 # ...this is the same as...
148 ffmpeg -i test.wav -f avi pipe: | cat > test.avi
149 @end example
150
151 Note that some formats (typically MOV), require the output protocol to
152 be seekable, so they will fail with the pipe output protocol.
153
154 @section rtmp
155
156 Real-Time Messaging Protocol.
157
158 The Real-Time Messaging Protocol (RTMP) is used for streaming multimeā€
159 dia content across a TCP/IP network.
160
161 The required syntax is:
162 @example
163 rtmp://@var{server}[:@var{port}][/@var{app}][/@var{playpath}]
164 @end example
165
166 The accepted parameters are:
167 @table @option
168
169 @item server
170 The address of the RTMP server.
171
172 @item port
173 The number of the TCP port to use (by default is 1935).
174
175 @item app
176 It is the name of the application to access. It usually corresponds to
177 the path where the application is installed on the RTMP server
178 (e.g. @file{/ondemand/}, @file{/flash/live/}, etc.).
179
180 @item playpath
181 It is the path or name of the resource to play with reference to the
182 application specified in @var{app}, may be prefixed by "mp4:".
183
184 @end table
185
186 For example to read with @file{ffplay} a multimedia resource named
187 "sample" from the application "vod" from an RTMP server "myserver":
188 @example
189 ffplay rtmp://myserver/vod/sample
190 @end example
191
192 @section rtmp, rtmpe, rtmps, rtmpt, rtmpte
193
194 Real-Time Messaging Protocol and its variants supported through
195 librtmp.
196
197 Requires the presence of the librtmp headers and library during
198 configuration. You need to explicitely configure the build with
199 "--enable-librtmp". If enabled this will replace the native RTMP
200 protocol.
201
202 This protocol provides most client functions and a few server
203 functions needed to support RTMP, RTMP tunneled in HTTP (RTMPT),
204 encrypted RTMP (RTMPE), RTMP over SSL/TLS (RTMPS) and tunneled
205 variants of these encrypted types (RTMPTE, RTMPTS).
206
207 The required syntax is:
208 @example
209 @var{rtmp_proto}://@var{server}[:@var{port}][/@var{app}][/@var{playpath}] @var{options}
210 @end example
211
212 where @var{rtmp_proto} is one of the strings "rtmp", "rtmpt", "rtmpe",
213 "rtmps", "rtmpte", "rtmpts" corresponding to each RTMP variant, and
214 @var{server}, @var{port}, @var{app} and @var{playpath} have the same
215 meaning as specified for the RTMP native protocol.
216 @var{options} contains a list of space-separated options of the form
217 @var{key}=@var{val}.
218
219 See the librtmp manual page (man 3 librtmp) for more information.
220
221 For example, to stream a file in real-time to an RTMP server using
222 @file{ffmpeg}:
223 @example
224 ffmpeg -re -i myfile -f flv rtmp://myserver/live/mystream
225 @end example
226
227 To play the same stream using @file{ffplay}:
228 @example
229 ffplay "rtmp://myserver/live/mystream live=1"
230 @end example
231
232 @section rtp
233
234 Real-Time Protocol.
235
236 @section rtsp
237
238 RTSP is not technically a protocol handler in libavformat, it is a demuxer
239 and muxer. The demuxer supports both normal RTSP (with data transferred
240 over RTP; this is used by e.g. Apple and Microsoft) and Real-RTSP (with
241 data transferred over RDT).
242
243 The muxer can be used to send a stream using RTSP ANNOUNCE to a server
244 supporting it (currently Darwin Streaming Server and Mischa Spiegelmock's
245 @uref{http://github.com/revmischa/rtsp-server, RTSP server}).
246
247 The required syntax for a RTSP url is:
248 @example
249 rtsp://@var{hostname}[:@var{port}]/@var{path}
250 @end example
251
252 The following options (set on the @file{ffmpeg}/@file{ffplay} command
253 line, or set in code via @code{AVOption}s or in @code{avformat_open_input}),
254 are supported:
255
256 Flags for @code{rtsp_transport}:
257
258 @table @option
259
260 @item udp
261 Use UDP as lower transport protocol.
262
263 @item tcp
264 Use TCP (interleaving within the RTSP control channel) as lower
265 transport protocol.
266
267 @item udp_multicast
268 Use UDP multicast as lower transport protocol.
269
270 @item http
271 Use HTTP tunneling as lower transport protocol, which is useful for
272 passing proxies.
273 @end table
274
275 Multiple lower transport protocols may be specified, in that case they are
276 tried one at a time (if the setup of one fails, the next one is tried).
277 For the muxer, only the @code{tcp} and @code{udp} options are supported.
278
279 Flags for @code{rtsp_flags}:
280
281 @table @option
282 @item filter_src
283 Accept packets only from negotiated peer address and port.
284 @end table
285
286 When receiving data over UDP, the demuxer tries to reorder received packets
287 (since they may arrive out of order, or packets may get lost totally). In
288 order for this to be enabled, a maximum delay must be specified in the
289 @code{max_delay} field of AVFormatContext.
290
291 When watching multi-bitrate Real-RTSP streams with @file{ffplay}, the
292 streams to display can be chosen with @code{-vst} @var{n} and
293 @code{-ast} @var{n} for video and audio respectively, and can be switched
294 on the fly by pressing @code{v} and @code{a}.
295
296 Example command lines:
297
298 To watch a stream over UDP, with a max reordering delay of 0.5 seconds:
299
300 @example
301 ffplay -max_delay 500000 -rtsp_transport udp rtsp://server/video.mp4
302 @end example
303
304 To watch a stream tunneled over HTTP:
305
306 @example
307 ffplay -rtsp_transport http rtsp://server/video.mp4
308 @end example
309
310 To send a stream in realtime to a RTSP server, for others to watch:
311
312 @example
313 ffmpeg -re -i @var{input} -f rtsp -muxdelay 0.1 rtsp://server/live.sdp
314 @end example
315
316 @section sap
317
318 Session Announcement Protocol (RFC 2974). This is not technically a
319 protocol handler in libavformat, it is a muxer and demuxer.
320 It is used for signalling of RTP streams, by announcing the SDP for the
321 streams regularly on a separate port.
322
323 @subsection Muxer
324
325 The syntax for a SAP url given to the muxer is:
326 @example
327 sap://@var{destination}[:@var{port}][?@var{options}]
328 @end example
329
330 The RTP packets are sent to @var{destination} on port @var{port},
331 or to port 5004 if no port is specified.
332 @var{options} is a @code{&}-separated list. The following options
333 are supported:
334
335 @table @option
336
337 @item announce_addr=@var{address}
338 Specify the destination IP address for sending the announcements to.
339 If omitted, the announcements are sent to the commonly used SAP
340 announcement multicast address 224.2.127.254 (sap.mcast.net), or
341 ff0e::2:7ffe if @var{destination} is an IPv6 address.
342
343 @item announce_port=@var{port}
344 Specify the port to send the announcements on, defaults to
345 9875 if not specified.
346
347 @item ttl=@var{ttl}
348 Specify the time to live value for the announcements and RTP packets,
349 defaults to 255.
350
351 @item same_port=@var{0|1}
352 If set to 1, send all RTP streams on the same port pair. If zero (the
353 default), all streams are sent on unique ports, with each stream on a
354 port 2 numbers higher than the previous.
355 VLC/Live555 requires this to be set to 1, to be able to receive the stream.
356 The RTP stack in libavformat for receiving requires all streams to be sent
357 on unique ports.
358 @end table
359
360 Example command lines follow.
361
362 To broadcast a stream on the local subnet, for watching in VLC:
363
364 @example
365 ffmpeg -re -i @var{input} -f sap sap://224.0.0.255?same_port=1
366 @end example
367
368 Similarly, for watching in ffplay:
369
370 @example
371 ffmpeg -re -i @var{input} -f sap sap://224.0.0.255
372 @end example
373
374 And for watching in ffplay, over IPv6:
375
376 @example
377 ffmpeg -re -i @var{input} -f sap sap://[ff0e::1:2:3:4]
378 @end example
379
380 @subsection Demuxer
381
382 The syntax for a SAP url given to the demuxer is:
383 @example
384 sap://[@var{address}][:@var{port}]
385 @end example
386
387 @var{address} is the multicast address to listen for announcements on,
388 if omitted, the default 224.2.127.254 (sap.mcast.net) is used. @var{port}
389 is the port that is listened on, 9875 if omitted.
390
391 The demuxers listens for announcements on the given address and port.
392 Once an announcement is received, it tries to receive that particular stream.
393
394 Example command lines follow.
395
396 To play back the first stream announced on the normal SAP multicast address:
397
398 @example
399 ffplay sap://
400 @end example
401
402 To play back the first stream announced on one the default IPv6 SAP multicast address:
403
404 @example
405 ffplay sap://[ff0e::2:7ffe]
406 @end example
407
408 @section tcp
409
410 Trasmission Control Protocol.
411
412 The required syntax for a TCP url is:
413 @example
414 tcp://@var{hostname}:@var{port}[?@var{options}]
415 @end example
416
417 @table @option
418
419 @item listen
420 Listen for an incoming connection
421
422 @example
423 ffmpeg -i @var{input} -f @var{format} tcp://@var{hostname}:@var{port}?listen
424 ffplay tcp://@var{hostname}:@var{port}
425 @end example
426
427 @end table
428
429 @section udp
430
431 User Datagram Protocol.
432
433 The required syntax for a UDP url is:
434 @example
435 udp://@var{hostname}:@var{port}[?@var{options}]
436 @end example
437
438 @var{options} contains a list of &-seperated options of the form @var{key}=@var{val}.
439 Follow the list of supported options.
440
441 @table @option
442
443 @item buffer_size=@var{size}
444 set the UDP buffer size in bytes
445
446 @item localport=@var{port}
447 override the local UDP port to bind with
448
449 @item pkt_size=@var{size}
450 set the size in bytes of UDP packets
451
452 @item reuse=@var{1|0}
453 explicitly allow or disallow reusing UDP sockets
454
455 @item ttl=@var{ttl}
456 set the time to live value (for multicast only)
457
458 @item connect=@var{1|0}
459 Initialize the UDP socket with @code{connect()}. In this case, the
460 destination address can't be changed with ff_udp_set_remote_url later.
461 If the destination address isn't known at the start, this option can
462 be specified in ff_udp_set_remote_url, too.
463 This allows finding out the source address for the packets with getsockname,
464 and makes writes return with AVERROR(ECONNREFUSED) if "destination
465 unreachable" is received.
466 For receiving, this gives the benefit of only receiving packets from
467 the specified peer address/port.
468 @end table
469
470 Some usage examples of the udp protocol with @file{ffmpeg} follow.
471
472 To stream over UDP to a remote endpoint:
473 @example
474 ffmpeg -i @var{input} -f @var{format} udp://@var{hostname}:@var{port}
475 @end example
476
477 To stream in mpegts format over UDP using 188 sized UDP packets, using a large input buffer:
478 @example
479 ffmpeg -i @var{input} -f mpegts udp://@var{hostname}:@var{port}?pkt_size=188&buffer_size=65535
480 @end example
481
482 To receive over UDP from a remote endpoint:
483 @example
484 ffmpeg -i udp://[@var{multicast-address}]:@var{port}
485 @end example
486
487 @c man end PROTOCOLS