aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__init__.py
diff options
context:
space:
mode:
authorpulpe <Pulpan3@gmail.com>2015-04-24 08:48:49 +0200
committerpulpe <Pulpan3@gmail.com>2015-04-24 08:48:49 +0200
commitddbed36455f8b3053f38d84b2e62e2fb5cd66eac (patch)
tree56a6b0b4a02e8084db6910a830b9bb67047ce0cc /youtube_dl/__init__.py
parent4d6a3ff411d494e2f3168bca0331317718b5d9a9 (diff)
downloadyoutube-dl-ddbed36455f8b3053f38d84b2e62e2fb5cd66eac.tar.xz
[embedthumbnail] Add support for mp3 cover embedding
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: