Commit ·
64157e8
1
Parent(s): 37dbf21
Fix black screen between images: remove crossfadein effect completely
Browse files
modules/story_reels/services/story_creator.py
CHANGED
|
@@ -599,14 +599,8 @@ class StoryCreator:
|
|
| 599 |
# Set duration
|
| 600 |
clip = clip.set_duration(duration)
|
| 601 |
|
| 602 |
-
#
|
| 603 |
-
#
|
| 604 |
-
|
| 605 |
-
# Transitions
|
| 606 |
-
|
| 607 |
-
# Transitions
|
| 608 |
-
if i > 0:
|
| 609 |
-
clip = clip.crossfadein(0.5) # Simple fade-in for smooth join without overlap
|
| 610 |
|
| 611 |
clips.append(clip)
|
| 612 |
# For strict chain method, total is sum of durations
|
|
|
|
| 599 |
# Set duration
|
| 600 |
clip = clip.set_duration(duration)
|
| 601 |
|
| 602 |
+
# NO transitions - direct cut between images
|
| 603 |
+
# crossfadein causes black frames, so we removed it completely
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 604 |
|
| 605 |
clips.append(clip)
|
| 606 |
# For strict chain method, total is sum of durations
|