Album Art Downloader XUI, A tool for downloading cover art |
![]() ![]() |
Album Art Downloader XUI, A tool for downloading cover art |
Sep 25 2007, 12:47
Post
#76
|
|
|
Group: Developer Posts: 977 Joined: 31-July 06 Member No.: 33465 |
AlexVallat, this has grown into a very nice app! Thanks. I have only one "note".. Have you considered using tabs instead of new windows? Thanks, I'm glad you like it! I'm not sure how well tabs would work for this application, really. The original decision at design-time was to make this an SDI rather than MDI app. This means that there is no overall application window to have child 'document' windows, which could be shown as tabs or any other UI to taste. The design was chosen to mesh well with its intended usage of being called from a command from another application (like foobar), rather than typically being the starting-point application for a task. Running a command opens a window as a result of that command, it does not generally open another tab in the window of the previous command's results. Thanks for the suggestion, though. Alex |
|
|
|
Sep 26 2007, 20:41
Post
#77
|
|
|
Group: Members Posts: 257 Joined: 27-September 05 Member No.: 24739 |
does version 0.10 contain everything needed for downloading from iTunes or do i need to get a seperate script?
|
|
|
|
Sep 26 2007, 21:29
Post
#78
|
|
|
Group: Developer Posts: 977 Joined: 31-July 06 Member No.: 33465 |
does version 0.10 contain everything needed for downloading from iTunes or do i need to get a seperate script? It contains everything you need, but only searches iTunes storefront 143457. I put up an alternative script to search storefront 143441 instead, which some users have been reporting has having better results. If you want to use that instead, you need to download it: itunes.boo, and replace the existing script with it. If I have time, I hope to create a script that searches all storefronts until it finds a match, as suggested by McoreD. Alex |
|
|
|
Sep 28 2007, 17:15
Post
#79
|
|
|
Group: Members Posts: 9 Joined: 5-February 05 Member No.: 19608 |
This seems to be an excellent program. There are several features mentioned in the opening post that I have been unable to figure out how to implement. The features in question are:
# Analyse files to find Artists and Albums from tags, and check if album art is already present. # Read your foobar2000 media library to find Artists and Albums, and check for album art. I have been able to search for album art one album at a time by imputing the necessary information in the search fields, but I have not been able to figure out how to do the above. One other matter, when I go to File>New>File Browser or File>New>Foobar Browser the only thing that happens is that a blank window opens. Am I missing some necessary Foobar components. I have the foo_browser component installed. Any help would be greatly appreciated. Nevermind. I must have been using an older version of the program. After installing the latest, everything works just fine. This post has been edited by mwfuss: Sep 28 2007, 17:51 |
|
|
|
Sep 28 2007, 21:19
Post
#80
|
|
|
Group: Members Posts: 161 Joined: 22-December 02 Member No.: 4204 |
It contains everything you need, but only searches iTunes storefront 143457. I put up an alternative script to search storefront 143441 instead, which some users have been reporting has having better results. With almost every search i do the itunes script gives me 1 result back. That is at first unknown by size and after clicking for a preview its 177x177. This is also happens with albums that i allready downloaded via the itunes script with a very old version (coverart) a long time ago.... Is the above also related to my problem with the itunes script. Or is it normal for this script to output such small files? The rest if the scripts worked way fine. Thank you for this tool! |
|
|
|
Sep 28 2007, 23:51
Post
#81
|
|
|
Group: Members Posts: 550 Joined: 24-April 03 From: Italy Member No.: 6159 |
With almost every search i do the itunes script gives me 1 result back. That is at first unknown by size and after clicking for a preview its 177x177. Yeah, same here since yesterday. I'm afraid it's related to this.Alessandro |
|
|
|
Oct 6 2007, 02:20
Post
#82
|
|
![]() Group: Members Posts: 35 Joined: 25-February 03 Member No.: 5157 |
I reaaaaaaaaly like this program. It's just missing one feature that would save me so much time. Could you possibly include some built-in image resizing feature?
ie: I specify that my target size is 500x500, so when i save a 800x800 cover it resizes it down to 500x500, but leaves a 300x300 cover alone (because resizing up is ugly!) I often times find covers in 200x200 and 1000x1000 size with nothing really good in-between. At any rate, thanks for this great and useful application. |
|
|
|
Oct 6 2007, 07:58
Post
#83
|
|
![]() Group: Members Posts: 92 Joined: 11-March 04 From: The Forest Member No.: 12650 |
Has anyone written a script for buy.com?
|
|
|
|
Oct 7 2007, 14:54
Post
#84
|
|
|
Group: Members Posts: 5 Joined: 7-October 07 Member No.: 47659 |
Hey excellent app but I was scanning my foobar library when I got this message:
Error occured while reading media library: The specified path, file name, or both are too long... anyway I can check a log to change the file or directory name? or is that a bug that will be fixed ? |
|
|
|
Oct 7 2007, 17:11
Post
#85
|
|
|
Group: Developer Posts: 977 Joined: 31-July 06 Member No.: 33465 |
I reaaaaaaaaly like this program. It's just missing one feature that would save me so much time. Could you possibly include some built-in image resizing feature? Thanks for the suggestion. I'm not sure whether I want to be doing post-processing on the images after downloading or not. If I do, then resizing will certainly be one of the options offered, as would conversion to .jpg, and possibly aspect ratio correcting. Hey excellent app but I was scanning my foobar library when I got this message: Error occured while reading media library: The specified path, file name, or both are too long... anyway I can check a log to change the file or directory name? or is that a bug that will be fixed ? There is a way to get a log file - create a file called AlbumArt.exe.config in the program folder (or edit your user.config for Album Art Downloader, but that's trickier to find!), and put this in it: CODE <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.diagnostics> <trace autoflush="true"> <listeners> <add name="debugListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="tracelog.txt" /> </listeners> </trace> </system.diagnostics> </configuration> For any .net app, that causes the trace log output to be written to a file called tracelog.txt in the program folder. Unfortunately, reviewing the source for 0.10, I don't think you will see anything useful enough to tell you which file it is that is too long. I've stuck up a version 0.10.1 which if you update to will provide more useful information, and also not abandon scanning the rest of the library just because one file failed. The only other change to 0.10.1 is to remove the iTunes script from the installer, since Apple have blocked access again. Alex This post has been edited by AlexVallat: Jan 14 2008, 09:02 |
|
|
|
Oct 7 2007, 17:48
Post
#86
|
|
|
Group: Members Posts: 5 Joined: 7-October 07 Member No.: 47659 |
thank you very much for your fast reply!
|
|
|
|
Oct 16 2007, 14:18
Post
#87
|
|
![]() Group: Members Posts: 369 Joined: 28-January 06 Member No.: 27378 |
AMAZING
this program is amzing thanks really for your job! but how can i save the thumbs in covers.jpg? |
|
|
|
Oct 16 2007, 16:42
Post
#88
|
|
![]() troll / multiple accounts Group: Banned Posts: 98 Joined: 22-June 05 Member No.: 22890 |
If you click on 'options', you will see a field in which you can choose the name.
Else, if you want to save it automatically in a specific path, you have to use command line options: http://album-art.sourceforge.net/index.php..._Line_Reference |
|
|
|
Oct 16 2007, 16:54
Post
#89
|
|
|
Group: Members Posts: 10 Joined: 15-April 06 Member No.: 29583 |
I think it miss an option to show size in kb for each cover.
Thanks for this amazing software ! |
|
|
|
Oct 18 2007, 09:27
Post
#90
|
|
![]() Group: Members Posts: 369 Joined: 28-January 06 Member No.: 27378 |
i would love to download automatically the best match
|
|
|
|
Oct 28 2007, 17:18
Post
#91
|
|
![]() Group: Members Posts: 369 Joined: 28-January 06 Member No.: 27378 |
![]() AlbumArtDownloader XUI - You know you want it... This project is a rewrite of the Album Art Downloader code, using .NET Framework 3.0. Features:
Links: SourceForge project page Command Line Reference Wiki page Download: AlbumArtDownloaderXUI.exe (Installer. Recommended) AlbumArtDownloaderXUI.zip (zip archive for those who don't like installers) .NET Framework 3.0 (required) Updated 2007-09-22: version 0.10 do u plan to add a lyrics support ,to download lyrics ? |
|
|
|
Oct 28 2007, 19:11
Post
#92
|
|
|
Group: Members Posts: 399 Joined: 30-August 04 From: Germany, Bavaria Member No.: 16641 |
This component is not designed for downloading lyrics. franesco, you get quite some plugins for acquiring lyrics here in the forum - just do a search.
|
|
|
|
Oct 30 2007, 15:38
Post
#93
|
|
![]() Group: Members Posts: 369 Joined: 28-January 06 Member No.: 27378 |
|
|
|
|
Oct 30 2007, 16:56
Post
#94
|
|
|
Group: Members Posts: 55 Joined: 7-March 07 Member No.: 41252 |
This component is not designed for downloading lyrics. franesco, you get quite some plugins for acquiring lyrics here in the forum - just do a search. yes i know the lyrics downloader doesn't work it's could be a great new feature for album art downloader but then it wouldn't be called album art downloader |
|
|
|
Oct 30 2007, 21:11
Post
#95
|
|
|
Group: Members Posts: 399 Joined: 30-August 04 From: Germany, Bavaria Member No.: 16641 |
Though beeing off-topic, take a look at foo_uie_lyrics. It does it's job quite well!
|
|
|
|
Nov 2 2007, 17:12
Post
#96
|
|
![]() Group: Members Posts: 45 Joined: 20-May 06 Member No.: 30979 |
Is the Cover-Paradies script working for anybody?
Seems like I'm not getting any results from it anymore (been like this for weeks, if not more than a month) while I get nice results when using the web-search. Example: Porcupine Tree - In Absentia http://www.cover-paradies.to/?Module=ViewEntry&ID=282622 I would appreciate it if somebody could take a look at it and possibly provide an updated version of the script, since this is the best source for high-quality Albumart scans imo. |
|
|
|
Nov 2 2007, 18:22
Post
#97
|
|
|
Group: Developer Posts: 977 Joined: 31-July 06 Member No.: 33465 |
Is the Cover-Paradies script working for anybody? Seems like I'm not getting any results from it anymore (been like this for weeks, if not more than a month) while I get nice results when using the web-search. Example: Porcupine Tree - In Absentia http://www.cover-paradies.to/?Module=ViewEntry&ID=282622 I would appreciate it if somebody could take a look at it and possibly provide an updated version of the script, since this is the best source for high-quality Albumart scans imo. Fixed: cover-paradies.boo While I'm here:
Alex |
|
|
|
Nov 2 2007, 19:45
Post
#98
|
|
![]() Group: Members Posts: 45 Joined: 20-May 06 Member No.: 30979 |
Fixed: cover-paradies.boo You Sir, are a Legend! Thank you very much Alex! This post has been edited by Tich: Nov 2 2007, 19:45 |
|
|
|
Nov 2 2007, 19:51
Post
#99
|
|
![]() Group: Members Posts: 93 Joined: 14-June 07 From: The Netherlands Member No.: 44368 |
Fixed: cover-paradies.boo Excellent, I really missed using this script, it's by far the best. Thanks a lot, it's much appreciated |
|
|
|
Nov 2 2007, 21:07
Post
#100
|
|
|
Group: Members Posts: 640 Joined: 13-January 03 From: Marseille Member No.: 4552 |
i have a bug with "local files" display.
image is sometimes wrong but path is correct. i use this string with foo run and foobar 0.95 b2 C:\Program Files\AlbumArtDownloader\AlbumArt.exe "%artist%" "%album%" "$replace(%path%,%filename_ext%,folder.jpg)" -------------------- Music is my first love.
|
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 22nd May 2013 - 10:08 |