FFmpegPostProcessor: decode stderr first and then get the last line (closes #837)

pull/839/head
Jaime Marquínez Ferrándiz 2013-05-12 19:08:32 +02:00
rodzic 3c5e7729e1
commit fb2f83360c
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -85,8 +85,9 @@ class FFmpegPostProcessor(PostProcessor):
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout,stderr = p.communicate()
if p.returncode != 0:
stderr = stderr.decode('utf-8', 'replace')
msg = stderr.strip().split('\n')[-1]
raise FFmpegPostProcessorError(msg.decode('utf-8', 'replace'))
raise FFmpegPostProcessorError(msg)
def _ffmpeg_filename_argument(self, fn):
# ffmpeg broke --, see https://ffmpeg.org/trac/ffmpeg/ticket/2127 for details