You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I've got some bugs :(
First, I'm on windows and my files path are send at windows format, and seems unreconized by the videobench.py command.
My filepath have got spaces.
So I fix this by just added " " around path in videobench_ui.py
version of 25 Mar.
L602 inputpath_list_str = "{}".format(" ".join('"{0}"'.format(w) for w in self.inputPath_list))
L624 cmd = ("{0} -ref \"{1}\" -i {2} -sync {3} -sw {4} -deint {5} -subsampling {6} -scale {7} -vmaf_model {8} -loglevel {9}".format(self.videoAnalyzerPath, self.ref_path, inputpath_list_str, sync, sw, deint_setting, subsampling_setting, scale_setting, vmaf_model_setting, loglevel))
The text was updated successfully, but these errors were encountered:
Hi,
I've got some bugs :(
First, I'm on windows and my files path are send at windows format, and seems unreconized by the videobench.py command.
My filepath have got spaces.
So I fix this by just added " " around path in
videobench_ui.py
version of 25 Mar.
L602
inputpath_list_str = "{}".format(" ".join('"{0}"'.format(w) for w in self.inputPath_list))
L624
cmd = ("{0} -ref \"{1}\" -i {2} -sync {3} -sw {4} -deint {5} -subsampling {6} -scale {7} -vmaf_model {8} -loglevel {9}".format(self.videoAnalyzerPath, self.ref_path, inputpath_list_str, sync, sw, deint_setting, subsampling_setting, scale_setting, vmaf_model_setting, loglevel))
The text was updated successfully, but these errors were encountered: