From 15a17896cadb0cef707060346d6cfc4d1a5918e8 Mon Sep 17 00:00:00 2001 From: Josh Holly Date: Sun, 21 May 2023 07:41:21 -0500 Subject: [PATCH] Remoted int() wrapper Removed int() around opacity = settings.config["settings"]["opacity"] to fraction numbers (IE 0.5, 0.7, etc) --- video_creation/final_video.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/video_creation/final_video.py b/video_creation/final_video.py index 11804c6..7418931 100644 --- a/video_creation/final_video.py +++ b/video_creation/final_video.py @@ -142,7 +142,8 @@ def make_final_video( # settings values W: Final[int] = int(settings.config["settings"]["resolution_w"]) H: Final[int] = int(settings.config["settings"]["resolution_h"]) - opacity = int(settings.config["settings"]["opacity"]) + """Fixed to allow fraction opacity Ea: 0.7""" + opacity = settings.config["settings"]["opacity"] reddit_id = re.sub(r"[^\w\s-]", "", reddit_obj["thread_id"]) @@ -405,4 +406,4 @@ def make_final_video( print_step("Removing temporary files 🗑") cleanups = cleanup(reddit_id) print_substep(f"Removed {cleanups} temporary files 🗑") - print_step("Done! 🎉 The video is in the results folder 📁") \ No newline at end of file + print_step("Done! 🎉 The video is in the results folder 📁")