Skip to content

Commit 836dcf6

Browse files
committed
Merge branch 'develop' into feat/background-configs
2 parents 0485eb2 + 6412aa5 commit 836dcf6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

video_creation/final_video.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ def make_final_video(number_of_clips: int, length: int, reddit_obj: dict, backgr
6262
# add title to video
6363
image_clips = []
6464
# Gather all images
65-
new_opacity = 1 if opacity is None or float(opacity) >= 1 else opacity
65+
new_opacity = 1 if opacity is None or float(opacity) >= 1 else float(opacity)
66+
6667
image_clips.insert(
6768
0,
6869
ImageClip("assets/temp/png/title.png")

0 commit comments

Comments
 (0)