Kodi Community Forum

Full Version: Allmusic Artist Scraper and MySQL
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When using the Allmusic scraper on a SQLite database, artist information is retrieved just fine. However, if I switch to a shared MySQL database it consistently fails with the following errors in the debug log:

Code:
00:13:22 T:8464 M:1137352704   DEBUG: MUSIC_GRABBER::CMusicInfoScraper::FindArtistinfo: Searching for 'Amon Tobin' using AllMusic scraper (file: 'C:\Users\rglass\AppData\Roaming\XBMC\addons\metadata.albums.allmusic.com', content: 'albums', version: '1.0.10')
00:13:22 T:8464 M:1137352704   ERROR: CScraperParser::Parse: Could not find scraper function CreateArtistSearchUrl
00:13:22 T:8464 M:1137352704   ERROR: ADDON::CScraper::Run: Unable to parse web site

It just brings up the dialogue to enter the artist name, but even after manually entering a name it still won't succeed on the lookup

Album lookup seems to be ok.

Running Dharma Beta 3 ion Windows 7 and the most recent version of the Allmusic scraper.

Any thoughts?
I have the same issue:

Code:
21:12:46 T:4256 M:1497329664   DEBUG: thread start, auto delete: 0
21:12:46 T:4256 M:1497309184   DEBUG: MUSIC_GRABBER::CMusicInfoScraper::FindArtistInfo: Searching for 'Black Eyed Peas' using AllMusic scraper (file: 'C:\Users\%username%\AppData\Roaming\XBMC\addons\metadata.albums.allmusic.com', content: 'albums', version: '2.0.1')
21:12:46 T:4256 M:1497309184   ERROR: CScraperParser::Parse: Could not find scraper function CreateArtistSearchUrl
21:12:46 T:4256 M:1497309184   ERROR: ADDON::CScraper::Run: Unable to parse web site
21:12:46 T:4256 M:1497309184   DEBUG: Thread 4256 terminating

Dharma rev.35744 on Windows 7.

hopefully someone can help.
resolved:

just delete music database in mysql and create it again:

Code:
drop database xbmc_music;
CREATE database xbmc_music;
GRANT ALL ON *.* TO 'xbmc';
SHOW DATABASES;

that's it

now everythink working fine