Add -show_streams to jffprobe

This commit is contained in:
Karl Kroening 2018-01-15 01:40:04 -08:00
parent e5003648bb
commit 4c161bb401

View File

@ -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: