From 4c161bb4011437d91d79ee13971c297144719179 Mon Sep 17 00:00:00 2001 From: Karl Kroening Date: Mon, 15 Jan 2018 01:40:04 -0800 Subject: [PATCH] Add `-show_streams` to jffprobe --- examples/jffprobe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/jffprobe.py b/examples/jffprobe.py index 4102bf1..a2a7772 100755 --- a/examples/jffprobe.py +++ b/examples/jffprobe.py @@ -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: