1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-30 21:21:11 +02:00

[postprocessor/embedthumbnail] Allow mkv to embed thumbnails

Fixes #6046
This commit is contained in:
Yen Chi Hsuan 2016-02-21 03:25:44 +08:00
parent 765ac263db
commit 7360db05b4

View File

@ -40,7 +40,7 @@ def run(self, info):
'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)"']