Ant Music Catalog

New scripts, templates and translation files that allows to use Ant Movie Catalog to manage other things than movies
Post Reply
Kalynuik
Posts: 16
Joined: 2005-09-28 14:00:05
Location: Canada

Ant Music Catalog

Post 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.
Kalynuik
Posts: 16
Joined: 2005-09-28 14:00:05
Location: Canada

Post 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
fulvio53s03
Posts: 745
Joined: 2007-04-28 05:46:43
Location: Italy

Re: Ant Music Catalog

Post 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.
fulvio53s03
Posts: 745
Joined: 2007-04-28 05:46:43
Location: Italy

Re: Ant Music Catalog

Post 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.
antp
Site Admin
Posts: 9636
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post 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); 
fulvio53s03
Posts: 745
Joined: 2007-04-28 05:46:43
Location: Italy

Post 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.
:)
antp
Site Admin
Posts: 9636
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post 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)); 
fulvio53s03
Posts: 745
Joined: 2007-04-28 05:46:43
Location: Italy

Post 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:
hariskar
Posts: 14
Joined: 2011-10-14 12:58:54
Location: Greece/Kavala
Contact:

Post by hariskar »

Where do we have to make these changes? I also can not find any music CD..
Thank you!
Post Reply