Fix transcode-png2jpg

This commit is contained in:
David Heinemeier Hansson 2025-08-07 13:38:01 +02:00
parent 666dbd8f39
commit 7eb661c9c8

View File

@ -48,5 +48,5 @@ transcode-video-4K() {
# Transcode PNG to JPG image that's great for shrinking wallpapers # Transcode PNG to JPG image that's great for shrinking wallpapers
transcode-png2jpg() { transcode-png2jpg() {
convert $1 -quality 95 -strip $(1%.*).jpg magick $1 -quality 95 -strip ${1%.*}.jpg
} }