summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-04-27 07:41:32 +0200
committerAnton Khirnov <anton@khirnov.net>2012-05-06 16:21:00 +0200
commitfd18ee0ff659fc73e56bd43f5b93ed82934c6c7f (patch)
treebdf01303451839c6a2312ac55526b9ef0ce2e6e7 /doc
parentdce415e7f1aa5a8ac8bf6371b861162444f239c8 (diff)
vf_split: support user-specifiable number of outputs.
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index b012dc791f..c5a56f49f6 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -1666,6 +1666,19 @@ not specified it will use the default value of 16.
Adding this in the beginning of filter chains should make filtering
faster due to better use of the memory cache.
+@section split
+
+Split input video into several identical outputs.
+
+The filter accepts a single parameter which specifies the number of outputs. If
+unspecified, it defaults to 2.
+
+For example
+@example
+avconv -i INPUT -filter_complex split=5 OUTPUT
+@end example
+will create 5 copies of the input video.
+
@section transpose
Transpose rows with columns in the input video and optionally flip it.