[splitchapters] Fix for older ffmpeg

Older versions of ffmpeg doesn't allow `-to` as an input option
Closes #180
pull/187/head
pukkandan 4 years ago
parent a515a78dd3
commit a94bfd6cfe

@ -797,7 +797,7 @@ class FFmpegSplitChaptersPP(FFmpegPostProcessor):
return ( return (
destination, destination,
['-ss', compat_str(chapter['start_time']), ['-ss', compat_str(chapter['start_time']),
'-to', compat_str(chapter['end_time'])]) '-t', compat_str(chapter['end_time'] - chapter['start_time'])])
def run(self, info): def run(self, info):
chapters = info.get('chapters') or [] chapters = info.get('chapters') or []

Loading…
Cancel
Save