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 = [ args = [
ffprobe_path, ffprobe_path,
'-v', 'quiet', '-v', 'quiet',
'-print_format', 'json', '-print_format json',
'-show_format', '-show_format',
'-show_streams', filepath '-show_streams',
'"{}"'.format(filepath)
] ]
ffprobe_p = subprocess.Popen( ffprobe_p = subprocess.Popen(
' '.join(args), ' '.join(args),