projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e71be6e
)
[postprocessor/ffmpeg] Do not copy Apple TV chapter tracks while embedding subtitles...
author
Tatsh
<Tatsh@users.noreply.github.com>
Mon, 28 Jan 2019 15:57:14 +0000
(10:57 -0500)
committer
Sergey M
<dstftw@gmail.com>
Mon, 28 Jan 2019 15:57:14 +0000
(22:57 +0700)
Related issue: https://trac.ffmpeg.org/ticket/6016
youtube_dl/postprocessor/ffmpeg.py
patch
|
blob
|
history
diff --git
a/youtube_dl/postprocessor/ffmpeg.py
b/youtube_dl/postprocessor/ffmpeg.py
index b952b0970a12940caf4ece032566452511a4de5c..fff2021ff39bceb092167285a8cdae9f6cb791db 100644
(file)
--- a/
youtube_dl/postprocessor/ffmpeg.py
+++ b/
youtube_dl/postprocessor/ffmpeg.py
@@
-407,6
+407,9
@@
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 (see #19042, #19024,
+ # https://trac.ffmpeg.org/ticket/6016)
+ '-map', '-0:d',
]
if information['ext'] == 'mp4':
opts += ['-c:s', 'mov_text']