mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Add Error.cmdline print to examples
This commit is contained in:
parent
a184551aea
commit
c81e246846
@ -26,7 +26,7 @@ def generate_thumbnail(in_filename, out_filename, time, width):
|
|||||||
.run(capture_stdout=True, capture_stderr=True)
|
.run(capture_stdout=True, capture_stderr=True)
|
||||||
)
|
)
|
||||||
except ffmpeg.Error as e:
|
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)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
@ -125,6 +125,6 @@ if __name__ == '__main__':
|
|||||||
.run(capture_stdout=True, capture_stderr=True)
|
.run(capture_stdout=True, capture_stderr=True)
|
||||||
)
|
)
|
||||||
except ffmpeg.Error as e:
|
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)
|
sys.exit(1)
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ def decode_audio(in_filename, **input_kwargs):
|
|||||||
.run(capture_stdout=True, capture_stderr=True)
|
.run(capture_stdout=True, capture_stderr=True)
|
||||||
)
|
)
|
||||||
except ffmpeg.Error as e:
|
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)
|
sys.exit(1)
|
||||||
return out
|
return out
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ if __name__ == '__main__':
|
|||||||
try:
|
try:
|
||||||
probe = ffmpeg.probe(args.in_filename)
|
probe = ffmpeg.probe(args.in_filename)
|
||||||
except ffmpeg.Error as e:
|
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)
|
sys.exit(1)
|
||||||
|
|
||||||
video_stream = next((stream for stream in probe['streams'] if stream['codec_type'] == 'video'), None)
|
video_stream = next((stream for stream in probe['streams'] if stream['codec_type'] == 'video'), None)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user