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.
Album Art Tagger 5.2 - Updated 26/10/2013
-
charmingnathan
- Posts: 66
- Joined: Wed Jul 20, 2016 10:59 am
Re: Album Art Tagger 5.2 - Updated 26/10/2013
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.
Download MediaMonkey ♪ License ♪ Knowledge Base ♪ MediaMonkey for Windows 2024 Help ♪ MediaMonkey for Android Help
Lowlander (MediaMonkey user since 2003)
Lowlander (MediaMonkey user since 2003)
-
jsidigital
- Posts: 4
- Joined: Fri Jul 23, 2021 9:32 pm
Re: Album Art Tagger 5.2 - Updated 26/10/2013
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.
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
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!
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!
Re: Album Art Tagger 5.2 - Updated 26/10/2013
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
by (for example)
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 : 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.
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
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 : :
Reduce image to 1200x1200 with quality 85 :
Reduce image to 300x300 with not change of quality :
Changing quality to 80 without changing image size
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>Code: Select all
magick mogrify -resize "600x600>" -quality 80 <file>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
mogrifyCode: Select all
-resize 600x600Code: Select all
-resize "600x600>"Code: Select all
-quality 80Other 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