youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 7360db05b43741c2dfa1fd024e9c2f013ed97c9e
parent 765ac263dbf17442f41715a1cfce13fc61a4b315
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Sun, 21 Feb 2016 03:25:44 +0800

[postprocessor/embedthumbnail] Allow mkv to embed thumbnails

Fixes #6046

Diffstat:
Myoutube_dl/postprocessor/embedthumbnail.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/postprocessor/embedthumbnail.py b/youtube_dl/postprocessor/embedthumbnail.py @@ -40,7 +40,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor): 'Skipping embedding the thumbnail because the file is missing.') return [], info - if info['ext'] == 'mp3': + if info['ext'] in ('mp3', 'mkv'): options = [ '-c', 'copy', '-map', '0', '-map', '1', '-metadata:s:v', 'title="Album cover"', '-metadata:s:v', 'comment="Cover (Front)"']