8000 Add `-show_streams` to jffprobe · yoyonel/ffmpeg-python@4c161bb · GitHub
[go: up one dir, main page]

Skip to content

Commit 4c161bb

Browse files
committed
Add -show_streams to jffprobe
1 parent e500364 commit 4c161bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/jffprobe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, stderr_output):
1717

1818

1919
def run_ffprobe(filename):
20-
args = ['ffprobe', '-show_format', '-of', 'json', filename]
20+
args = ['ffprobe', '-show_format', '-show_streams', '-of', 'json', filename]
2121
p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2222
out, err = p.communicate()
2323
if p.returncode != 0:

0 commit comments

Comments
 (0)
0