mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Add optional timeout argument to probe
Popen.communicate() supports a timeout argument which is useful in case there is a risk that the probe hangs.
This commit is contained in:
parent
78fb6cf2f1
commit
82a00e4849
@ -4,7 +4,7 @@ from ._run import Error
|
||||
from ._utils import convert_kwargs_to_cmd_line_args
|
||||
|
||||
|
||||
def probe(filename, cmd='ffprobe', **kwargs):
|
||||
def probe(filename, cmd='ffprobe', timeout=None, **kwargs):
|
||||
"""Run ffprobe on the specified file and return a JSON representation of the output.
|
||||
|
||||
Raises:
|
||||
@ -18,7 +18,7 @@ def probe(filename, cmd='ffprobe', **kwargs):
|
||||
args += [filename]
|
||||
|
||||
p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
out, err = p.communicate()
|
||||
out, err = p.communicate(timeout=timeout)
|
||||
if p.returncode != 0:
|
||||
raise Error('ffprobe', out, err)
|
||||
return json.loads(out.decode('utf-8'))
|
||||
|
Loading…
x
Reference in New Issue
Block a user