aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__init__.py
diff options
context:
space:
mode:
authorpulpe <Pulpan3@gmail.com>2015-04-24 09:25:44 +0200
committerpulpe <Pulpan3@gmail.com>2015-04-24 09:25:44 +0200
commit09aa111918c35cc091253d06b4de0b6f396b8e80 (patch)
tree119e56c4364477ca9904ec2c8f68352879cb0eae /youtube_dl/__init__.py
parenta9b0d4e1f4936d93f277f098495eb4d5b770056f (diff)
parent10fb7710e85a240cc4bd065b98fd3f5a0c3d10ca (diff)
Merge branch 'embedthumb'
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r--youtube_dl/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 1c8b411b7..d7759db68 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -240,9 +240,7 @@ def _real_main(argv=None):
if opts.xattrs:
postprocessors.append({'key': 'XAttrMetadata'})
if opts.embedthumbnail:
- if not opts.addmetadata:
- postprocessors.append({'key': 'FFmpegAudioFix'})
- postprocessors.append({'key': 'AtomicParsley'})
+ postprocessors.append({'key': 'EmbedThumbnail'})
# Please keep ExecAfterDownload towards the bottom as it allows the user to modify the final file in any way.
# So if the user is able to remove the file before your postprocessor runs it might cause a few problems.
if opts.exec_cmd: