We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3baf71e commit 196570cCopy full SHA for 196570c
assemble_video.py
@@ -8,7 +8,6 @@
8
from PIL import Image
9
10
frames_between_keyframes = 60
11
-maximum_keyframe_number = 47
12
zoom_scale = 2.0
13
14
# log1.1 of 2 is 7.27
@@ -35,6 +34,8 @@
35
34
files = glob.glob("output/*.png")
36
files.sort()
37
+maximum_keyframe_number = len(files) - 1
38
+
39
# We start with the previous image, this is modified
40
previous_keyframe = Image.open(files[0])
41
0 commit comments