fix ffmpeg error, if youtube-dl runs more than once with --embed-thumbnail with same video
This commit is contained in:
parent
0c14e2fbe3
commit
149254d0d5
3 changed files with 7 additions and 7 deletions
|
@ -91,7 +91,7 @@ from .version import __version__
|
|||
from .YoutubeDL import YoutubeDL
|
||||
from .postprocessor import (
|
||||
AtomicParsleyPP,
|
||||
FFmpegMediaFixPP,
|
||||
FFmpegAudioFixPP,
|
||||
FFmpegMetadataPP,
|
||||
FFmpegVideoConvertor,
|
||||
FFmpegExtractAudioPP,
|
||||
|
@ -808,7 +808,7 @@ def _real_main(argv=None):
|
|||
if opts.xattrs:
|
||||
ydl.add_post_processor(XAttrMetadataPP())
|
||||
if opts.embedthumbnail:
|
||||
ydl.add_post_processor(FFmpegMediaFixPP())
|
||||
ydl.add_post_processor(FFmpegAudioFixPP())
|
||||
ydl.add_post_processor(AtomicParsleyPP())
|
||||
|
||||
# Update version
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue