Answers for "ffmpeg padding images with black"

0

ffmpeg padding images with black

ffmpeg -i input -vf "scale=1280:-1,crop=iw:720" output
Posted by: Guest on February-05-2022
0

ffmpeg padding images with black

ffmpeg -i input -vf "scale=w=1280:h=720:force_original_aspect_ratio=1,pad=1280:720:(ow-iw)/2:(oh-ih)/2" output
Posted by: Guest on February-05-2022
0

ffmpeg padding images with black

ffmpeg -i input -vf "scale=w=1280:h=720:force_original_aspect_ratio=2,crop=1280:720" output
Posted by: Guest on February-05-2022
0

ffmpeg padding images with black

ffmpeg -i input -vf "scale=-1:720,pad=1280:ih:(ow-iw)/2" output
Posted by: Guest on February-05-2022

Browse Popular Code Answers by Language