Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
FFMPEG-PROTOCOLS(1) | FFMPEG-PROTOCOLS(1) |
NAME
ffmpeg-protocols - FFmpeg protocolsDESCRIPTION
This document describes the input and output protocols provided by the libavformat library.PROTOCOL OPTIONS
The libavformat library provides some generic global options, which can be set on all the protocols. In addition each protocol may support so-called private options, which are specific for that component.- protocol_whitelist list (input)
- Set a ","-separated list of allowed protocols. "ALL" matches all protocols. Protocols prefixed by "-" are disabled. All protocols are allowed by default but protocols used by an another protocol (nested protocols) are restricted to a per protocol subset.
PROTOCOLS
Protocols are configured elements in FFmpeg that enable access to resources that require specific protocols.- rw_timeout
- Maximum time to wait for (network) read/write operations to complete, in microseconds.
amqp
Advanced Message Queueing Protocol (AMQP) version 0-9-1 is a broker based publish-subscribe communication protocol.ffmpeg -re -i input -f mpegts amqp://[[user]:[password]@]hostname[:port][/vhost]
ffplay amqp://[[user]:[password]@]hostname[:port][/vhost]
- exchange
- Sets the exchange to use on the broker. RabbitMQ has several predefined exchanges: "amq.direct" is the default exchange, where the publisher and subscriber must have a matching routing_key; "amq.fanout" is the same as a broadcast operation (i.e. the data is forwarded to all queues on the fanout exchange independent of the routing_key); and "amq.topic" is similar to "amq.direct", but allows for more complex pattern matching (refer to the RabbitMQ documentation).
- routing_key
- Sets the routing key. The default value is "amqp". The routing key is used on the "amq.direct" and "amq.topic" exchanges to decide whether packets are written to the queue of a subscriber.
- pkt_size
- Maximum size of each packet sent/received to the broker. Default is 131072. Minimum is 4096 and max is any large value (representable by an int). When receiving packets, this sets an internal buffer size in FFmpeg. It should be equal to or greater than the size of the published packets to the broker. Otherwise the received message may be truncated causing decoding errors.
- connection_timeout
- The timeout in seconds during the initial connection to the broker. The default value is rw_timeout, or 5 seconds if rw_timeout is not set.
- delivery_mode mode
- Sets the delivery mode of each message sent to broker. The following values are accepted:
- persistent
- Delivery mode set to "persistent" (2). This is the default value. Messages may be written to the broker's disk depending on its setup.
- non-persistent
- Delivery mode set to "non-persistent" (1). Messages will stay in broker's memory unless the broker is under memory pressure.
async
Asynchronous data filling wrapper for input stream.async:<URL>
async:http://host/resource
async:cache:http://host/resource
bluray
Read BluRay playlist.- angle
- BluRay angle
- chapter
- Start chapter (1...N)
- playlist
- Playlist to read (BDMV/PLAYLIST/?????.mpls)
bluray:/mnt/bluray
-playlist 4 -angle 2 -chapter 2 bluray:/mnt/bluray
cache
Caching wrapper for input stream.- read_ahead_limit
- Amount in bytes that may be read ahead when seeking isn't supported. Range is -1 to INT_MAX. -1 for unlimited. Default is 65536.
cache:<URL>
concat
Physical concatenation protocol.concat:<URL1>|<URL2>|...|<URLN>
ffplay concat:split1.mpeg\|split2.mpeg\|split3.mpeg
concatf
Physical concatenation protocol using a line break delimited list of resources.concatf:<URL>
ffplay concatf:split.txt
split1.mpeg
split2.mpeg
split3.mpeg
crypto
AES-encrypted stream reading protocol.- key
- Set the AES decryption key binary block from given hexadecimal representation.
- iv
- Set the AES decryption initialization vector binary block from given hexadecimal representation.
crypto:<URL>
crypto+<URL>
data
Data in-line in the URI. See < http://en.wikipedia.org/wiki/Data_URI_scheme>.ffmpeg -i "data:image/gif;base64,R0lGODdhCAAIAMIEAAAAAAAA//8AAP//AP///////////////ywAAAAACAAIAAADF0gEDLojDgdGiJdJqUX02iB4E8Q9jUMkADs=" smiley.png
fd
File descriptor access protocol.fd: -fd <file_descriptor>
- blocksize
- Set I/O operation maximum block size, in bytes. Default value is "INT_MAX", which results in not limiting the requested block size. Setting this value reasonably low improves user termination request reaction time, which is valuable if data transmission is slow.
- fd
- Set file descriptor.
file
File access protocol.file:<filename>
ffmpeg -i file:input.mpeg output.mpeg
- truncate
- Truncate existing files on write, if set to 1. A value of 0 prevents truncating. Default value is 1.
- blocksize
- Set I/O operation maximum block size, in bytes. Default value is "INT_MAX", which results in not limiting the requested block size. Setting this value reasonably low improves user termination request reaction time, which is valuable for files on slow medium.
- follow
- If set to 1, the protocol will retry reading at the end of the file, allowing reading files that still are being written. In order for this to terminate, you either need to use the rw_timeout option, or use the interrupt callback (for API users).
- seekable
-
Controls if seekability is advertised on the file. 0 means non-seekable, -1 means auto (seekable for normal files, non-seekable for named pipes).
ftp
FTP (File Transfer Protocol).ftp://[user[:password]@]server[:port]/path/to/remote/resource.mpeg
- timeout
- Set timeout in microseconds of socket I/O operations used by the underlying low level operation. By default it is set to -1, which means that the timeout is not specified.
- ftp-user
- Set a user to be used for authenticating to the FTP server. This is overridden by the user in the FTP URL.
- ftp-password
- Set a password to be used for authenticating to the FTP server. This is overridden by the password in the FTP URL, or by ftp-anonymous-password if no user is set.
- ftp-anonymous-password
- Password used when login as anonymous user. Typically an e-mail address should be used.
- ftp-write-seekable
- Control seekability of connection during encoding. If set to 1 the resource is supposed to be seekable, if set to 0 it is assumed not to be seekable. Default value is 0.
gopher
Gopher protocol.gophers
Gophers protocol.hls
Read Apple HTTP Live Streaming compliant segmented stream as a uniform one. The M3U8 playlists describing the segments can be remote HTTP resources or local files, accessed using the standard file protocol. The nested protocol is declared by specifying "+ proto" after the hls URI scheme name, where proto is either "file" or "http".hls+http://host/path/to/remote/resource.m3u8
hls+file://path/to/local/resource.m3u8
http
HTTP (Hyper Text Transfer Protocol).- seekable
- Control seekability of connection. If set to 1 the resource is supposed to be seekable, if set to 0 it is assumed not to be seekable, if set to -1 it will try to autodetect if it is seekable. Default value is -1.
- chunked_post
- If set to 1 use chunked Transfer-Encoding for posts, default is 1.
- content_type
- Set a specific content type for the POST messages or for listen mode.
- http_proxy
- set HTTP proxy to tunnel through e.g. http://example.com:1234
- headers
- Set custom HTTP headers, can override built in default headers. The value must be a string encoding the headers.
- multiple_requests
- Use persistent connections if set to 1, default is 0.
- post_data
- Set custom HTTP post data.
- referer
- Set the Referer header. Include 'Referer: URL' header in HTTP request.
- user_agent
- Override the User-Agent header. If not specified the protocol will use a string describing the libavformat build. ("Lavf/<version>")
- reconnect_at_eof
- If set then eof is treated like an error and causes reconnection, this is useful for live / endless streams.
- reconnect_streamed
- If set then even streamed/non seekable streams will be reconnected on errors.
- reconnect_on_network_error
- Reconnect automatically in case of TCP/TLS errors during connect.
- reconnect_on_http_error
- A comma separated list of HTTP status codes to reconnect on. The list can include specific status codes (e.g. '503') or the strings '4xx' / '5xx'.
- reconnect_delay_max
- Sets the maximum delay in seconds after which to give up reconnecting
- mime_type
- Export the MIME type.
- http_version
- Exports the HTTP response version number. Usually "1.0" or "1.1".
- icy
- If set to 1 request ICY (SHOUTcast) metadata from the server. If the server supports this, the metadata has to be retrieved by the application by reading the icy_metadata_headers and icy_metadata_packet options. The default is 1.
- icy_metadata_headers
- If the server supports ICY metadata, this contains the ICY-specific HTTP reply headers, separated by newline characters.
- icy_metadata_packet
- If the server supports ICY metadata, and icy was set to 1, this contains the last non-empty metadata packet sent by the server. It should be polled in regular intervals by applications interested in mid-stream metadata updates.
- cookies
- Set the cookies to be sent in future requests. The format of each cookie is the same as the value of a Set-Cookie HTTP response field. Multiple cookies can be delimited by a newline character.
- offset
- Set initial byte offset.
- end_offset
- Try to limit the request to bytes preceding this offset.
- method
-
When used as a client option it sets the HTTP method for the request.
- listen
-
If set to 1 enables experimental HTTP server. This can be used to send data when used as an output option, or read data from a client with HTTP POST when used as an input option. If set to 2 enables experimental multi-client HTTP server. This is not yet implemented in ffmpeg.c and thus must not be used as a command line option.
# Server side (sending):
ffmpeg -i somefile.ogg -c copy -listen 1 -f ogg http://<server>:<port>
# Client side (receiving):
ffmpeg -i http://<server>:<port> -c copy somefile.ogg
# Client can also be done with wget:
wget http://<server>:<port> -O somefile.ogg
# Server side (receiving):
ffmpeg -listen 1 -i http://<server>:<port> -c copy somefile.ogg
# Client side (sending):
ffmpeg -i somefile.ogg -chunked_post 0 -c copy -f ogg http://<server>:<port>
# Client can also be done with wget:
wget --post-file=somefile.ogg http://<server>:<port>
- send_expect_100
- Send an Expect: 100-continue header for POST. If set to 1 it will send, if set to 0 it won't, if set to -1 it will try to send if it is applicable. Default value is -1.
- auth_type
- Set HTTP authentication type. No option for Digest, since this method requires getting nonce parameters from the server first and can't be used straight away like Basic.
- none
- Choose the HTTP authentication type automatically. This is the default.
- basic
-
Choose the HTTP basic authentication.
ffplay -cookies "nlqptid=nltid=tsn; path=/; domain=somedomain.com;" http://somedomain.com/somestream.m3u8
Icecast
Icecast protocol (stream to Icecast servers)- ice_genre
- Set the stream genre.
- ice_name
- Set the stream name.
- ice_description
- Set the stream description.
- ice_url
- Set the stream website URL.
- ice_public
- Set if the stream should be public. The default is 0 (not public).
- user_agent
- Override the User-Agent header. If not specified a string of the form "Lavf/<version>" will be used.
- password
- Set the Icecast mountpoint password.
- content_type
- Set the stream content type. This must be set if it is different from audio/mpeg.
- legacy_icecast
- This enables support for Icecast versions < 2.4.0, that do not support the HTTP PUT method but the SOURCE method.
- tls
- Establish a TLS (HTTPS) connection to Icecast.
icecast://[<username>[:<password>]@]<server>:<port>/<mountpoint>
ipfs
InterPlanetary File System (IPFS) protocol support. One can access files stored on the IPFS network through so-called gateways. These are http(s) endpoints. This protocol wraps the IPFS native protocols (ipfs:// and ipns://) to be sent to such a gateway. Users can (and should) host their own node which means this protocol will use one's local gateway to access files on the IPFS network.- gateway
- Defines the gateway to use. When not set, the protocol will first try locating the local gateway by looking at $IPFS_GATEWAY, $IPFS_PATH and "$HOME/.ipfs/", in that order.
ffplay ipfs://<hash>
ffplay ipns://<hash>
mmst
MMS (Microsoft Media Server) protocol over TCP.mmsh
MMS (Microsoft Media Server) protocol over HTTP.mmsh://<server>[:<port>][/<app>][/<playpath>]
md5
MD5 output protocol.# Write the MD5 hash of the encoded AVI file to the file output.avi.md5.
ffmpeg -i input.flv -f avi -y md5:output.avi.md5
# Write the MD5 hash of the encoded AVI file to stdout.
ffmpeg -i input.flv -f avi -y md5:
pipe
UNIX pipe access protocol.pipe:[<number>]
cat test.wav | ffmpeg -i pipe:0
# ...this is the same as...
cat test.wav | ffmpeg -i pipe:
ffmpeg -i test.wav -f avi pipe:1 | cat > test.avi
# ...this is the same as...
ffmpeg -i test.wav -f avi pipe: | cat > test.avi
- blocksize
- Set I/O operation maximum block size, in bytes. Default value is "INT_MAX", which results in not limiting the requested block size. Setting this value reasonably low improves user termination request reaction time, which is valuable if data transmission is slow.
- fd
- Set file descriptor.
prompeg
Pro-MPEG Code of Practice #3 Release 2 FEC protocol.-f rtp_mpegts -fec prompeg=<option>=<val>... rtp://<hostname>:<port>
- l=n
- The number of columns (4-20, LxD <= 100)
- d=n
- The number of rows (4-20, LxD <= 100)
-f rtp_mpegts -fec prompeg=l=8:d=4 rtp://<hostname>:<port>
rist
Reliable Internet Streaming Transport protocol- rist_profile
- Supported values:
- simple
- main
- This one is default.
- advanced
- buffer_size
- Set internal RIST buffer size in milliseconds for retransmission of data. Default value is 0 which means the librist default (1 sec). Maximum value is 30 seconds.
- fifo_size
- Size of the librist receiver output fifo in number of packets. This must be a power of 2. Defaults to 8192 (vs the librist default of 1024).
- overrun_nonfatal=1|0
- Survive in case of librist fifo buffer overrun. Default value is 0.
- pkt_size
- Set maximum packet size for sending data. 1316 by default.
- log_level
- Set loglevel for RIST logging messages. You only need to set this if you explicitly want to enable debug level messages or packet loss simulation, otherwise the regular loglevel is respected.
- secret
- Set override of encryption secret, by default is unset.
- encryption
- Set encryption type, by default is disabled. Acceptable values are 128 and 256.
rtmp
Real-Time Messaging Protocol.rtmp://[<username>:<password>@]<server>[:<port>][/<app>][/<instance>][/<playpath>]
- username
- An optional username (mostly for publishing).
- password
- An optional password (mostly for publishing).
- server
- The address of the RTMP server.
- port
- The number of the TCP port to use (by default is 1935).
- app
- It is the name of the application to access. It usually corresponds to the path where the application is installed on the RTMP server (e.g. /ondemand/, /flash/live/, etc.). You can override the value parsed from the URI through the "rtmp_app" option, too.
- playpath
- It is the path or name of the resource to play with reference to the application specified in app, may be prefixed by "mp4:". You can override the value parsed from the URI through the "rtmp_playpath" option, too.
- listen
- Act as a server, listening for an incoming connection.
- timeout
- Maximum time to wait for the incoming connection. Implies listen.
- rtmp_app
- Name of application to connect on the RTMP server. This option overrides the parameter specified in the URI.
- rtmp_buffer
- Set the client buffer time in milliseconds. The default is 3000.
- rtmp_conn
- Extra arbitrary AMF connection parameters, parsed from a string, e.g. like "B:1 S:authMe O:1 NN:code:1.23 NS:flag:ok O:0". Each value is prefixed by a single character denoting the type, B for Boolean, N for number, S for string, O for object, or Z for null, followed by a colon. For Booleans the data must be either 0 or 1 for FALSE or TRUE, respectively. Likewise for Objects the data must be 0 or 1 to end or begin an object, respectively. Data items in subobjects may be named, by prefixing the type with 'N' and specifying the name before the value (i.e. "NB:myFlag:1"). This option may be used multiple times to construct arbitrary AMF sequences.
- rtmp_enhanced_codecs
- Specify the list of codecs the client advertises to support in an enhanced RTMP stream. This option should be set to a comma separated list of fourcc values, like "hvc1,av01,vp09" for multiple codecs or "hvc1" for only one codec. The specified list will be presented in the "fourCcLive" property of the Connect Command Message.
- rtmp_flashver
- Version of the Flash plugin used to run the SWF player. The default is LNX 9,0,124,2. (When publishing, the default is FMLE/3.0 (compatible; <libavformat version>).)
- rtmp_flush_interval
- Number of packets flushed in the same request (RTMPT only). The default is 10.
- rtmp_live
- Specify that the media is a live stream. No resuming or seeking in live streams is possible. The default value is "any", which means the subscriber first tries to play the live stream specified in the playpath. If a live stream of that name is not found, it plays the recorded stream. The other possible values are "live" and "recorded".
- rtmp_pageurl
- URL of the web page in which the media was embedded. By default no value will be sent.
- rtmp_playpath
- Stream identifier to play or to publish. This option overrides the parameter specified in the URI.
- rtmp_subscribe
- Name of live stream to subscribe to. By default no value will be sent. It is only sent if the option is specified or if rtmp_live is set to live.
- rtmp_swfhash
- SHA256 hash of the decompressed SWF file (32 bytes).
- rtmp_swfsize
- Size of the decompressed SWF file, required for SWFVerification.
- rtmp_swfurl
- URL of the SWF player for the media. By default no value will be sent.
- rtmp_swfverify
- URL to player swf file, compute hash/size automatically.
- rtmp_tcurl
- URL of the target stream. Defaults to proto://host[:port]/app.
- tcp_nodelay=1|0
-
Set TCP_NODELAY to disable Nagle's algorithm. Default value is 0.
ffplay rtmp://myserver/vod/sample
ffmpeg -re -i <input> -f flv -rtmp_playpath some/long/path -rtmp_app long/app/name rtmp://username:password@myserver/
rtmpe
Encrypted Real-Time Messaging Protocol.rtmps
Real-Time Messaging Protocol over a secure SSL connection.rtmpt
Real-Time Messaging Protocol tunneled through HTTP.rtmpte
Encrypted Real-Time Messaging Protocol tunneled through HTTP.rtmpts
Real-Time Messaging Protocol tunneled through HTTPS.libsmbclient
libsmbclient permits one to manipulate CIFS/SMB network resources.smb://[[domain:]user[:password@]]server[/share[/path[/file]]]
- timeout
- Set timeout in milliseconds of socket I/O operations used by the underlying low level operation. By default it is set to -1, which means that the timeout is not specified.
- truncate
- Truncate existing files on write, if set to 1. A value of 0 prevents truncating. Default value is 1.
- workgroup
- Set the workgroup used for making connections. By default workgroup is not specified.
libssh
Secure File Transfer Protocol via libsshsftp://[user[:password]@]server[:port]/path/to/remote/resource.mpeg
- timeout
- Set timeout of socket I/O operations used by the underlying low level operation. By default it is set to -1, which means that the timeout is not specified.
- truncate
- Truncate existing files on write, if set to 1. A value of 0 prevents truncating. Default value is 1.
- private_key
- Specify the path of the file containing private key to use during authorization. By default libssh searches for keys in the ~/.ssh/ directory.
ffplay sftp://user:password@server_address:22/home/user/resource.mpeg
librtmp rtmp, rtmpe, rtmps, rtmpt, rtmpte
Real-Time Messaging Protocol and its variants supported through librtmp.<rtmp_proto>://<server>[:<port>][/<app>][/<playpath>] <options>
ffmpeg -re -i myfile -f flv rtmp://myserver/live/mystream
ffplay "rtmp://myserver/live/mystream live=1"
rtp
Real-time Transport Protocol.- ttl=n
- Set the TTL (Time-To-Live) value (for multicast only).
- rtcpport=n
- Set the remote RTCP port to n.
- localrtpport=n
- Set the local RTP port to n.
- localrtcpport=n'
- Set the local RTCP port to n.
- pkt_size=n
- Set max packet size (in bytes) to n.
- buffer_size=size
- Set the maximum UDP socket buffer size in bytes.
- connect=0|1
- Do a "connect()" on the UDP socket (if set to 1) or not (if set to 0).
- sources=ip[,ip]
- List allowed source IP addresses.
- block=ip[,ip]
- List disallowed (blocked) source IP addresses.
- write_to_source=0|1
- Send packets to the source address of the latest received packet (if set to 1) or to a default remote address (if set to 0).
- localport=n
- Set the local RTP port to n.
- localaddr=addr
- Local IP address of a network interface used for sending packets or joining multicast groups.
- timeout=n
-
Set timeout (in microseconds) of socket I/O operations to n.
- 1.
- If rtcpport is not set the RTCP port will be set to the RTP port value plus 1.
- 2.
- If localrtpport (the local RTP port) is not set any available port will be used for the local RTP and RTCP ports.
- 3.
- If localrtcpport (the local RTCP port) is not set it will be set to the local RTP port value plus 1.
rtsp
Real-Time Streaming Protocol.rtsp://<hostname>[:<port>]/<path>
- rtsp_transport
-
Set RTSP transport protocols.
- udp
- Use UDP as lower transport protocol.
- tcp
- Use TCP (interleaving within the RTSP control channel) as lower transport protocol.
- rtsp_flags
-
Set RTSP flags.
- latm
- Use MP4A-LATM packetization instead of MPEG4-GENERIC for AAC.
- rfc2190
- Use RFC 2190 packetization instead of RFC 4629 for H.263.
- skip_rtcp
- Don't send RTCP sender reports.
- h264_mode0
- Use mode 0 for H.264 in RTP.
- send_bye
- Send RTCP BYE packets when finishing.
- min_port
- Set minimum local UDP port. Default value is 5000.
- max_port
- Set maximum local UDP port. Default value is 65000.
- buffer_size
- Set the maximum socket buffer size in bytes.
- pkt_size
- Set max send packet size (in bytes). Default value is 1472.
- initial_pause
- Do not start playing the stream immediately if set to 1. Default value is 0.
- rtsp_transport
-
Set RTSP transport protocols.
- udp
- Use UDP as lower transport protocol.
- tcp
- Use TCP (interleaving within the RTSP control channel) as lower transport protocol.
- udp_multicast
- Use UDP multicast as lower transport protocol.
- http
- Use HTTP tunneling as lower transport protocol, which is useful for passing proxies.
- https
- Use HTTPs tunneling as lower transport protocol, which is useful for passing proxies and widely used for security consideration.
- rtsp_flags
-
Set RTSP flags.
- filter_src
- Accept packets only from negotiated peer address and port.
- listen
- Act as a server, listening for an incoming connection.
- prefer_tcp
- Try TCP for RTP transport first, if TCP is available as RTSP RTP transport.
- satip_raw
- Export raw MPEG-TS stream instead of demuxing. The flag will simply write out the raw stream, with the original PAT/PMT/PIDs intact.
- allowed_media_types
-
Set media types to accept from the server.
- video
- audio
- data
- subtitle
- min_port
- Set minimum local UDP port. Default value is 5000.
- max_port
- Set maximum local UDP port. Default value is 65000.
- listen_timeout
- Set maximum timeout (in seconds) to establish an initial connection. Setting listen_timeout > 0 sets rtsp_flags to listen. Default is -1 which means an infinite timeout when listen mode is set.
- reorder_queue_size
- Set number of packets to buffer for handling of reordered packets.
- timeout
- Set socket TCP I/O timeout in microseconds.
- user_agent
- Override User-Agent header. If not specified, it defaults to the libavformat identifier string.
- buffer_size
- Set the maximum socket buffer size in bytes.
- •
-
Watch a stream over UDP, with a max reordering delay of 0.5 seconds:
ffplay -max_delay 500000 -rtsp_transport udp rtsp://server/video.mp4
- •
-
Watch a stream tunneled over HTTP:
ffplay -rtsp_transport http rtsp://server/video.mp4
- •
-
Send a stream in realtime to a RTSP server, for others to watch:
ffmpeg -re -i <input> -f rtsp -muxdelay 0.1 rtsp://server/live.sdp
- •
-
Receive a stream in realtime:
ffmpeg -rtsp_flags listen -i rtsp://ownaddress/live.sdp <output>
sap
Session Announcement Protocol (RFC 2974). This is not technically a protocol handler in libavformat, it is a muxer and demuxer. It is used for signalling of RTP streams, by announcing the SDP for the streams regularly on a separate port.sap://<destination>[:<port>][?<options>]
- announce_addr=address
- Specify the destination IP address for sending the announcements to. If omitted, the announcements are sent to the commonly used SAP announcement multicast address 224.2.127.254 (sap.mcast.net), or ff0e::2:7ffe if destination is an IPv6 address.
- announce_port=port
- Specify the port to send the announcements on, defaults to 9875 if not specified.
- ttl=ttl
- Specify the time to live value for the announcements and RTP packets, defaults to 255.
- same_port=0|1
- If set to 1, send all RTP streams on the same port pair. If zero (the default), all streams are sent on unique ports, with each stream on a port 2 numbers higher than the previous. VLC/Live555 requires this to be set to 1, to be able to receive the stream. The RTP stack in libavformat for receiving requires all streams to be sent on unique ports.
ffmpeg -re -i <input> -f sap sap://224.0.0.255?same_port=1
ffmpeg -re -i <input> -f sap sap://224.0.0.255
ffmpeg -re -i <input> -f sap sap://[ff0e::1:2:3:4]
sap://[<address>][:<port>]
ffplay sap://
ffplay sap://[ff0e::2:7ffe]
sctp
Stream Control Transmission Protocol.sctp://<host>:<port>[?<options>]
- listen
- If set to any value, listen for an incoming connection. Outgoing connection is done by default.
- max_streams
- Set the maximum number of streams. By default no limit is set.
srt
Haivision Secure Reliable Transport Protocol via libsrt.srt://<hostname>:<port>[?<options>]
<options> srt://<hostname>:<port>
- connect_timeout=milliseconds
- Connection timeout; SRT cannot connect for RTT > 1500 msec (2 handshake exchanges) with the default connect timeout of 3 seconds. This option applies to the caller and rendezvous connection modes. The connect timeout is 10 times the value set for the rendezvous mode (which can be used as a workaround for this connection problem with earlier versions).
- ffs=bytes
- Flight Flag Size (Window Size), in bytes. FFS is actually an internal parameter and you should set it to not less than recv_buffer_size and mss. The default value is relatively large, therefore unless you set a very large receiver buffer, you do not need to change this option. Default value is 25600.
- inputbw=bytes/seconds
- Sender nominal input rate, in bytes per seconds. Used along with oheadbw, when maxbw is set to relative (0), to calculate maximum sending rate when recovery packets are sent along with the main media stream: inputbw * (100 + oheadbw) / 100 if inputbw is not set while maxbw is set to relative (0), the actual input rate is evaluated inside the library. Default value is 0.
- iptos=tos
- IP Type of Service. Applies to sender only. Default value is 0xB8.
- ipttl=ttl
- IP Time To Live. Applies to sender only. Default value is 64.
- latency=microseconds
- Timestamp-based Packet Delivery Delay. Used to absorb bursts of missed packet retransmissions. This flag sets both rcvlatency and peerlatency to the same value. Note that prior to version 1.3.0 this is the only flag to set the latency, however this is effectively equivalent to setting peerlatency, when side is sender and rcvlatency when side is receiver, and the bidirectional stream sending is not supported.
- listen_timeout=microseconds
- Set socket listen timeout.
- maxbw=bytes/seconds
- Maximum sending bandwidth, in bytes per seconds. -1 infinite (CSRTCC limit is 30mbps) 0 relative to input rate (see inputbw) >0 absolute limit value Default value is 0 (relative)
- mode=caller|listener|rendezvous
- Connection mode. caller opens client connection. listener starts server to listen for incoming connections. rendezvous use Rendez-Vous connection mode. Default value is caller.
- mss=bytes
- Maximum Segment Size, in bytes. Used for buffer allocation and rate calculation using a packet counter assuming fully filled packets. The smallest MSS between the peers is used. This is 1500 by default in the overall internet. This is the maximum size of the UDP packet and can be only decreased, unless you have some unusual dedicated network settings. Default value is 1500.
- nakreport=1|0
- If set to 1, Receiver will send `UMSG_LOSSREPORT` messages periodically until a lost packet is retransmitted or intentionally dropped. Default value is 1.
- oheadbw=percents
- Recovery bandwidth overhead above input rate, in percents. See inputbw. Default value is 25%.
- passphrase=string
- HaiCrypt Encryption/Decryption Passphrase string, length from 10 to 79 characters. The passphrase is the shared secret between the sender and the receiver. It is used to generate the Key Encrypting Key using PBKDF2 (Password-Based Key Derivation Function). It is used only if pbkeylen is non-zero. It is used on the receiver only if the received data is encrypted. The configured passphrase cannot be recovered (write-only).
- enforced_encryption=1|0
- If true, both connection parties must have the same password set (including empty, that is, with no encryption). If the password doesn't match or only one side is unencrypted, the connection is rejected. Default is true.
- kmrefreshrate=packets
- The number of packets to be transmitted after which the encryption key is switched to a new key. Default is -1. -1 means auto (0x1000000 in srt library). The range for this option is integers in the 0 - "INT_MAX".
- kmpreannounce=packets
- The interval between when a new encryption key is sent and when switchover occurs. This value also applies to the subsequent interval between when switchover occurs and when the old encryption key is decommissioned. Default is -1. -1 means auto (0x1000 in srt library). The range for this option is integers in the 0 - "INT_MAX".
- snddropdelay=microseconds
-
The sender's extra delay before dropping packets. This delay is added to the default drop delay time interval value.
- payload_size=bytes
- Sets the maximum declared size of a packet transferred during the single call to the sending function in Live mode. Use 0 if this value isn't used (which is default in file mode). Default is -1 (automatic), which typically means MPEG-TS; if you are going to use SRT to send any different kind of payload, such as, for example, wrapping a live stream in very small frames, then you can use a bigger maximum frame size, though not greater than 1456 bytes.
- pkt_size=bytes
- Alias for payload_size.
- peerlatency=microseconds
- The latency value (as described in rcvlatency) that is set by the sender side as a minimum value for the receiver.
- pbkeylen=bytes
- Sender encryption key length, in bytes. Only can be set to 0, 16, 24 and 32. Enable sender encryption if not 0. Not required on receiver (set to 0), key size obtained from sender in HaiCrypt handshake. Default value is 0.
- rcvlatency=microseconds
- The time that should elapse since the moment when the packet was sent and the moment when it's delivered to the receiver application in the receiving function. This time should be a buffer time large enough to cover the time spent for sending, unexpectedly extended RTT time, and the time needed to retransmit the lost UDP packet. The effective latency value will be the maximum of this options' value and the value of peerlatency set by the peer side. Before version 1.3.0 this option is only available as latency.
- recv_buffer_size=bytes
- Set UDP receive buffer size, expressed in bytes.
- send_buffer_size=bytes
- Set UDP send buffer size, expressed in bytes.
- timeout=microseconds
- Set raise error timeouts for read, write and connect operations. Note that the SRT library has internal timeouts which can be controlled separately, the value set here is only a cap on those.
- tlpktdrop=1|0
- Too-late Packet Drop. When enabled on receiver, it skips missing packets that have not been delivered in time and delivers the following packets to the application when their time-to-play has come. It also sends a fake ACK to the sender. When enabled on sender and enabled on the receiving peer, the sender drops the older packets that have no chance of being delivered in time. It was automatically enabled in the sender if the receiver supports it.
- sndbuf=bytes
- Set send buffer size, expressed in bytes.
- rcvbuf=bytes
-
Set receive buffer size, expressed in bytes.
- lossmaxttl=packets
- The value up to which the Reorder Tolerance may grow. When Reorder Tolerance is > 0, then packet loss report is delayed until that number of packets come in. Reorder Tolerance increases every time a "belated" packet has come, but it wasn't due to retransmission (that is, when UDP packets tend to come out of order), with the difference between the latest sequence and this packet's sequence, and not more than the value of this option. By default it's 0, which means that this mechanism is turned off, and the loss report is always sent immediately upon experiencing a "gap" in sequences.
- minversion
-
The minimum SRT version that is required from the peer. A connection to a peer that does not satisfy the minimum version requirement will be rejected.
- streamid=string
- A string limited to 512 characters that can be set on the socket prior to connecting. This stream ID will be able to be retrieved by the listener side from the socket that is returned from srt_accept and was connected by a socket with that set stream ID. SRT does not enforce any special interpretation of the contents of this string. This option doesnXt make sense in Rendezvous connection; the result might be that simply one side will override the value from the other side and itXs the matter of luck which one would win
- srt_streamid=string
- Alias for streamid to avoid conflict with ffmpeg command line option.
- smoother=live|file
- The type of Smoother used for the transmission for that socket, which is responsible for the transmission and congestion control. The Smoother type must be exactly the same on both connecting parties, otherwise the connection is rejected.
- messageapi=1|0
-
When set, this socket uses the Message API, otherwise it uses Buffer API. Note that in live mode (see transtype) thereXs only message API available. In File mode you can chose to use one of two modes:
- transtype=live|file
-
Sets the transmission type for the socket, in particular, setting this option sets multiple other parameters to their default values as required for a particular transmission type.
- linger=seconds
- The number of seconds that the socket waits for unsent data when closing. Default is -1. -1 means auto (off with 0 seconds in live mode, on with 180 seconds in file mode). The range for this option is integers in the 0 - "INT_MAX".
- tsbpd=1|0
- When true, use Timestamp-based Packet Delivery mode. The default behavior depends on the transmission type: enabled in live mode, disabled in file mode.
srtp
Secure Real-time Transport Protocol.- srtp_in_suite
- srtp_out_suite
-
Select input and output encoding suites.
- AES_CM_128_HMAC_SHA1_80
- SRTP_AES128_CM_HMAC_SHA1_80
- AES_CM_128_HMAC_SHA1_32
- SRTP_AES128_CM_HMAC_SHA1_32
- srtp_in_params
- srtp_out_params
- Set input and output encoding parameters, which are expressed by a base64-encoded representation of a binary block. The first 16 bytes of this binary block are used as master key, the following 14 bytes are used as master salt.
subfile
Virtually extract a segment of a file or another stream. The underlying stream must be seekable.- start
- Start offset of the extracted segment, in bytes.
- end
- End offset of the extracted segment, in bytes. If set to 0, extract till end of file.
subfile,,start,153391104,end,268142592,,:/media/dvd/VIDEO_TS/VTS_08_1.VOB
subfile,,start,183241728,end,366490624,,:archive.tar
subfile,,start,32815239,end,0,,:video.ts
tee
Writes the output to multiple protocols. The individual outputs are separated by |tee:file://path/to/local/this.avi|file://path/to/local/that.avi
tcp
Transmission Control Protocol.tcp://<hostname>:<port>[?<options>]
- listen=2|1|0
- Listen for an incoming connection. 0 disables listen, 1 enables listen in single client mode, 2 enables listen in multi-client mode. Default value is 0.
- local_addr=addr
- Local IP address of a network interface used for tcp socket connect.
- local_port=port
- Local port used for tcp socket connect.
- timeout=microseconds
-
Set raise error timeout, expressed in microseconds.
- listen_timeout=milliseconds
- Set listen timeout, expressed in milliseconds.
- recv_buffer_size=bytes
- Set receive buffer size, expressed bytes.
- send_buffer_size=bytes
- Set send buffer size, expressed bytes.
- tcp_nodelay=1|0
-
Set TCP_NODELAY to disable Nagle's algorithm. Default value is 0.
- tcp_mss=bytes
- Set maximum segment size for outgoing TCP packets, expressed in bytes.
ffmpeg -i <input> -f <format> tcp://<hostname>:<port>?listen
ffplay tcp://<hostname>:<port>
tls
Transport Layer Security (TLS) / Secure Sockets Layer (SSL)tls://<hostname>:<port>[?<options>]
- ca_file, cafile=filename
- A file containing certificate authority (CA) root certificates to treat as trusted. If the linked TLS library contains a default this might not need to be specified for verification to work, but not all libraries and setups have defaults built in. The file must be in OpenSSL PEM format.
- tls_verify=1|0
-
If enabled, try to verify the peer that we are communicating with. Note, if using OpenSSL, this currently only makes sure that the peer certificate is signed by one of the root certificates in the CA database, but it does not validate that the certificate actually matches the host name we are trying to connect to. (With other backends, the host name is validated as well.)
- cert_file, cert=filename
- A file containing a certificate to use in the handshake with the peer. (When operating as server, in listen mode, this is more often required by the peer, while client certificates only are mandated in certain setups.)
- key_file, key=filename
- A file containing the private key for the certificate.
- listen=1|0
- If enabled, listen for connections on the provided port, and assume the server role in the handshake instead of the client role.
- http_proxy
- The HTTP proxy to tunnel through, e.g. "http://example.com:1234". The proxy must support the CONNECT method.
ffmpeg -i <input> -f <format> tls://<hostname>:<port>?listen&cert=<server.crt>&key=<server.key>
ffplay tls://<hostname>:<port>
udp
User Datagram Protocol.udp://<hostname>:<port>[?<options>]
- buffer_size=size
- Set the UDP maximum socket buffer size in bytes. This is used to set either the receive or send buffer size, depending on what the socket is used for. Default is 32 KB for output, 384 KB for input. See also fifo_size.
- bitrate=bitrate
- If set to nonzero, the output will have the specified constant bitrate if the input has enough packets to sustain it.
- burst_bits=bits
- When using bitrate this specifies the maximum number of bits in packet bursts.
- localport=port
- Override the local UDP port to bind with.
- localaddr=addr
- Local IP address of a network interface used for sending packets or joining multicast groups.
- pkt_size=size
- Set the size in bytes of UDP packets.
- reuse=1|0
- Explicitly allow or disallow reusing UDP sockets.
- ttl=ttl
- Set the time to live value (for multicast only).
- connect=1|0
- Initialize the UDP socket with "connect()". In this case, the destination address can't be changed with ff_udp_set_remote_url later. If the destination address isn't known at the start, this option can be specified in ff_udp_set_remote_url, too. This allows finding out the source address for the packets with getsockname, and makes writes return with AVERROR(ECONNREFUSED) if "destination unreachable" is received. For receiving, this gives the benefit of only receiving packets from the specified peer address/port.
- sources=address[,address]
- Only receive packets sent from the specified addresses. In case of multicast, also subscribe to multicast traffic coming from these addresses only.
- block=address[,address]
- Ignore packets sent from the specified addresses. In case of multicast, also exclude the source addresses in the multicast subscription.
- fifo_size=units
- Set the UDP receiving circular buffer size, expressed as a number of packets with size of 188 bytes. If not specified defaults to 7*4096.
- overrun_nonfatal=1|0
- Survive in case of UDP receiving circular buffer overrun. Default value is 0.
- timeout=microseconds
-
Set raise error timeout, expressed in microseconds.
- broadcast=1|0
-
Explicitly allow or disallow UDP broadcasting.
- •
-
Use ffmpeg to stream over UDP to a remote endpoint:
ffmpeg -i <input> -f <format> udp://<hostname>:<port>
- •
-
Use ffmpeg to stream in mpegts format over UDP using 188 sized UDP packets, using a large input buffer:
ffmpeg -i <input> -f mpegts udp://<hostname>:<port>?pkt_size=188&buffer_size=65535
- •
-
Use ffmpeg to receive over UDP from a remote endpoint:
ffmpeg -i udp://[<multicast-address>]:<port> ...
unix
Unix local socketunix://<filepath>
- timeout
- Timeout in ms.
- listen
- Create the Unix socket in listening mode.
zmq
ZeroMQ asynchronous messaging using the libzmq library.zmq:tcp://ip-address:port
ffmpeg -re -i input -f mpegts zmq:tcp://127.0.0.1:5555
ffplay zmq:tcp://127.0.0.1:5555
- pkt_size
- Forces the maximum packet size for sending/receiving data. The default value is 131,072 bytes. On the server side, this sets the maximum size of sent packets via ZeroMQ. On the clients, it sets an internal buffer size for receiving packets. Note that pkt_size on the clients should be equal to or greater than pkt_size on the server. Otherwise the received message may be truncated causing decoding errors.