Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
ffmpeg: Allow "-to" on input files in addition to "-t"
For some strange reason "-t" option was only implemented
for input files while both "-t" and "-to" were available
for use for output files. This made extracting a range from
input file inconvenient.
This patch enables -to option for input so one can do
ffmpeg -ss 1:23:20 -to 1:27:22.3 -i myinput.mkv ...
Signed-off-by: Vitaly _Vi Shukela <vi0oss@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>- Loading branch information
Showing
with
18 additions
and 3 deletions.
- +2 −2 doc/ffmpeg.texi
- +16 −1 fftools/ffmpeg_opt.c