Thread: VGMdb utilities
View Single Post
  #5  
Old Jul 28, 2010, 01:11 PM
Dag's Avatar
Dag Dag is offline
VGMdb Advisor
 
Join Date: Dec 2007
Posts: 1,348
Default

It happened a few days ago (relevant change?). The script just parses the pages' html so when something changes it breaks. Seems it now hangs while trying to fetch the cover img src.

Hoping the author fixes it in a better way, but here is a simple fix meanwhile:
- find the Mp3tag script folder (XP: C:\Documents and Settings\*username*\Application Data\Mp3tag\data\sources; Vista/W7: C:\Users\*username*\AppData\Roaming\Mp3tag\data\so urces)
- open the script(s) with you fav text editor, find "# Coverurl".
- change this part:
Code:
findinline "src="
if "'"
	findinline "../"
	sayuntil "'"
else
	findinline "../"
	sayuntil "\""
endif
with:
Code:
findinline "src='"
sayuntil "'"
That should be enough.
Reply With Quote