Skip to content

A snippet showing how to resize an image using FFMPEG

Notifications You must be signed in to change notification settings

TomasHubelbauer/ffmpeg-resize-image

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

FFMPEG Resize Image

  • To fixed size: .\ffmpeg.exe -i img.jpg -vf scale=320:240caled.jpg
  • To aspect ratio with fixed width: .\ffmpeg.exe -i img.jpg -vf scale=320:-1 scaled.jpg
  • To aspect ratio with fixed height: .\ffmpeg.exe -i img.jpg -vf scale=-1:240 scaled.jpg
  • To percentage: .\ffmpeg.exe -i img.jpg -vf scale=iw/2:ih/2 scaled.jpg

About

A snippet showing how to resize an image using FFMPEG

Topics

Resources

Stars

Watchers

Forks