mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 20:11:11 +08:00
Add -show_streams
to jffprobe
This commit is contained in:
parent
e5003648bb
commit
4c161bb401
@ -17,7 +17,7 @@ class ExecException(Exception):
|
||||
|
||||
|
||||
def run_ffprobe(filename):
|
||||
args = ['ffprobe', '-show_format', '-of', 'json', filename]
|
||||
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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user