mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-22 06:14:05 -07:00
Merge 33f79e9db2
into c5098961b0
This commit is contained in:
commit
08929ea414
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
|
|||
stdout, stderr = process_communicate_or_kill(p)
|
||||
|
||||
if p.returncode != 0:
|
||||
msg = stderr.decode('utf-8', 'replace').strip()
|
||||
msg = (stdout + stderr).decode('utf-8', 'replace').strip()
|
||||
raise EmbedThumbnailPPError(msg)
|
||||
|
||||
if not self._already_have_thumbnail:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue