Page 1 of 1

Ant Music Catalog

Posted: 2011-04-10 17:45:05
by Kalynuik
I loved finding the Ant Music Catalog Mod, but I can not get any of the scripts to populate,;
AllMusic scripts produces Error while reading selection page - no results found.
Amazon script reports There was an error getting picture from Amazon site, without prompting for anything but title.
CDDB script always comes up with HTTP/1.1 404 Not Found error.
FreeDB script always comes up with Unable to find a match. Please refine your search.

Can anyone get the Ant Music Catalog Mod to work if so do you have a zip file of your Ant Music Directory avaliable because mine is screwed somewhere.

Thank-you
I love Ant Movie Catalog I use it all the time for my VHS, DVD, Blu-ray collection and just wanted to use the Ant Music Mod for my LP collection.

Posted: 2011-04-10 18:07:41
by Kalynuik
Also if someone can get this mod working any chance of the following sites scripted;
Last.fm
Discogs
AllMusic
MusicBrainz

and any others that might satisfy a LP Maniac like myself and others.

Thank-you

Re: Ant Music Catalog

Posted: 2011-08-26 05:02:22
by fulvio53s03
Kalynuik wrote:... AllMusic scripts produces Error while reading selection page - no results found. ...
I would be happy to help you but I also need help... :ha: ;

I say: Search page or function page of AllMusic are changed and now

Code: Select all

   indirizzo_pagina :=  AllMusicUrl+'/cg/amg.dll';
   valore_ricerca := 'sql='+UrlEncode(AlbumName)+'&OPT1='+dfltAlbumc+'&Submit=Go&P=amg';
Page := PostPage(indirizzo_pagina, valore_ricerca);
works no more...

I hope Antp and/or Bad4u could help me... please.... ;)

Bye.

Re: Ant Music Catalog

Posted: 2011-08-26 05:02:30
by fulvio53s03
Kalynuik wrote:... AllMusic scripts produces Error while reading selection page - no results found. ...
I would be happy to help you but I also need help... :ha: ;

I say: Search page or function page of AllMusic are changed and now

Code: Select all

   indirizzo_pagina :=  AllMusicUrl+'/cg/amg.dll';
   valore_ricerca := 'sql='+UrlEncode(AlbumName)+'&OPT1='+dfltAlbumc+'&Submit=Go&P=amg';
Page := PostPage(indirizzo_pagina, valore_ricerca);
works no more...

I hope Antp and/or Bad4u could help me... please.... ;)

Bye.

Posted: 2011-08-26 12:39:09
by antp
Try with this:

Code: Select all

   indirizzo_pagina :=  AllMusicUrl+'/search';
   valore_ricerca := 'search_term='+UrlEncode(AlbumName)+'&search_type=album';
Page := PostPage(indirizzo_pagina, valore_ricerca); 

Posted: 2011-08-26 18:05:48
by fulvio53s03
antp wrote:Try with this:

Code: Select all

   indirizzo_pagina :=  AllMusicUrl+'/search';
   valore_ricerca := 'search_term='+UrlEncode(AlbumName)+'&, search_type=album';
Page := PostPage(indirizzo_pagina, valore_ricerca); 
Sorry but it's not OK.
The URL created (searching 'morrison') is
http://www.allmusic.com/searchsearch_te ... type=album
and even
http://www.allmusic.com/search/search_t ... type=album
is wrong.

Maybe I don't understand something....
Thanks, anyway, for your help.
:)

Posted: 2011-08-26 19:44:15
by antp
What creates such url? :??:
It is a request made by "post", not by "get", so the params are not in the url.
I just translated the search field form of the home page to what should be done in the script to have the equivalent.
If you want to pass the params in the url, you could also try with get method, in case it works (as the search on the site itself seems to generate an url similar to that) :

Code: Select all

Page := GetPage(AllMusicUrl + '/search/album/' + UrlEncode(AlbumName)); 

Posted: 2011-08-27 19:04:21
by fulvio53s03
antp wrote:What creates such url? :??:
It is a request made by "post", not by "get"....
Sorry, my mistake :shaking: I don't understand the right way to list informations from AllMusic....
:cry:

Posted: 2011-10-14 14:42:01
by hariskar
Where do we have to make these changes? I also can not find any music CD..
Thank you!