Check bottom of this post for Windows (DOS) version. (updated to v0.3)
Here's the bash script, that some of you Linux users out there might want, which will create fancy album art.
I created it to go with my
BRITE skin, but it'll work with any skin, of course.
You need ImageMagick for this and a little bit of script knowledge to set the 3 or 4 paths, but that shouldn't be too difficult for most Linux users.

The script will query your amarok music and find the appropriate album art, resize it, optionally add some magic to make it extra pretty and load it to your music directory.
Requirements:
- ImageMagick
- mounted miniplayer
- already know that album art is working with your directory setup
Preparations:
- set the path of the miniplayer music directory in the MUSICDIR variable
- set the path of your amarok albumcovers/large (script has a default location)
- set the path of the nocover.png image (also downloadble here
- optionally, set the path to the temp directory you want the script to use
- for ease of use, make sure the file is executable and in your $PATH environment variable
- the script assumes your MUSIC directory contains a structure like this: "<artistname>-<albumname>" and it will place an <albumname>.jpg file in those directories. Of course if you use another way of displaying album art, you can adjust this in the script
How to use:
Code:
$ meizu_amarok_albumart
This will just place regular album art on your miniplayer, like we're used to
Code:
$ meizu_amarok_albumart true
This will put a fancy version, with reflection, on a black background, so only suitable for a black background, on your miniplayer
Code:
$ meizu_amarok_albumart true <absolute_path_to_your_wallpaper>
This will put a fancy version of your album art, with reflection based on the supplied background. This can be a background that's on your miniplayer in the PICTURES directory or any other place.The result of the most fancy version you can see in the attached screenshot.
Any suggestions are welcome, of course.

If I feel like it, maybe I'll make one based on (Py)Qt for easier configuration, though once you have the configuration set, there's not much else you'd need a gui for.
--------------------------------------------------------------------------------
Windows/DOS version
Couldn't stand it, had to do one for 'the rest' of the world. So, below is a Windows download. You must alsow have
ImageMagick installed.
Now, for the script instructions. Just extract the zip to a location of your choice. First edit the meizu_albumart.bat file to set your MUSIC directory (the one on your miniplayer). Make sure the miniplayer is connected so that you enter the correct path. Then, go to a DOS prompt, cd to the location of the batch file and run it:
Code:
meizu_albumart.bat <optional_path_to_background_image>
That's all there is to it. How it works? The first script is sort of a wrapper which searches through your miniplayer's MUSIC directory, checking for jpg files. If it finds one, it calls the other script and converts it to look all pretty. So,
don't forget: you need to have your albumart in place already.
Known bugs
- DOS' SET command can't calculate with decimals, so the alignment of the albumart with the reflection might not be perfect. There are calculation tools that can do this, might build support for that later or find another way.
Changelog
version 0.3
------------------------------
20080426 - Changed: added comments so it's easier for others to use
version 0.2
------------------------------
20080403 - Fixed: slashes don't always work in paths, converted to backslashes