Answers for "ffmpeg pad 16:9 into 4:3"

0

ffmpeg pad 16:9 into 4:3

ffmpeg \
    -i input_file \
    -filter:v "pad=iw:iw*3/4:(ow-iw)/2:(oh-ih)/2" \
    -c:a copy \
    output_file
Posted by: Guest on October-05-2021

Browse Popular Code Answers by Language