diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-07-30 01:34:56 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-08-05 16:13:35 +0200 |
commit | 605387582bd35920b83a26dabbe1c0601f425621 (patch) | |
tree | 3fc27464f2beb0d08b2f6ff9851d71e32171949f /doc/protocols.texi | |
parent | bc54c2ae3ca6abd225dc331eafc12108513158de (diff) | |
download | ffmpeg-605387582bd35920b83a26dabbe1c0601f425621.tar.gz |
lavf: Support unix sockets
Diffstat (limited to 'doc/protocols.texi')
-rw-r--r-- | doc/protocols.texi | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/protocols.texi b/doc/protocols.texi index c777d83dce..0d596ca25b 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -626,4 +626,24 @@ To receive over UDP from a remote endpoint: avconv -i udp://[@var{multicast-address}]:@var{port} @end example +@section unix + +Unix local socket + +The required syntax for a Unix socket URL is: + +@example +unix://@var{filepath} +@end example + +The following parameters can be set via command line options +(or in code via @code{AVOption}s): + +@table @option +@item timeout +Timeout in ms. +@item listen +Create the Unix socket in listening mode. +@end table + @c man end PROTOCOLS |