[postprocessor/ffmpeg] Do not copy Apple TV chapter tracks

Related issue: https://trac.ffmpeg.org/ticket/6016
This commit is contained in:
Andrew Udvare 2019-01-27 22:20:48 -05:00
parent ae18d58297
commit 6ec51d91cb
No known key found for this signature in database
GPG Key ID: 1AFD9AFC120C26DD

View File

@ -407,6 +407,8 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
# Don't copy the existing subtitles, we may be running the
# postprocessor a second time
'-map', '-0:s',
# Don't copy Apple TV chapters track, bin_data
'-map', '-0:d',
]
if information['ext'] == 'mp4':
opts += ['-c:s', 'mov_text']