0
I want to transcode a file .vob to get the bitrate 1500 with 16/9 ratio I execute this command ffmpeg
ffmpeg -i /path/video.vob -vcodec libx264 -vf scale=1280:-2 -strict experimental -b:v 1308k -b:a 192k -ar 44100 -r 25 /path/video_1500.mp4 2>&1
But I got a video with size: 1280 x 1024. What options I should add to my command ffmpeg?