Created
September 26, 2024 11:39
-
-
Save nidbCN/642ac025fead89a8952bee21cfcae40f to your computer and use it in GitHub Desktop.
Media Scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ext = ".jpg" | |
| foreach ($img in Get-Item "*$($ext)") { | |
| $jxlName = $img.Name.Replace($img.Extension, ".jxl") | |
| Write-Host "converting $($img.Name) to JPEG-XL." | |
| magick $img.Name -define jxl:effort=7 -define jxl:distance=0 -quality 100 "$($jxlName)" | |
| magick identify "$($jxlName)" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment