Skip to content

Instantly share code, notes, and snippets.

View alexyca's full-sized avatar

Alexy Carlier alexyca

  • Rennes, FRANCE
View GitHub Profile
@mowshon
mowshon / moviepy-zoom-in-effect.py
Last active July 6, 2024 04:57
Zoom-in Effect for Moviepy. This function makes the zoom effect smoother.
import moviepy.editor as mp
import math
from PIL import Image
import numpy
def zoom_in_effect(clip, zoom_ratio=0.04):
def effect(get_frame, t):
img = Image.fromarray(get_frame(t))
base_size = img.size