fixing space in path

This commit is contained in:
Milan 2020-10-01 09:32:25 +01:00
parent fa541d1ddb
commit 5c9327fe86

View file

@ -268,9 +268,10 @@ class DropDataFrame(QtWidgets.QFrame):
args = [
ffprobe_path,
'-v', 'quiet',
'-print_format', 'json',
'-print_format json',
'-show_format',
'-show_streams', filepath
'-show_streams',
'"{}"'.format(filepath)
]
ffprobe_p = subprocess.Popen(
' '.join(args),