Release CU LRC Lyrics - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Lyrics Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=146) +---- Thread: Release CU LRC Lyrics (/showthread.php?tid=147340) |
RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - capfuturo - 2014-06-25 @ronie: I can see by looking at the current code (below) that it doesn't consider the scenario in which the file names contain the form %N %A - %T (Track Artist - Title.ext), e.g. '05 Marillion - Montréal.flac' . I just finished retagging my whole music library with Musicbrainz Picard to have this naming convention, which is available in XBMC, and to my surprise I am unable to get .lrc lyrics online, download them and saved them locally. Would you be so kind Ronie to include this form, so the .lrc lyrics could be found again online? Thank you! From utilities.py: Code: def get_artist_from_filename(filename): Obs. if form %A\%B\%N %T is selected in configuration pane: 1) Somehow the script manages to find the lyrics in the form 'Track Artist - Title.ext' inside the 'Lyrics' folder and displays them, however it can't find any new online .lrc lyrics as explained above. 2) Only .txt lyrics are found online, downloaded and saved as 'Track Artist - Title.txt'. RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - capfuturo - 2014-06-26 (2014-06-10, 18:37)woodside Wrote: TTPlayer scraper is always returning lrc files with the content... Hi woodside, This happens as well with other online DB for Lyrics. My recommendation is to just keep TTPlayer Scraper deactivated. The reasons for this issue could be several, however my guess is this happens due to changes on TTPlayer DB that aren't supported/updated anymore in CU LRC Lyrics add-on. RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - ciccio123 - 2014-06-26 Hello everyone. maybe you can help me. after I read the 20 pages of the forum are not yet able to run the lyrics of the songs. I tried to manually install the add-on "CU LRC Lyrics" but even if it is active, pressing the button on the mp3 or nothing happens at most shows "Text not found" it's just a compatibility issue with 13.1 Gotham? thanks!!! sorry for my english RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - pisoj1 - 2014-06-30 nvm RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - ronie - 2014-07-05 (2014-06-10, 18:37)woodside Wrote: TTPlayer scraper is always returning lrc files with the content... is this still an issue? i just tested the TTPlayer scraper and it is working ok for me. RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - ronie - 2014-07-05 (2014-06-25, 01:03)capfuturo Wrote: @ronie: I can see by looking at the current code (below) that it doesn't consider the scenario in which the file names contain the form %N %A - %T (Track Artist - Title.ext), e.g. '05 Marillion - Montréal.flac' . I just finished retagging my whole music library with Musicbrainz Picard to have this naming convention, which is available in XBMC, and to my surprise I am unable to get .lrc lyrics online, download them and saved them locally. sure, i'll add this. RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - ronie - 2014-07-05 (2014-06-11, 02:25)htpcero Wrote: This is a nice plugin and I use it all the time. Running as a service is a great improvement. the crash happens in the lyrdb scraper. since the lyrdb website is currently offline, i can't troubleshoot the issue right now. feel free to remind me about it later on, in case i forget. RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - goldmojo - 2014-07-06 Hi, I installed 2.0.9 version of the cu lrc lyrics addon on Openelec 4.0.6 XBMC GOTHAM. I get an error on each script startup with this log error : ==> No module named chardet I can't find a way to install this module, chardet module doesn't exist on gotham (last version exists on frodo). What do I forget to do ? Kind regards RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - ronie - 2014-07-06 just install the frodo version, it's compatible with gotham as well. RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - goldmojo - 2014-07-06 Thanks for the advice. I managed to make it work by : * Installing the missing chardet lib : xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx * Adding the path to the lib in the .py file (strange ?) ** ~/.xbmc/addons/script.cu.lrclyrics/resources/lib/utilities.py **** import sys **** sys.path.append ("/storage/.xbmc/addons/script.module.chardet") It's working but I'm still thinking that my sys.path.append is really strange. RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - ronie - 2014-07-06 (2014-07-06, 14:18)goldmojo Wrote: Thanks for the advice. you should get your addons from the offical xbmc mirrors: http://mirrors.xbmc.org/addons/ i'm sorry but i can't provide support to people who get their stuff elsewhere. RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - goldmojo - 2014-07-06 OK, I just googled the missing library, my fault ! I got the frodo version on the official repository for now. Why do I still need to use explicitly sys.path.append ("/storage/.xbmc/addons/script.module.chardet") ? It's still strange to me. RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - Ed76 - 2014-07-23 for me "airplay" isnt working with CU LRC Lyrics enabled. if i disable CU LRC Lyrics airplay is working fine (gotham 13.1, win 8 x64). is there something i can do or is this a bug? RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - ronie - 2014-07-23 (2014-07-23, 15:57)Ed76 Wrote: for me "airplay" isnt working with CU LRC Lyrics enabled. if i disable CU LRC Lyrics airplay is working fine (gotham 13.1, win 8 x64). is there something i can do or is this a bug? try disabling these options in the addon settings: - search for embedded lyrics - search for local lyrics files RE: [RELEASE] CU LRC Lyrics - merge cu and lrc lyrics scripts - Dmitrich66 - 2014-07-23 (2014-07-06, 14:39)goldmojo Wrote: OK, I just googled the missing library, my fault ! I think the folder structure of the module "script.module.chardet" is wrong. "Chardet" folder should be in the "Lib" folder, which is missing in the module. |