User Datagram Protocol
Required UDP URL syntax:
udp:
Parameters
contain a list of & -separable options of the form key = val.
If streaming is enabled in the system, a circular buffer is used to store incoming data, which allows to reduce data loss due to the overflow of the UDP socket buffer. The fifo_size and overrun_nonfatal parameters are associated with this buffer.
The following is a list of supported options.
Use ffmpeg to transmit over UDP to the remote endpoint:
ffmpeg -i input -f format udp:
Use ffmpeg to stream mpegts over UDP using 188 UDP packets using a large input buffer:
ffmpeg -i input -f mpegts udp:
Use ffmpeg to get UDP from a remote endpoint:
ffmpeg -i udp://[multicast-address]:port ...
You can find some tips in the man command!
source share