Resolution of an example video: 640x788
Desired resolution of the new video: 1920x1080
The aspect ratio of the video should be kept (the area left & right should be filled black).
My current call looks like this: ffmpeg -i input.mp4 -s 1920x1080 -r 60 -aspect 1:1 -strict experimental output.mp4
. The problem here is that the video is sometimes made narrower / wider (aspect ratio is not kept).
Since I am no FFmpeg expert I hope for help here (maybe there is a padding property?)