eladg / ffmpeg-by-example

Creative Commons Attribution 4.0 International
8 stars 5 forks source link

🎉 New Example: TNM510Z2/widescreenfix.md #55

Open eladg opened 2 years ago

eladg commented 2 years ago

New Example: TNM510Z2/widescreenfix.md

Please preview this example on the netlify deploy-preview bellow 🌻.

FiskFan1999 commented 2 years ago

I'm not sure this is what many people have in mind with converting a 4:3 video to 16:9. You could try the classic approach using pad:

ffmpeg -i $VIDEO -vf "scale=1920:1080:force_original_aspect_ratio=decrease,pad=1920:1080:(ow-iw)/2:(oh-ih)/2" -c:a copy -y $OUT
eladg commented 2 years ago

absolutely @FiskFan1999, I like your approach much better!