HydrogenAudio

Misc. => Off-Topic => Topic started by: rohangc on 2012-04-17 04:24:56

Title: Recommend a command-line utility to scale images to fit a defined file
Post by: rohangc on 2012-04-17 04:24:56
Hi.

I am about to batch transcode my FLAC files into LAME 3.99.5 MP3s. I have really large high-resolution album-art images that I downloaded off the Internet.

The problem is my phone which will be one of my listening devices expects album-art to be embedded in the MP3s that it plays or it won't display them at all.
It really doesn't make sense to embed a large image file (sometimes running into megabytes) into each and every MP3 file in an album.

I want a command-line utility that I can use with CygWin to scale a bunch of .jpg files in a folder to a specified file size (say 100KB). I am willing to live with the bloat caused by embedding these (relatively) small images into my individual MP3s.

If someone knows of one such software, please let me know what it is. Thanks for your help in advance.

Cheers.
Title: Recommend a command-line utility to scale images to fit a defined file
Post by: harto69 on 2012-04-17 08:45:49
Hi,
Irfanview (http://http://irfanview.tuwien.ac.at/)has a confortable batch-conversion-utility.
Harald

Edit: hoppala, not a command-line utility, sorry!
Title: Recommend a command-line utility to scale images to fit a defined file
Post by: rohangc on 2012-04-18 03:31:35
Last night, I found ImageMagick which seems to be the only decent command line image processing software around.

Although it didn't exactly fulfill my requirements, I used it to simply resize all my album art images to a 'low' 256x256' resolution and had to be content with that.

Looks like I can't have my cake and eat it too
Title: Recommend a command-line utility to scale images to fit a defined file
Post by: polemon on 2012-05-07 15:34:52
http://www.graphicsmagick.org/ (http://www.graphicsmagick.org/)

Simply prefix your imagemagick command with gm:

Code: [Select]
mogrify -scale 250x250 cover.png

becomes:
Code: [Select]
gm mogrify -scale 250x250 cover.png