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 📁")