[postprocessor/ffmpeg] Show ffmpeg output on error (refs #22680) (#29…

…336)
unlicense
kikuyan 2021-06-21 20:20:43 +02:00 committed by Dominika
parent 11f62f6f41
commit b19b66e927
1 changed files with 4 additions and 1 deletions

View File

@ -231,7 +231,10 @@ class FFmpegPostProcessor(PostProcessor):
stdout, stderr = p.communicate()
if p.returncode != 0:
stderr = stderr.decode('utf-8', 'replace')
msg = stderr.strip().split('\n')[-1]
msgs = stderr.strip().split('\n')
msg = msgs[-1]
if self._downloader.params.get('verbose', False):
self._downloader.to_screen('[debug] ' + '\n'.join(msgs[:-1]))
raise FFmpegPostProcessorError(msg)
self.try_utime(out_path, oldest_mtime, oldest_mtime)