FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ffmpeg-python/ffmpeg/_probe.py at master · welhzh/ffmpeg-python · GitHub
welhzh
/
ffmpeg-python
Public
forked from
kkroening/ffmpeg-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ffmpeg-python
/
ffmpeg
/
_probe.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (24 loc) · 1.02 KB
Breadcrumbs
ffmpeg-python
/
ffmpeg
/
_probe.py
Copy path
File metadata and controls
30 lines (24 loc) · 1.02 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import
json
import
subprocess
from
.
_run
import
Error
from
.
_utils
import
convert_kwargs_to_cmd_line_args
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
:
raise
Error
(
'ffprobe'
,
out
,
err
)
return
json
.
loads
(
out
.
decode
(
'utf-8'
))
__all__
=
[
'probe'
]
Back
|
FazBrowse Home
|
New Git URL