diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-04-27 07:41:32 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-06 16:21:00 +0200 |
commit | fd18ee0ff659fc73e56bd43f5b93ed82934c6c7f (patch) | |
tree | bdf01303451839c6a2312ac55526b9ef0ce2e6e7 /doc/filters.texi | |
parent | dce415e7f1aa5a8ac8bf6371b861162444f239c8 (diff) | |
download | ffmpeg-fd18ee0ff659fc73e56bd43f5b93ed82934c6c7f.tar.gz |
vf_split: support user-specifiable number of outputs.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 13 |
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. |