Add Error.cmdline print to examples

This commit is contained in:
Mattia Lecci 2023-03-06 17:57:57 +01:00
parent a184551aea
commit c81e246846
4 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ def generate_thumbnail(in_filename, out_filename, time, width):
.run(capture_stdout=True, capture_stderr=True)
)
except ffmpeg.Error as e:
print(e.stderr.decode(), file=sys.stderr)
print(f"$ {e.cmdline}\n{e.stderr.decode()}", file=sys.stderr)
sys.exit(1)

View File

@ -125,6 +125,6 @@ if __name__ == '__main__':
.run(capture_stdout=True, capture_stderr=True)
)
except ffmpeg.Error as e:
print(e.stderr, file=sys.stderr)
print(f"$ {e.cmdline}\n{e.stderr.decode()}", file=sys.stderr)
sys.exit(1)

View File

@ -27,7 +27,7 @@ def decode_audio(in_filename, **input_kwargs):
.run(capture_stdout=True, capture_stderr=True)
)
except ffmpeg.Error as e:
print(e.stderr, file=sys.stderr)
print(f"$ {e.cmdline}\n{e.stderr.decode()}", file=sys.stderr)
sys.exit(1)
return out

View File

@ -15,7 +15,7 @@ if __name__ == '__main__':
try:
probe = ffmpeg.probe(args.in_filename)
except ffmpeg.Error as e:
print(e.stderr, file=sys.stderr)
print(f"$ {e.cmdline}\n{e.stderr.decode()}", file=sys.stderr)
sys.exit(1)
video_stream = next((stream for stream in probe['streams'] if stream['codec_type'] == 'video'), None)