diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 15:32:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 15:33:12 +0200 |
commit | 8d06ce79411fc99d200ddc559bf1dd1f1434a13c (patch) | |
tree | 9332563780b673ce8695945f8232b28923007ce4 /doc | |
parent | 560e9365b6eb6ce34eddea1a582047e09022fcb0 (diff) | |
parent | 605387582bd35920b83a26dabbe1c0601f425621 (diff) | |
download | ffmpeg-8d06ce79411fc99d200ddc559bf1dd1f1434a13c.tar.gz |
Merge commit '605387582bd35920b83a26dabbe1c0601f425621'
* commit '605387582bd35920b83a26dabbe1c0601f425621':
lavf: Support unix sockets
Conflicts:
configure
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc')
-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 c91a07ba1a..9c834f4d6c 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -937,4 +937,24 @@ To receive over UDP from a remote endpoint: ffmpeg -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 |