Skip to content

Useful Image Conversion script. Bash scripts & other tools that convert images filetypes. E.g. WEBP to JPG

Notifications You must be signed in to change notification settings

mac10pro/image-converters

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 

Repository files navigation

image-converters

Useful Image Conversion script. Bash scripts & other tools that convert images filetypes. E.g. WEBP to JPG

WEBP to JPG

  • Make new folder / directory.
  • Add your .webp images to location.
  • Add FFMPEG to your directory. https://ffmpeg.org/download.html
  • Open terminal in directory.
  • Enter the following code in the command line:
    • for x in ls *.webp; do ffmpeg -i $x ${x%.webp}.jpg; done

About

Useful Image Conversion script. Bash scripts & other tools that convert images filetypes. E.g. WEBP to JPG

Resources

Stars

Watchers

Forks