This commit is contained in:
Deleted user 2024-08-21 22:22:01 -04:00 committed by GitHub
commit 08929ea414
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: