[postprocessor/embedthumbnail] Style fix

This commit is contained in:
Jaime Marquínez Ferrándiz 2015-04-24 22:08:00 +02:00
parent a4196c3ea5
commit 92995e6265
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
compat_urlretrieve(info['thumbnail'], temp_thumbnail)
if info['ext'] == 'mp3':
options = ['-i', temp_thumbnail, '-c', 'copy', '-map', '0', '-map', '1',
options = [
'-i', temp_thumbnail, '-c', 'copy', '-map', '0', '-map', '1',
'-metadata:s:v', 'title="Album cover"', '-metadata:s:v', 'comment="Cover (Front)"']
self._downloader.to_screen('[ffmpeg] Adding thumbnail to "%s"' % filename)