2011-01-29, 14:34
frank75 Wrote:Get this when i try to fetch lyrics:
-Fetching lyrics from Lyricsmode.com API failed-
Same on LyricsWiki and lyricstime.
I have set not save, and save lyrics. But stil no contact.
Anyone have an idea?
Thx in advance
I've found the problem. It's in the line:
lyricText = content.split("<lyrics>")[1].split("</lyrics>")[0]
in the script.cu.lyrics/resources/lib/scrapers/lyricwiki/lyricsScraper.py
The lyricwiki page not have an "<lyrics>" string, it is "<lirics>". An solution may be doing:
content=content.replace("<","<");
content=content.replace(">",">");
before the above line.
My problem is that calling cu lyrics a second time results in a xmbc segmentation fault....