Open doctorrmcb opened 3 years ago
from moviepy import * textPosition = (random.uniform(-0.15, 0.15), random.uniform(-0.15, 0.15)) textClip = TextClip(txt="Test", size=(1920, 1080), color="white", stroke_color="black", stroke_width=5, fontsize=200) textClip = textClip.set_position('center') textClip = textClip.set_position(textPosition, relative=True) textClip = textClip.resize(lambda t : 1 + zoomFactor * t)
Text is slightly offset from the center and zooms in over time.
The text starts slightly offset from the center, zooms in, and moves to the bottom right corner of the screen over time.
I ran into the same issue. Are there any updates or workarounds?
Expected Behavior
Text is slightly offset from the center and zooms in over time.
Actual Behavior
The text starts slightly offset from the center, zooms in, and moves to the bottom right corner of the screen over time.
Specifications