diff options
author | Lukasz Marek <lukasz.m.luki2@gmail.com> | 2014-07-13 00:54:23 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-13 20:38:55 +0200 |
commit | 4cc0f79a2c11f4ef53ee1b1199896832915a668e (patch) | |
tree | 6aeeba35357cf386a6182e05e87acc20891c4672 /doc | |
parent | ccc4324c90ea7bc637f8f35d21aed857fe0fd46d (diff) | |
download | ffmpeg-4cc0f79a2c11f4ef53ee1b1199896832915a668e.tar.gz |
lavf: add samba protocol via libsmbclient
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/general.texi | 1 | ||||
-rw-r--r-- | doc/protocols.texi | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/doc/general.texi b/doc/general.texi index c008261490..35db917467 100644 --- a/doc/general.texi +++ b/doc/general.texi @@ -1065,6 +1065,7 @@ performance on systems without hardware floating point support). @item RTMPTE @tab X @item RTMPTS @tab X @item RTP @tab X +@item SAMBA @tab E @item SCTP @tab X @item SFTP @tab E @item TCP @tab X diff --git a/doc/protocols.texi b/doc/protocols.texi index 3e5a707b14..a8898d38e7 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -537,6 +537,35 @@ The Real-Time Messaging Protocol tunneled through HTTPS (RTMPTS) is used for streaming multimedia content within HTTPS requests to traverse firewalls. +@section libsmbclient + +libsmbclient permits to manipulate CIFS/SMB network resources. + +Following syntax is required. + +@example +smb://[[domain:]user[:password@@]]server[/share[/path[/file]]] +@end example + +This protocol accepts the following options. + +@table @option +@item timeout +Set timeout in miliseconds 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. + +@item truncate +Truncate existing files on write, if set to 1. A value of 0 prevents +truncating. Default value is 1. + +@item workgroup +Set the workgroup used for making connections. By default workgroup is not specified. + +@end table + +For more information see: @url{http://www.samba.org/}. + @section libssh Secure File Transfer Protocol via libssh |