mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
26 lines
775 B
Python
26 lines
775 B
Python
import json
|
|
import subprocess
|
|
from ._run import Error
|
|
|
|
|
|
def probe(filename):
|
|
"""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 = ['ffprobe', '-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:
|
|
raise Error('ffprobe', out, err)
|
|
return json.loads(out.decode('utf-8'))
|
|
|
|
|
|
__all__ = [
|
|
'probe',
|
|
]
|