image file conversion
i use Preview to convert a .webp image file to a .jpeg file but i have to do it one at a time, and sometimes i have a lot to do, is there any way to do the whole group at once?
Apple TV 4K, tvOS 18
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
i use Preview to convert a .webp image file to a .jpeg file but i have to do it one at a time, and sometimes i have a lot to do, is there any way to do the whole group at once?
Apple TV 4K, tvOS 18
Have your .webp images in a folder Foo and using Terminal loop through them converting to jpeg. Adjust to your folder paths:
for f in ${HOME}/Foo/*.webp; do /usr/bin/sips -s format jpeg -s formatOptions 100 "${f}" --out "${HOME}/Out/${f%webp}jpeg"; done
The sips utility is included with macOS and has a man page by that name.
Tested: macOS Sequoia v15.1 on an M4 Mac Mini Pro.
image file conversion