Answer the question
In order to leave comments, you need to log in
Crop video 4k and 6k using ffmpeg. How can I make sure everyone is the same size?
There are 4k and 6k videos, they must be brought to the same size (hd). But when I sprinkle with ffmpeg:
ffmpeg -i 'video.mp4' -profile:v high -pix_fmt yuv420p -s hd720 'output.mp4'
Answer the question
In order to leave comments, you need to log in
Well, they have the same resolution, just a different bitrate -> size. Lock the bitrate like this:
ffmpeg -i 'video.mp4' -b 4000k -minrate 4000k -maxrate 4000k -profile:v high -pix_fmt yuv420p -s hd720 'output.mp4'
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question