I hope to zoom a 4k video. The reason is simply I don't have a high resolution monitor.
from moviepy.editor import VideoFileClip
import moviepy.video.fx.all as vfx
clip = VideoFileClip(file_name)
resized_clip = clip .crop(clip, x1=0, y1=0, x2=1920, y2=1080)
It is the code I used to cut off the upper-right of 4k clip. This type of size modifying was worked for other sizes of video, but not worked for 4k. How can I fix it?
p.s. Not worked with error.