I have a 1080p video that i'm trying to resize for an iOS app upload. So i tried scaling it to the iPhone 6 resolution of 1334x750:
ffmpeg -i WrathTrailer.mp4 -strict -2 -vf scale=1334:750 WrathTrailer1334x750.mp4
The output file comes to 1333x750. iTunes connect won't accept it. Any ideas?
I used the command:
The real aspect is 0.56221889. Experimentally, I find correct aspect: 0.56271889 (changed 2 to 7).
Here's a way to do it without the black padding. Note the force to aspect 1.779:
Not entirely what i wanted to achieve, but managed to do it by adding black padding:
Command sourced from: https://superuser.com/questions/547296/resizing-videos-with-ffmpeg-avconv-to-fit-into-static-sized-player