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: