HEIF
HEIF copied to clipboard
Easier native way to convert images
Here is native and easier way to convert images to HEIC. This uses native SIPS utility.
for i in *.jpg; do sips -s format heic $i --out converted/$i.heic;done
How can you set the quality?
You can pass -s formatOptions 80
.