Compare commits

...

2 Commits

Author SHA1 Message Date
Deleted user
e13113ef58
Merge 33f79e9db2 into e1b3fa242c 2024-07-28 01:27:03 +09:00
kikuyan
33f79e9db2 [postprocessor/embedthumbnail] include stdout on atomicparsley error 2021-07-17 14:36:14 +09:00

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: