Kodi Community Forum
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: CU LRC Lyrics - Yukai - 2020-10-14

(2020-10-14, 15:57)ronie Wrote: ok, here's a test version that should fix that error:
script.cu.lrclyrics-6.3.4.zip
thanx!
Everything has been fixed.


RE: CU LRC Lyrics - Dypsis - 2020-10-15

I have disabled the auto-start of CU LRC Lyrics when playing music in Kodi.
So, how do I manually open and close CU LRC Lyrics as needed?


RE: CU LRC Lyrics - ronie - 2020-10-15

in the estuary skin, there's a button on the music osd to start cu lrclyrics.
see: https://kodi.wiki/view/Music_navigation#Now_Playing_Controls


RE: CU LRC Lyrics - Caesarius - 2020-10-15

Hello,

Version info: Kodi 19. Alpha1
Git: 20200209-9940d952fa

My beloved Lyrics Add-On stopped working. I uninstalled it (as well as all dependencies) and installed the latest 6.3.4
During the installation it tells me "CU LRC Lyrics error, Check the log for more information"
Where can I find that log file? I have enabled log debugging.
Thank you for any help.

Cheers
Caesar

PS: When I turn on Kodi, it gives me following error message: "Version Check error, Check the log for more information"


RE: CU LRC Lyrics - ronie - 2020-10-15

see the wiki: Debug Log


RE: CU LRC Lyrics - Caesarius - 2020-10-15

(2020-10-15, 23:02)ronie Wrote: see the wiki: Debug Log
Thank you kindly.
Here is the log file: https:paste.kodi.tv/juvudedebu
I hope no personal info are in the file? Could you please kindly check the log file and let me know what is wrong?

Cheers
Caesar


RE: CU LRC Lyrics - ronie - 2020-10-15

ah, that's an easy one, your kodi install is too old (alpha 1). please update kodi to alpha2 and the errors will be gone.


RE: CU LRC Lyrics - Caesarius - 2020-10-15

(2020-10-15, 23:21)ronie Wrote: ah, that's an easy one, your kodi install is too old (alpha 1). please update kodi to alpha2 and the errors will be gone.

No, unfortunately that is not an easy one since the version I have is the latest version for my QNAP NAS. :-(
Here is the latest download link: https://nascompares.com/2020/04/07/how-to-install-kodi-v19-matrix-on-your-qnap-nas/
It worked before but not anymore. Any other idea?
Thanks again.


RE: CU LRC Lyrics - ronie - 2020-10-16

you could uninstall cu lrclyrics and get an older version here:
https://mirrors.kodi.tv/addons/matrix/script.cu.lrclyrics/script.cu.lrclyrics-6.2.2.zip


RE: CU LRC Lyrics - Caesarius - 2020-10-16

(2020-10-16, 00:33)ronie Wrote: you could uninstall cu lrclyrics and get an older version here:
https://mirrors.kodi.tv/addons/matrix/script.cu.lrclyrics/script.cu.lrclyrics-6.2.2.zip
Thanks again.
I just did (and even tried with version 5.6.1): "Installation failed"
:-(


RE: CU LRC Lyrics - Dypsis - 2020-10-16

(2020-10-15, 11:41)ronie Wrote: in the estuary skin, there's a button on the music osd to start cu lrclyrics.
see: https://kodi.wiki/view/Music_navigation#Now_Playing_Controls

I don't have any of those buttons.
And I don't have the album art background.
And after a few seconds, I get a blank background.


RE: CU LRC Lyrics - Dypsis - 2020-10-16

(2020-10-16, 01:37)Dypsis Wrote:
(2020-10-15, 11:41)ronie Wrote: in the estuary skin, there's a button on the music osd to start cu lrclyrics.
see: https://kodi.wiki/view/Music_navigation#Now_Playing_Controls

I don't have the album art background.
And after a few seconds, I get a blank background.

I guess that background is Fanart. I have it enabled, but it is not working. Just a blank screen.
But what is worse is when it goes completely blank after a few seconds. Even if I could disable the few seconds timeout, it would be better than going blank.


RE: CU LRC Lyrics - RobinTW - 2020-10-21

(2020-10-16, 02:02)Dypsis Wrote:
(2020-10-16, 01:37)Dypsis Wrote:
(2020-10-15, 11:41)ronie Wrote: in the estuary skin, there's a button on the music osd to start cu lrclyrics.
see: https://kodi.wiki/view/Music_navigation#Now_Playing_Controls

I don't have the album art background.
And after a few seconds, I get a blank background.

I guess that background is Fanart. I have it enabled, but it is not working. Just a blank screen.
But what is worse is when it goes completely blank after a few seconds. Even if I could disable the few seconds timeout, it would be better than going blank.
Try this.


RE: CU LRC Lyrics - woodside - 2020-11-06

Hello ronie, I just dusted off an old music addon after a couple of years that I was previously working on and noticed that you've recently removed support to grab lyrics manually. Would the below from your readme be a replacement? If so, do you know of or have any example code that I could look at to try and figure out how to implement? Thanks.

"music addons can add lyrics to their items this way:
https://codedocs.xyz/xbmc/xbmc/group__python__xbmcgui__listitem.html
listitem.setInfo('music', {'lyrics': 'lyrics here'})
listitem.setProperty('culrc.source', 'addon name here')"


RE: CU LRC Lyrics - ronie - 2020-11-09

nope, it's not a replacement. i'm afraid there is none.
cu lrc will only fetch lyrics for the song that is currently playing.

the code from the readme allows addons to add lyrics to a listitem themselves.
(which is a standard kodi feature and not really specific to the cu lrc addon)