It is currently March 28th, 2024, 11:35 am

Spotify Lyrics help

Get help with creating, editing & fixing problems with skins
User avatar
winterwulf
Posts: 94
Joined: August 17th, 2016, 1:48 am
Location: São Paulo - Brazil

Re: Spotify Lyrics help

Post by winterwulf »

eclectic-tech wrote:That can happen while testing skins that use webparser if you refresh the skin frequently... Restarting is the solution.

I was curious about the how often this site could find lyrics and created some code you may want to look at to see if any of it is of any use in your project.

This is a will display available lyrics, allow you to scroll in either direction at varying speeds (mousewheel), copy the lyrics to your clipboard (mid-click), or go to the MusixMatch site (left-click).

I modified the substitutes that FreeRaider provided; it will return the entire lyrics and not stop at '/' characters.

Here is some code for you to disect:

Code: Select all

[Rainmeter]
Update=500
AccurateText=1
DynamicWindowSize=1
Group=#RootConfig#

; ========= Metadata ==========
[Metadata]
Name=MusixMatch Lyrics
Author=Eclectic Tech based on work by Minimanx & FreeRaider on RM forum
Information=Will search for lyrics on the MusixMatch website of songs played through the nowplaying plugin and display them in a variable speed scrollable window. You can control the speed & direction by scrolling the mouse, left-click to access www.musixmatch.com, and middle-click to copy lyrics to your clipboard. 
License=Creative Commons Share-Alike NC 4
Version=1.2016.08.31

; ========= Variables ==========
[Variables]
PlayerInterface=WinAmp
go=0
height=400
halfheight=(#height#/2)
width=440

; ========= Measures ==========
[mTitleLyric]
Measure=Plugin
Plugin=NowPlaying.dll
PlayerName=#PlayerInterface#
PlayerType=TITLE
Substitute="":""," ":"-","'":"-",",":"","&":"And","\W+":"-","--":"-"
OnChangeAction=[!CommandMeasure mGetLyrics Update]

[mArtistLyric]
Measure=Plugin
Plugin=NowPlaying.dll
PlayerName=[mTitleLyric]
PlayerType=ARTIST
Substitute="":""," ":"-","'":"-",",":"","&":"And","--":"-"

[mGetLyrics]
Measure=Plugin
Plugin=WebParser
URL=https://www.musixmatch.com/lyrics/[&mArtistLyric]/[&mTitleLyric]
; To see possible translations, add: /translation/{language}  to the end of the URL above
; Replace {language} with Spanish, German, etc. your language (not all are available)
RegExp=(?siU).*"lyrics".*"body":"(.*)","Language"
DynamicVariables=1
FinishAction=[!SetVariable Go 0][!HideMeterGroup Controls][!DisableMeasure measureY][!Update][!EnableMeasure measureY]

[mLyrics]
Measure=Plugin
Plugin=WebParser
URL=[mGetLyrics]
StringIndex=1
DecodeCharacterReference=1
Substitute="":"Searching MusixMatch for Lyrics...","\n":"#CRLF#"

[measurey]
measure=calc
formula=measurey-#go#
dynamicvariables=1

[measureh]
measure=calc
formula=#halfheight#-1-measurey+#halfheight#
dynamicvariables=1

; ================================= Meters ===================================================

[Background]
Meter=Image
W=#width#
H=#height#
SolidColor2=32,32,32,255
SolidColor=32,32,32,210
GradientAngle=90
Hidden=0
AntiAlias=1
DynamicVariables=1
LeftMouseUpAction=["https://www.musixmatch.com/lyrics/[mArtistLyric]/[mTitleLyric]"]
MiddleMouseUpAction=[!SetClip "Title: [mTitleLyric]#CRLF#Artist: [mArtistLyric]#CRLF##CRLF#[mLyrics]"]
MouseOverAction=[!ShowMeterGroup Controls]
MouseLeaveAction=[!HideMeterGroup Controls]
MouseScrollUpAction=[!SetVariable Go (#Go#+2)]
MouseScrollDownAction=[!SetVariable Go (#Go#-2)]
MouseActionCursor=0

[LyricsDisplay]
Meter=STRING
MeterStyle=Style1
MeasureName=mLyrics
X=([Background:W]/2)
W=([Background:W]-20)
Y=([measurey])
H=[measureh]
StringAlign=CENTER
ClipString=2
Text=#CRLF#%1
Hidden=0
Group=Lyric

[TitleAuthor]
Meter=String
MeterStyle=Style1
MeasureName=mTitleLyric
MeasureName2=mArtistLyric
Padding=8,1,8,3
X=(#Width#/2)
Y=2R
SolidColor=32,32,32,255
StringAlign=Center
Text="%1  by  %2"

[Close]
Meter=String
MeterStyle=Style1
X=(#width#-10)
Y=-18r
W=10
Text=X
LeftMouseUpAction=[!DeactivateConfig]
Group=Controls

[Style1]
StringStyle=normal
StringEffect=none
FontFace=Segoe UI
FontSize=10
FontColor=255,255,255
FontEffectColor=0,0,0
AntiAlias=1
DynamicVariables=1
MouseActionCursor=0
Edit: Corrected fontcolor code for [TitleAuthor] section; I was using Win 10 Accent colors, but did not want to have include the SysColor.dll :uhuh
:
Wow!!! Thank you!!!!! :great:
User avatar
eclectic-tech
Rainmeter Sage
Posts: 5380
Joined: April 12th, 2012, 9:40 pm
Location: Cedar Point, Ohio, USA
Contact:

Re: Spotify Lyrics help

Post by eclectic-tech »

No problem, good luck with your project! :)

Let us know if you have any other questions...

Getting lyrics is one of the those things that a lot of people want, but the sources are usually very difficult to parse and have a habit of changing formats... which breaks the skin :x

MusixMatch.com seems pretty consistent and I have found lyrics for the majority of titles I have tried, both oldies and Top 40!
So you may have a long run without needing updates :thumbup:

Edit: Here's my version I plan to add to my suite:
lyric1.png
User avatar
winterwulf
Posts: 94
Joined: August 17th, 2016, 1:48 am
Location: São Paulo - Brazil

Re: Spotify Lyrics help

Post by winterwulf »

Nice looking skin!!

On the weekend I will update mine and post here.. took some from your code and also I am doing other .ini from diferent sources that will come up on musixmatch skin parse error.

the parsing from the lyrics sites is the most trick part indeed but I really like it lol!
User avatar
winterwulf
Posts: 94
Joined: August 17th, 2016, 1:48 am
Location: São Paulo - Brazil

Re: Spotify Lyrics help

Post by winterwulf »

Hello eclectic-tech!

This is what I got so far, I will implement the controls and the link to the lyrics website as you did too, but I need to figure out the design I want yet..

I added 6 different lyrics sites, when one fails the another start immediately, and if the last one fail it gives the option to google the lyrics
Also got that nice slider thing from jsmorley skin, so I use my spotify skin to activate this lyrics skin

I still have to optimize it somehow... I just lost all I have writen due to a notepad++ crash (googled it seems to happen more often than I thought, be careful) so I did what I remembered and some adjusts to get it working again... LF to know your thoughts cya!

Code: Select all

[Rainmeter]
Update=1000
AccurateText=1
SkinWidth=512
SkinHeight=250
ContextTitle=Open @Includes folder
ContextAction=["#@#"]
DynamicVariables=1

OnRefreshAction=[!SnapEdges "0" "#CURRENTCONFIG#"][!WriteKeyValue Variables xSL "1" "#@#Variables.inc"][!SetVariable SL "1" "#ROOTCONFIG#\Spotify" "Spotify"]
OnCloseAction=[!WriteKeyValue Variables xSL "0" "#@#Variables.inc"][!SetVariable SL "0" "#ROOTCONFIG#\Spotify" "Spotify"][!SetVariable GOOGLE "0"]

[Variables]
ScrollSpeed=20
Height=230
@Include1=#@#GeneralVariables.inc
MaxNumber=0
GOOGLE=0

OffSet=-512
State=1
U=[!UpdateMeasure MeasureSlider][!UpdateMeter *][!Redraw]

[cCounter]
Measure = Calc
Formula = cCounter+1
IfAboveValue = #MaxNumber#
IfAboveAction = [!DisableMeasure #CURRENTSECTION#][!CommandMeasure MeasureSlider "Execute 1" ]

[cCounter2]
Measure = Calc
Formula = cCounter2+1
IfAboveValue = #MaxNumber#
IfAboveAction = [!DisableMeasure #CURRENTSECTION#][!DeactivateConfig "#ROOTCONFIG#\Lyrics"]
Paused=1

[MeasureSlider]
Measure=Plugin
Plugin=ActionTimer
ActionList1=Repeat SlideRight, 20, 15
SlideRight=[!SetVariable State "2"][!SetVariable OffSet "(Clamp(#OffSet#+35,-512,0))"]#U#
ActionList2=Repeat SlideLeft, 10, 15
SlideLeft=[!SetVariable State "1"][!SetVariable OffSet "(Clamp(#OffSet#-35,-512,0))"]#U#
DynamicVariables=1

[StringStyle]
FontFace=#TextFont#
FontSize=11
FontColor=#LabelColor#
StringEffect=BORDER
AntiAlias=1
ClipString=2
StringStyle=Normal
StringAlign=Center

[MeterBack]
Meter=Image
ImageName=#ImagePath#FlexBack.png
Y=0
X=#OffSet#
W=512
H=250
ScaleMargins=3,3,3,3
ImageTint=#BackgroundColor#
DynamicVariables=1
MiddleMouseUpAction=[!SetClip "Title: [mTitleLyric]#CRLF#Artist: [mArtistLyric]#CRLF##CRLF#[mLyrics]"]
ToolTipText"Middle click to copy lyrics"
ToolTipType=1
ToolTipIcon=INFO
MouseActionCursor=0

[MeterText]
Meter=String
MeasureName=MeasureLyrics
MeterStyle=StringStyle
MouseScrollUpAction=[!SetOption MeterText y ([MeterText:y]<10?([MeterText:y]+#ScrollSpeed#):[MeterText:y])][!SetOption MeterText H ([MeterText:y]<10?[MeterText:H]-#ScrollSpeed#:[MeterText:H])][!Update]
MouseScrollDownAction=[!SetOption MeterText y ([MeterText:y]-#ScrollSpeed#)][!SetOption MeterText H ([MeterText:H]+#ScrollSpeed#)][!Update]
X=(#OffSet#+256)
Y=10
W=512
H=#Height#
DynamicVariables=1
SolidColor=0,0,0,1
MouseActionCursor=0
Hidden=#GOOGLE#

[MeasureGetLyrics]
Measure=Plugin
Plugin=WebParser
URL=https://www.musixmatch.com/lyrics/[&MeasureArtist]/[&MeasureTrack]
RegExp=(?siU).*"lyrics".*"body":"(.*)","
OnRegExpErrorAction=[!EnableMeasure MeasureGetVagalume][!SetOption MeterText MeasureName "MeasureVagalume"][!DisableMeasure MeasureGetLyrics]
DynamicVariables=1
UpdateRate=600
UpdateDivider=1
Paused=#GOOGLE#

[MeasureLyrics]
Measure=Plugin
Plugin=WebParser
URL=[MeasureGetLyrics]
StringIndex=1
DecodeCharacterReference=1
Substitute="":"#CRLF##CRLF##CRLF##CRLF##CRLF#Searching MusixMatch for Lyrics...","\n":"#CRLF#",'\"':"""
UpdateRate=600
UpdateDivider=-1

[MeasureTrack]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=TrackName
RegExpSubstitute=1
Substitute="\s-\s.*":"","\s\(.*":"","\s\[.*":"","":""," ":"-","\W+":"-","&":"And","--":"-"
OnChangeAction=[!SetVariable GOOGLE "0"][!CommandMeasure MeasureGetLyrics Update][!SetOption MeterText Y "10"][!SetOption MeterText H #Height#]

[MeasureArtist]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=ArtistName
Substitute="":""," ":"-","/":"-","&":"And","--":"-","KISS":"Kiss-2"
UpdateDivider=-1

[MeasureTrackG]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=TrackName
RegExpSubstitute=1
Substitute="\s-\s.*":"","\s\(.*":"","\s\[.*":"","":""," ":"+","\W+":"+","&":"And","--":"-"
OnChangeAction=[!CommandMeasure MeasureGetLyrics Update][!SetOption MeterText Y "10"][!SetOption MeterText H #Height#]

[MeasureArtistG]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=ArtistName
Substitute="":""," ":"+","/":"-","&":"And","--":"-"
UpdateDivider=-1

[MeterGoogle]
Meter=String
MeterStyle=StringStyle
FontColor=135,135,135
Text="No lyrics found, wanna Google it?"
LeftMouseUpAction=["https://www.google.com/search?q=[MeasureArtistG]+[MeasureTrackG]+lyrics"]
MouseOverAction=[!SetOption MeterGoogle FontColor "255,255,255"][!Update]
MouseLeaveAction=[!SetOption MeterGoogle FontColor "135,135,135"][!Update]
X=(#OffSet#+256)
Y=115
Hidden=(1-#GOOGLE#)
DynamicVariables=1

; **********************************************
;                VAGALUME
; **********************************************
[MeasureGetVagalume]
Measure=Plugin
Plugin=WebParser
URL=https://www.vagalume.com.br/[&MeasureArtistMetrolyrics]/[&MeasureTrackMetrolyrics].html
RegExp=(?siU).*description>(.*)<\/div>
OnRegExpErrorAction=[!EnableMeasure MeasureGetMetrolyrics][!SetOption MeterText MeasureName "MeasureMetrolyrics"][!DisableMeasure MeasureGetVagalume]
DynamicVariables=1
UpdateRate=600
UpdateDivider=1
Disabled=1

[MeasureVagalume]
Measure=Plugin
Plugin=WebParser
URL=[MeasureGetVagalume]
StringIndex=1
DecodeCharacterReference=1
Substitute="":"#CRLF##CRLF##CRLF##CRLF##CRLF#Buscando letra no Vagalume...","<br/>":"#CRLF#",'\"':"""
UpdateRate=600
UpdateDivider=-1

; **********************************************
;                Metrolyrics
; **********************************************
[MeasureGetMetrolyrics]
Measure=Plugin
Plugin=WebParser
URL=http://www.metrolyrics.com/[&MeasureTrackMetrolyrics]-lyrics-[&MeasureArtistMetrolyrics].html
RegExp=(?siU).*'verse'>(.*)<\/div>
OnRegExpErrorAction=[!EnableMeasure MeasureGetMetallyrica][!SetOption MeterText MeasureName "MeasureMetallyrica"][!DisableMeasure MeasureGetMetrolyrics]
DynamicVariables=1
UpdateRate=600
UpdateDivider=1
Disabled=1

[MeasureMetrolyrics]
Measure=Plugin
Plugin=WebParser
URL=[MeasureGetMetrolyrics]
StringIndex=1
RegExpSubstitute=1
DecodeCharacterReference=1
Substitute="":"#CRLF##CRLF##CRLF##CRLF##CRLF#Searching Metrolyrics for Lyrics...","<br>":"","</p>.*>":"#CRLF##CRLF#","</p>":""
UpdateRate=600
UpdateDivider=-1

[MeasureTrackMetrolyrics]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=TrackName
RegExpSubstitute=1
Substitute="A":"a","B":"b","C":"c","D":"d","E":"e","F":"f","G":"g","H":"h","I":"i","J":"j","K":"k","L":"l","M":"m","N":"n","O":"o","P":"p","Q":"q","R":"r","S":"s","T":"t","U":"u","V":"v","W":"w","X":"x","Y":"y","Z":"z","\s-\s.*":"","\s\(.*":"","\s\[.*":"","":""," ":"-","\W+":"-","&":"And","--":"-"

[MeasureArtistMetrolyrics]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=ArtistName
Substitute="A":"a","B":"b","C":"c","D":"d","E":"e","F":"f","G":"g","H":"h","I":"i","J":"j","K":"k","L":"l","M":"m","N":"n","O":"o","P":"p","Q":"q","R":"r","S":"s","T":"t","U":"u","V":"v","W":"w","X":"x","Y":"y","Z":"z","":""," ":"-","/":"-","&":"And","--":"-"

; **********************************************
;                Metallyrica
; **********************************************
[MeasureGetMetallyrica]
Measure=Plugin
Plugin=WebParser
URL=http://www.metallyrica.com/lyrica/[&MeasureArtistMetallyrica]/[&MeasureTrackMetallyrica].html
RegExp=(?siU).*[MeasureTrackName]<\/b>.*color=.*>(.*)<\/
OnRegExpErrorAction=[!EnableMeasure MeasureGetAZLyrics][!SetOption MeterText MeasureName "MeasureAZLyrics"][!DisableMeasure MeasureGetMetallyrica]
DynamicVariables=1
UpdateRate=600
UpdateDivider=1
Disabled=1

[MeasureMetallyrica]
Measure=Plugin
Plugin=WebParser
URL=[MeasureGetMetallyrica]
StringIndex=1
RegExpSubstitute=1
DecodeCharacterReference=1
Substitute="":"#CRLF##CRLF##CRLF##CRLF##CRLF#Searching Metallyrica.com for Lyrics...","<br>":"#CRLF#",""":'"'
UpdateRate=600
UpdateDivider=-1

[MeasureTrackName]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=TrackName
RegExpSubstitute=1
DynamicVariables=1
DisableLeadingZero=1
Substitute="":"No Song Found","\s-\s.*":"","\s\(.*":"","\s\[.*":"","":""

[MeasureTrackMetallyrica]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=AlbumName
RegExpSubstitute=1
Substitute="A":"a","B":"b","C":"c","D":"d","E":"e","F":"f","G":"g","H":"h","I":"i","J":"j","K":"k","L":"l","M":"m","N":"n","O":"o","P":"p","Q":"q","R":"r","S":"s","T":"t","U":"u","V":"v","W":"w","X":"x","Y":"y","Z":"z","\s-\s.*":"","\s\(.*":"","\s\[.*":"","":""," ":"_","\W+":"_"

[MeasureArtistMetallyrica]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=ArtistName
Substitute="A":"a","B":"b","C":"c","D":"d","E":"e","F":"f","G":"g","H":"h","I":"i","J":"j","K":"k","L":"l","M":"m","N":"n","O":"o","P":"p","Q":"q","R":"r","S":"s","T":"t","U":"u","V":"v","W":"w","X":"x","Y":"y","Z":"z","\s-\s.*":"","\s\(.*":"","\s\[.*":"","":""," ":"_","\W+":"_"

; **********************************************
;                AZLyrics
; **********************************************
[MeasureGetAZLyrics]
Measure=Plugin
Plugin=WebParser
URL=http://www.azlyrics.com/lyrics/[&MeasureArtistAZLyrics]/[&MeasureTrackAZLyrics].html
RegExp=(?siU).*<div>.*-->(.*)</div>
;RegExp="(?siU)<div>(.*)</div>.*"
OnRegExpErrorAction=[!EnableMeasure MeasureGetDarkLyrics][!SetOption MeterText MeasureName "MeasureDarkLyrics"][!DisableMeasure MeasureGetAZLyrics]
DynamicVariables=1
UpdateRate=600
UpdateDivider=1
Disabled=1

[MeasureAZLyrics]
Measure=Plugin
Plugin=WebParser
URL=[MeasureGetAZLyrics]
StringIndex=1
DecodeCharacterReference=1
Substitute="":"#CRLF##CRLF##CRLF##CRLF##CRLF#Searching AZLyrics.com for Lyrics...","<br>":""
UpdateRate=600
UpdateDivider=-1

[MeasureTrackAZLyrics]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=TrackName
RegExpSubstitute=1
Substitute="A":"a","B":"b","C":"c","D":"d","E":"e","F":"f","G":"g","H":"h","I":"i","J":"j","K":"k","L":"l","M":"m","N":"n","O":"o","P":"p","Q":"q","R":"r","S":"s","T":"t","U":"u","V":"v","W":"w","X":"x","Y":"y","Z":"z","\s-\s.*":"","\s\(.*":"","\s\[.*":"","":""," ":"","\W+":""

[MeasureArtistAZLyrics]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=ArtistName
Substitute="A":"a","B":"b","C":"c","D":"d","E":"e","F":"f","G":"g","H":"h","I":"i","J":"j","K":"k","L":"l","M":"m","N":"n","O":"o","P":"p","Q":"q","R":"r","S":"s","T":"t","U":"u","V":"v","W":"w","X":"x","Y":"y","Z":"z","\s-\s.*":"","\s\(.*":"","\s\[.*":"","":""," ":"","\W+":""

; **********************************************
;                DarkLyrics
; **********************************************
[MeasureGetDarkLyrics]
Measure=Plugin
Plugin=WebParser
URL=http://www.darklyrics.com/lyrics/[&MeasureArtistAZLyrics]/[&MeasureAlbumDarkLyrics].html
RegExp=(?siU).*"lyrics">.*[MeasureTrackName]<\/a><\/h3><br \/>(.*)\/><
;RegExp=(?siU).*[MeasureTrackDarkLyricsName]<\/a><\/h3><br \/>(.*)<h3>.*
OnRegExpErrorAction=[!EnableMeasure MeasureGetLyrics][!SetOption MeterText MeasureName "MeasureLyrics"][!SetVariable GOOGLE "1"][!DisableMeasure MeasureGetDarkLyrics]
DynamicVariables=1
UpdateRate=600
UpdateDivider=1
Disabled=1

[MeasureDarkLyrics]
Measure=Plugin
Plugin=WebParser
URL=[MeasureGetDarkLyrics]
StringIndex=1
RegExpSubstitute=1
DecodeCharacterReference=1
Substitute="":"#CRLF##CRLF##CRLF##CRLF##CRLF#Searching DarkLyrics.com for Lyrics...","<br />":"","<br ":"","<i>":"","</i>":""
UpdateRate=600
UpdateDivider=-1

[MeasureAlbumDarkLyrics]
Measure=Plugin
Plugin=SpotifyPlugin.dll
Type=AlbumName
RegExpSubstitute=1
Substitute="A":"a","B":"b","C":"c","D":"d","E":"e","F":"f","G":"g","H":"h","I":"i","J":"j","K":"k","L":"l","M":"m","N":"n","O":"o","P":"p","Q":"q","R":"r","S":"s","T":"t","U":"u","V":"v","W":"w","X":"x","Y":"y","Z":"z","\s-\s.*":"","\s\(.*":"","\s\[.*":"","":""," ":"","\W+":"","&":"And","--":""
User avatar
eclectic-tech
Rainmeter Sage
Posts: 5380
Joined: April 12th, 2012, 9:40 pm
Location: Cedar Point, Ohio, USA
Contact:

Re: Spotify Lyrics help

Post by eclectic-tech »

I will take a look at this and let you know if I have any suggestions... may not be for a few days, but I will definitely keep an eye on your progress... :welcome:

I posted a suggestion concerning your 'terrible' experience thread. Sadly, we all learn things the hard way :(
User avatar
eclectic-tech
Rainmeter Sage
Posts: 5380
Joined: April 12th, 2012, 9:40 pm
Location: Cedar Point, Ohio, USA
Contact:

Re: Spotify Lyrics help

Post by eclectic-tech »

winterwulf wrote:Hello eclectic-tech!

This is what I got so far, I will implement the controls and the link to the lyrics website as you did too, but I need to figure out the design I want yet..
Can you post the contents of your '@Resources\GeneralVariables.inc' file?

Or you could make a complete rmskin package to include images, @includes files, etc.

Either way should give me a more complete skin to work with... :)
User avatar
winterwulf
Posts: 94
Joined: August 17th, 2016, 1:48 am
Location: São Paulo - Brazil

Re: Spotify Lyrics help

Post by winterwulf »

eclectic-tech wrote:Can you post the contents of your '@Resources\GeneralVariables.inc' file?

Or you could make a complete rmskin package to include images, @includes files, etc.

Either way should give me a more complete skin to work with... :)
https://dl.dropboxusercontent.com/u/9080823/Spotify%2BLyrics_.rmskin

hope this works, never did a .rmskin before.
I did it based on jsmorley skins design (since I use it on my desktop, I did my skins to match the same design) I hope there is no problem with it.

Would

Code: Select all

OnChangeAction=[!CommandMeasure MeasureGetLyrics Update]
work just the same as:

Code: Select all

OnChangeAction=[!Refresh]
I dont know for real but it seems like with [!Refresh] instead of [!CommandMeasure MeasureGetLyrics Update] I have more chance to get that time out error


EDIT:
I will take a look at this and let you know if I have any suggestions... may not be for a few days, but I will definitely keep an eye on your progress... :welcome:

I posted a suggestion concerning your 'terrible' experience thread. Sadly, we all learn things the hard way :(
Thank you very much! :thumbup:


EDIT2: Since I gave you the spotify skin on the rmskin package, you can load it and activate the lyrics by clicking on the note Icon (♪ appears on mouse over)
romulosinner
Posts: 2
Joined: January 8th, 2017, 11:07 pm

Re: Spotify Lyrics help

Post by romulosinner »

winterwulf wrote:https://dl.dropboxusercontent.com/u/9080823/Spotify%2BLyrics_.rmskin

hope this works, never did a .rmskin before.
I did it based on jsmorley skins design (since I use it on my desktop, I did my skins to match the same design) I hope there is no problem with it.
Hi there. I've used the SCaLPI v2.5 lyrics skin (which uses the NowPlaying.dll) for a while now, but lately it hasn't been able to find all the lyrics for the song I listen.

So your idea for redundancy search is really appealing - except I use the AIMP3 player, instead of Spotify. Would it be possible to convert this from using the SpotifyPlugin.dll to the NowPlaying.dll?

I tried to mess with it a little bit, but my programming skills are a little rusty. Any help would be more than welcome.
User avatar
winterwulf
Posts: 94
Joined: August 17th, 2016, 1:48 am
Location: São Paulo - Brazil

Re: Spotify Lyrics help

Post by winterwulf »

romulosinner wrote:Hi there. I've used the SCaLPI v2.5 lyrics skin (which uses the NowPlaying.dll) for a while now, but lately it hasn't been able to find all the lyrics for the song I listen.

So your idea for redundancy search is really appealing - except I use the AIMP3 player, instead of Spotify. Would it be possible to convert this from using the SpotifyPlugin.dll to the NowPlaying.dll?

I tried to mess with it a little bit, but my programming skills are a little rusty. Any help would be more than welcome.
Hi Romulo, sure, I can do that! I am not able to do it early this week though, I am handling some problems with my house, but I believe that I can show you something by the weekend and explain how tweak it whenever you need. =)

cheers!
romulosinner
Posts: 2
Joined: January 8th, 2017, 11:07 pm

Re: Spotify Lyrics help

Post by romulosinner »

winterwulf wrote:Hi Romulo, sure, I can do that! I am not able to do it early this week though, I am handling some problems with my house, but I believe that I can show you something by the weekend and explain how tweak it whenever you need. =)

cheers!
Great! You're life saver, bud!
Post Reply