path to ffmpeg tools has always quotes to make sure spaces won't cause unnecessary behavior

This commit is contained in:
iLLiCiTiT 2020-11-02 19:13:48 +01:00
parent e8a817a89b
commit 7e4807e7ee
12 changed files with 18 additions and 17 deletions

View file

@ -1397,7 +1397,7 @@ def ffprobe_streams(path_to_file):
"Getting information about input \"{}\".".format(path_to_file)
)
args = [
get_ffmpeg_tool_path("ffprobe"),
"\"{}\"".format(get_ffmpeg_tool_path("ffprobe")),
"-v quiet",
"-print_format json",
"-show_format",