Album Art Tagger 5.2 - Updated 26/10/2013

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

charmingnathan
Posts: 66
Joined: Wed Jul 20, 2016 10:59 am

Re: Album Art Tagger 5.2 - Updated 26/10/2013

Post by charmingnathan »

Thanks Lowlander, right I believe I have the add-on working, but either I haven't got this configured properly, or the software doesn't do what I want it to do?!

Taking the example I have already used, for Sonic Youth's "Dirty" album, I need software that will extract the artwork from every track on the album, then export to a separate directory with an artwork for each track from the album, with the filename in the format of ARTIST-TITLE. So in this example, it would read Sonic Youth - Chapel Hill, Sonic Youth - Creme Brulee, and so on - is this something Media Monkey, or any other software could manage?

Thanks for your help.
Lowlander
Posts: 59431
Joined: Sat Sep 06, 2003 5:53 pm

Re: Album Art Tagger 5.2 - Updated 26/10/2013

Post by Lowlander »

I don't use this Addon, so I don't know how it works. The problem may be that you're using per track Artwork instead of per Album.
jsidigital
Posts: 4
Joined: Fri Jul 23, 2021 9:32 pm

Re: Album Art Tagger 5.2 - Updated 26/10/2013

Post by jsidigital »

I tried to install this addon on MediaMonkey 5.x and it does not work.
Apparently this is only for MediaMonkey 4.x

Are there any plans to make a version that works on the new MediaMonkey 5.x?

I would gladly help by donating when completed.
lphilippedenis
Posts: 11
Joined: Sat Mar 14, 2020 11:19 am

Re: Album Art Tagger 5.2 - Updated 26/10/2013

Post by lphilippedenis »

Hi!

I'm trying to use this script so I could export my complete library artwork to a separate folder, let's call it ''artwork'' on my desktop.
Is it possible to do that? I haven't found a way.

Thanks!
Edouard29
Posts: 2
Joined: Mon Nov 09, 2020 11:31 am

Re: Album Art Tagger 5.2 - Updated 26/10/2013

Post by Edouard29 »

Hello all,

In case it can be useful for others, I’ve seen some message about reducing size of image in tag and the only answer I’ve seen is about using option 4 in Album Art Tagger. Which firstly need other actions and for me work only for first image of file.

You can more easily reduce size of image in tag with option 14 of Album Art Tagger « Edit images one by one (no confirmation) ».
You just need to install ImageMagick https://imagemagick.org/download/#windows on your computer, in MediaMonkey select the music files you want, launch Album Art Tagger, select option 14 and replace the default command line

Code: Select all

mspaint.exe <file>
by (for example)

Code: Select all

magick mogrify -resize "600x600>" -quality 80 <file>
It will reduce all image in the music files to 600x600 respecting the ratio with quality 80.
Be careful, during the operation MediaMonkey4 will pop up a quick command line prompt disabling you to do something else on your computer. In my computer it took around 1 second by image so with 10 000 music files having each two images, it should take 5 hours when you could difficulty use your computer.

Some explanation

Code: Select all

mogrify
: by default, image magick want to create another image you should define. This parameter allows to modify directly the source image. So, it’s necessary to the need.

Code: Select all

-resize 600x600
will resize image to fit a square of 600x600 respecting the ratio. But by default, it will enlarged smaller image, that is useless in our case. So, you should add at the end “>” to only reduce bigger image and do nothing for smaller image. With this, you should enclose this part with double quotes (single quote in ImageMagick site but for Linux, double quote for Windows) to avoid any misinterpretation of “>” even if in my test it sems to work without in Album Art Tagger. So, it makes

Code: Select all

-resize "600x600>"

Code: Select all

-quality 80
to change quality to 80 and normally reduce file size. I didn’t find a way to force the quality change only in reduction but avoid enlarging quality if smaller. Also, this value is good for JPEG, MPEG, HEIC image. If you have also PNG or WebP image you should avoid or put another value.

Other example of command line :

Code: Select all

magick mogrify -resize "1200x1200>" -quality 85 <file>
:
Reduce image to 1200x1200 with quality 85

Code: Select all

magick mogrify -resize "300x300>" <file>
:
Reduce image to 300x300 with not change of quality

Code: Select all

magick mogrify -resize -quality 80 <file>
:
Changing quality to 80 without changing image size
Post Reply