We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cb7d26 commit 049626fCopy full SHA for 049626f
1 file changed
ffmpeg/_probe.py
@@ -13,7 +13,7 @@ def probe(filename, cmd='ffprobe', timeout=None, **kwargs):
13
The stderr output can be retrieved by accessing the
14
``stderr`` property of the exception.
15
"""
16
- args = [cmd, '-show_format', '-show_streams', '-of', 'json']
+ args = [cmd, '-show_format', '-show_streams', '-of', 'json', '-report']
17
args += convert_kwargs_to_cmd_line_args(kwargs)
18
args += [filename]
19
0 commit comments