When I save a clip using Moviepy it changes the aspect ratio or dimensions - the result is distorted. Here is the code:
from moviepy.editor import *
video = VideoFileClip("/Users/src/assets/img/trialVideo.mp4").subclip(0,10)
video.write_videofile("/Users/1.mp4",fps=60)
video.save_frame("/Users/1.png", 5)
Both 1.mp4 and 1.png have distorted resolutions. The original video was roughly 800 height and 400 width.
Any help would be fantastic!