summaryrefslogtreecommitdiff
path: root/doc/demuxers.texi
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-08-22 18:28:37 +0200
committerNicolas George <nicolas.george@normalesup.org>2012-12-06 14:09:14 +0100
commit32aedebdc59d5b34ab7a9137855dcc602267e00f (patch)
treed256fa0fd61a23ecd85b280b3e8b9ce984887251 /doc/demuxers.texi
parentc3fa6add58288dda34c88a6c0c9e0cc79f29169b (diff)
lavf: add a concat demuxer.
Diffstat (limited to 'doc/demuxers.texi')
-rw-r--r--doc/demuxers.texi31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/demuxers.texi b/doc/demuxers.texi
index aea4c54c0b..126dd1d18d 100644
--- a/doc/demuxers.texi
+++ b/doc/demuxers.texi
@@ -184,4 +184,35 @@ the script is directly played, the actual times will match the absolute
timestamps up to the sound controller's clock accuracy, but if the user
somehow pauses the playback or seeks, all times will be shifted accordingly.
+@section concat
+
+Virtual concatenation script demuxer.
+
+This demuxer reads a list of files and other directives from a text file and
+demuxes them one after the other, as if all their packet had been muxed
+together.
+
+The timestamps in the files are adjusted so that the first file starts at 0
+and each next file starts where the previous one finishes. Note that it is
+done globally and may cause gaps if all streams do not have exactly the same
+length.
+
+All files must have the same streams (same codecs, same time base, etc.).
+
+This script format can currently not be probed, it must be specified explicitly.
+
+@subsection Syntax
+
+The script is a text file in extended-ASCII, with one directive per line.
+Empty lines, leading spaces and lines starting with '#' are ignored. The
+following directive is recognized:
+
+@table @option
+
+@item @code{file @var{path}}
+Path to a file to read; special characters and spaces must be escaped with
+backslash or single quotes.
+
+@end table
+
@c man end INPUT DEVICES