mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[postprocessor/embedthumbnail] Skipping if thumbnail file missing
Fixes #5996
This commit is contained in:
parent
25fa8d66e6
commit
c33a8639a7
|
@ -35,6 +35,11 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
|
||||||
|
|
||||||
thumbnail_filename = info['thumbnails'][-1]['filename']
|
thumbnail_filename = info['thumbnails'][-1]['filename']
|
||||||
|
|
||||||
|
if not os.path.exists(encodeFilename(thumbnail_filename)):
|
||||||
|
self._downloader.report_warning(
|
||||||
|
'Skipping embedding the thumbnail because the file is missing.')
|
||||||
|
return [], info
|
||||||
|
|
||||||
if info['ext'] == 'mp3':
|
if info['ext'] == 'mp3':
|
||||||
options = [
|
options = [
|
||||||
'-c', 'copy', '-map', '0', '-map', '1',
|
'-c', 'copy', '-map', '0', '-map', '1',
|
||||||
|
|
Loading…
Reference in a new issue