ffprobe use -f instead of -format

old-commit-hash: cd79cee41a
This commit is contained in:
Willem Melching
2020-05-11 15:32:32 -07:00
parent b53eaeffce
commit 89241b3dba

View File

@@ -76,7 +76,7 @@ def ffprobe(fn, fmt=None):
"-print_format", "json",
"-show_format", "-show_streams"]
if fmt:
cmd += ["-format", fmt]
cmd += ["-f", fmt]
cmd += [fn]
try: