From 3937571114d072172e74a37b240f9da11202499a Mon Sep 17 00:00:00 2001 From: Janis Hutz <98422316+simplePCBuilding@users.noreply.github.com> Date: Thu, 16 Mar 2023 09:36:18 +0000 Subject: [PATCH] Update handler.py potential fix for path in windows --- bin/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/handler.py b/bin/handler.py index 49b8272..3f3bd86 100644 --- a/bin/handler.py +++ b/bin/handler.py @@ -118,7 +118,7 @@ class Handler: print("linux") self.command = f"ffmpeg -i {str(self.filepath)} {self.tmppath}ex%08d.png" elif self.os_type == "win32": - self.command = f"ffmpeg -i {str(self.filepath)} ${self.tmppath}ex%08d.png" + self.command = f"ffmpeg -i {str(self.filepath)} \"{self.tmppath}ex%08d.png\"" else: print("OS CURRENTLY UNSUPPORTED!") return False