-
Padding
Hi All,
I want to convert 1920×1080(16:9) .mov video to 720×526 (4:3) .mov
When I use this command
ffmpeg -y -i test.mov -vcodec libx264 -vpre ultrafast -s 720x526 -aspect 4:3 -b 15000k -acodec libfaac -ab 128k -ac 2 -f mov test_1.mov
it converts the file to 701×526 instead of specified 720×526 and also it stretch the video.So to keep the original aspect ration of 16:9, I decided to add a black bar on the top and here is the command I am using
ffmpeg -y -i test.mov -vcodec libx264 -vpre ultrafast -s 720x404 -aspect 4:3 -vf "pad=720:526:0:61" -b 15000k -acodec libfaac -ab 128k -ac 2 -f mov test_1.movBut its not creating final file with 720×526 size, it does create output file with black bars but in the size of 539×526 and also video is still stretched
Can anyone please tell me where am I going wrong ?
Kind Regards,
Jay Patel.