diff options
author | pulpe <Pulpan3@gmail.com> | 2015-05-29 12:47:20 +0200 |
---|---|---|
committer | pulpe <Pulpan3@gmail.com> | 2015-05-29 12:47:20 +0200 |
commit | d6aa68ce75ef4f4d27fbf7103edfda1f92ba70b2 (patch) | |
tree | 800849b0a090070a1a10ddce7ed07944807804f8 /youtube_dl/postprocessor | |
parent | eb6cb9fbe934fe99a35af22065cf91063d416c12 (diff) |
[postprocessor/embedthumbnail] embed mp4 too (fixes #5840)
Diffstat (limited to 'youtube_dl/postprocessor')
-rw-r--r-- | youtube_dl/postprocessor/embedthumbnail.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/postprocessor/embedthumbnail.py b/youtube_dl/postprocessor/embedthumbnail.py index 8f825f785..774494efd 100644 --- a/youtube_dl/postprocessor/embedthumbnail.py +++ b/youtube_dl/postprocessor/embedthumbnail.py @@ -49,7 +49,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor): os.remove(encodeFilename(filename)) os.rename(encodeFilename(temp_filename), encodeFilename(filename)) - elif info['ext'] == 'm4a': + elif info['ext'] in ['m4a', 'mp4']: if not check_executable('AtomicParsley', ['-v']): raise EmbedThumbnailPPError('AtomicParsley was not found. Please install.') @@ -82,6 +82,6 @@ class EmbedThumbnailPP(FFmpegPostProcessor): os.remove(encodeFilename(filename)) os.rename(encodeFilename(temp_filename), encodeFilename(filename)) else: - raise EmbedThumbnailPPError('Only mp3 and m4a are supported for thumbnail embedding for now.') + raise EmbedThumbnailPPError('Only mp3 and m4a/mp4 are supported for thumbnail embedding for now.') return [], info |