summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2014-01-04 14:48:23 +0100
committerStefano Sabatini <stefasab@gmail.com>2014-01-05 00:43:51 +0100
commit98ecbf0093e5a16a91f5d2fede7914cd302d2f09 (patch)
tree7c9e331cbde34dd42068684f77a4c4b0873a7467 /doc
parent77015443a84bb5dbed38eafc2ea26a2bf2641ed6 (diff)
doc/protocols/file: document general file protocol URL syntax
Also drop confusing ff* tools reference about exceptions to the file:FILENAME syntax, which is not ff* tool specific. With various edits by Alexander Strasser <eclipse7@gmx.net>.
Diffstat (limited to 'doc')
-rw-r--r--doc/protocols.texi16
1 files changed, 12 insertions, 4 deletions
diff --git a/doc/protocols.texi b/doc/protocols.texi
index de157f7cdd..d3a6a5c6bd 100644
--- a/doc/protocols.texi
+++ b/doc/protocols.texi
@@ -119,16 +119,24 @@ File access protocol.
Allow to read from or read to a file.
+A file URL can have the form:
+@example
+file:@var{filename}
+@end example
+
+where @var{filename} is the path of the file to read.
+
+An URL that does not have a protocol prefix will be assumed to be a
+file URL. Depending on the build, an URL that looks like a Windows
+path with the drive letter at the beginning will also be assumed to be
+a file URL (usually not the case in builds for unix-like systems).
+
For example to read from a file @file{input.mpeg} with @command{ffmpeg}
use the command:
@example
ffmpeg -i file:input.mpeg output.mpeg
@end example
-The ff* tools default to the file protocol, that is a resource
-specified with the name "FILE.mpeg" is interpreted as the URL
-"file:FILE.mpeg".
-
This protocol accepts the following options:
@table @option