How To Resize a Video Clip in Python
问题 I want to resize a video clip in python 2.7. For example we give "movie.mp4" with 1080p quality The result should be "movie.mp4" with 360p quality I Think that there should be solutions with Moviepy. If you know a solution with it. I would be grateful if you answer me. 回答1: Here is how you resize a movie with moviepy: see the mpviepy doc here import moviepy.editor as mp clip = mp.VideoFileClip("movie.mp4") clip_resized = clip.resize(height=360) # make the height 360px ( According to moviePy