I have the following 1920x1080 video:
I need to convert it to 1080x1920, and zoom in in the center so that it looks like this:
by using moviepy. I can't seem to figure out how to make this work.
I have the following 1920x1080 video:
I need to convert it to 1080x1920, and zoom in in the center so that it looks like this:
by using moviepy. I can't seem to figure out how to make this work.
this works fine (from 1920x1080 to 1080x1920):
video = video.resize(height=1920)
video = video.crop(x1=1166.6,y1=0,x2=2246.6,y2=1920)