mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Merge 463aa0a4ad1b6241924b1baf7d7be9aee900608a into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6
This commit is contained in:
commit
acdd32ffb5
@ -4,7 +4,7 @@ from ._run import Error
|
|||||||
from ._utils import convert_kwargs_to_cmd_line_args
|
from ._utils import convert_kwargs_to_cmd_line_args
|
||||||
|
|
||||||
|
|
||||||
def probe(filename, cmd='ffprobe', timeout=None, **kwargs):
|
def probe(filename, cmd='ffprobe', input=None, timeout=None, **kwargs):
|
||||||
"""Run ffprobe on the specified file and return a JSON representation of the output.
|
"""Run ffprobe on the specified file and return a JSON representation of the output.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
@ -17,11 +17,10 @@ def probe(filename, cmd='ffprobe', timeout=None, **kwargs):
|
|||||||
args += convert_kwargs_to_cmd_line_args(kwargs)
|
args += convert_kwargs_to_cmd_line_args(kwargs)
|
||||||
args += [filename]
|
args += [filename]
|
||||||
|
|
||||||
p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
p = subprocess.Popen(
|
||||||
communicate_kwargs = {}
|
args, stdin=None if input is None else subprocess.PIPE,
|
||||||
if timeout is not None:
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
communicate_kwargs['timeout'] = timeout
|
out, err = p.communicate(input=input, timeout=timeout)
|
||||||
out, err = p.communicate(**communicate_kwargs)
|
|
||||||
if p.returncode != 0:
|
if p.returncode != 0:
|
||||||
raise Error('ffprobe', out, err)
|
raise Error('ffprobe', out, err)
|
||||||
return json.loads(out.decode('utf-8'))
|
return json.loads(out.decode('utf-8'))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user