From d3142988bf3824c5b7f62ce623956c70ea823d7f Mon Sep 17 00:00:00 2001 From: Janis Hutz <98422316+simplePCBuilding@users.noreply.github.com> Date: Fri, 17 Mar 2023 07:13:18 +0000 Subject: [PATCH] Update handler.py fix one of the erros --- bin/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/handler.py b/bin/handler.py index e674536..5bae9b4 100644 --- a/bin/handler.py +++ b/bin/handler.py @@ -243,7 +243,7 @@ class Handler: if self.os_type == "linux": self.command = f"ffmpeg -framerate {self.framerate} -i {self.tmppath}sc/ig%08d.png {output_path} -i {self.tmppath}audio.aac" elif self.os_type == "win32": - self.command = f"ffmpeg -framerate {self.framerate} -i \"{self.tmppath}sc/ig%08d.png\" {output_path} -i {self.tmppath}audio.aac" + self.command = f"ffmpeg -framerate {self.framerate} -i \"{self.tmppath}sc\\ig%08d.png\" {output_path} -i {self.tmppath}audio.aac" else: print("OS CURRENTLY UNSUPPORTED!") return False