From 701ab6f7d175e6a7d8ac21e4190c1a01912ac2da Mon Sep 17 00:00:00 2001 From: Janis Hutz <98422316+simplePCBuilding@users.noreply.github.com> Date: Thu, 16 Mar 2023 09:27:06 +0000 Subject: [PATCH] Update handler.py fix missing $ sign --- bin/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/handler.py b/bin/handler.py index 82a414e..49b8272 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