I have a 3840x1920 video and want it to be 1920x1080 without it being stretched.
- I have already resized it to 1920x960, but I want to add black bars for it to be 1920x1080
I used the commands below to resize it, but I don't know what is next to change its height without being stretched.
ffmpeg -i input.mp4 -vf scale=1920:960 output.mp4
ffmpeg -i input.mp4 -vf "scale=iw*0.5:ih*0.5" output.mp4