-
ffmpeg scaling issue
Hi all,
I’m trying to convert a large 1920×1080 .avi file (8-bit mjpeg Blackmagic codec) to an h246 encoded mp4 file using ffmpeg at the command line. The 1920×1080 original image is a pillar-boxed 4:3 image, so I’m trying to crop the sides off to eventually create a 640×480, 4:3, H264, .mp4 video.
The problem is, when I use ffmpeg, I can successfully crop the sides, but the .mp4 output is only the top left corner (640×480) of the original 1920×1080 video. I want to crop the original video and then scale the cropped 4:3 video (1440×1080) down to 640×480. Any suggestions? This is the ffmpeg code I’m using:
ffmpeg -i videos.avi -cropleft 240 -cropright 240 -vcodec libx264 -vpre normal video.mp4
John