From 5acc6da7abb428c486a838ac38ed1398c7d524ec Mon Sep 17 00:00:00 2001 From: laurentalacoque Date: Fri, 7 Sep 2018 10:53:50 +0200 Subject: [PATCH] Added ffmpeg.probe 'cmd' argument ffmpeg..run() method has a `cmd` argument for selecting `ffmpeg` executable. This simple hack adds this feature to the probe command --- ffmpeg/_probe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ffmpeg/_probe.py b/ffmpeg/_probe.py index d3658fd..2bcf636 100644 --- a/ffmpeg/_probe.py +++ b/ffmpeg/_probe.py @@ -3,7 +3,7 @@ import subprocess from ._run import Error -def probe(filename): +def probe(filename, cmd='ffprobe'): """Run ffprobe on the specified file and return a JSON representation of the output. Raises: @@ -12,7 +12,7 @@ def probe(filename): The stderr output can be retrieved by accessing the ``stderr`` property of the exception. """ - args = ['ffprobe', '-show_format', '-show_streams', '-of', 'json', filename] + args = [cmd, '-show_format', '-show_streams', '-of', 'json', filename] p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = p.communicate() if p.returncode != 0: