mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 12:48:09 +08:00
Having stdout, sterr, and the command used to launch ffmpeg in Error makes debugging easier
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
import json
|
|
import subprocess
|
|
from ._run import Error
|
|
from ._utils import convert_kwargs_to_cmd_line_args, convert_cmd_line_args_to_cmd_line_str
|
|
|
|
|
|
def probe(filename, cmd='ffprobe', timeout=None, **kwargs):
|
|
"""Run ffprobe on the specified file and return a JSON representation of the output.
|
|
|
|
Raises:
|
|
:class:`ffmpeg.Error`: if ffprobe returns a non-zero exit code,
|
|
an :class:`Error` is returned with a generic error message.
|
|
The stderr output can be retrieved by accessing the
|
|
``stderr`` property of the exception.
|
|
"""
|
|
args = [cmd, '-show_format', '-show_streams', '-of', 'json']
|
|
args += convert_kwargs_to_cmd_line_args(kwargs)
|
|
args += [filename]
|
|
|
|
p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
communicate_kwargs = {}
|
|
if timeout is not None:
|
|
communicate_kwargs['timeout'] = timeout
|
|
out, err = p.communicate(**communicate_kwargs)
|
|
if p.returncode != 0:
|
|
cmdline = convert_cmd_line_args_to_cmd_line_str(args)
|
|
raise Error('ffprobe', out, err, cmdline)
|
|
return json.loads(out.decode('utf-8'))
|
|
|
|
|
|
__all__ = ['probe']
|