Resource icon

OBS Lyrics 2.0.0

JDHaviland

New Member
I tried the Lyrics++, but could not select a source. Refreshing, restarting, etc. refused to populate the available sources. Went back to lyrics+ and it worked. We’ll see if it continues to work.
I am giving up on Lyrics. I spent an hour this afternoon setting up the 5 hymns for Sunday. I clicked to prepare the last one only to have it instantly crash OBS completely. When I restarted OBS, all 5 hymns were gone! I wasn't about to start all over again. Not a happy camper!
 

JDHaviland

New Member
I have given up on Lyrics. Hotkeys are flakey and occasionally don’t respond. Then the last time I was setting up the 5 hymns for Sunday morning, I hit “prepare” for the last one and OBS crashed immediately. When I restarted it, all five hymns were gone again. I just wasn’t going through the whole process of setting them all up again. It’s a shame, because it seemed promising, but it’s just too unreliable.
 

DCStrato

Member
I tried the Lyrics++, but could not select a source. Refreshing, restarting, etc. refused to populate the available sources. Went back to lyrics+ and it worked. We’ll see if it continues to work.
Sounds like something to do with the Mac Mini. I am trying to research what that might be as I have no way to test or debug it. I found some things on needing to change rights to get access to the keyboard for hot keys, but without a mini to try it I am not sure if or when I will be able to debug this. D.C
 

DCStrato

Member
I am giving up on Lyrics. I spent an hour this afternoon setting up the 5 hymns for Sunday. I clicked to prepare the last one only to have it instantly crash OBS completely. When I restarted OBS, all 5 hymns were gone! I wasn't about to start all over again. Not a happy camper!
I am sorry it is not working for you. I wish I could debug this on a Mac, but I don't own one. D.C.
 

StoStudios

New Member
Hello, just wanted to appreciate the effort on putting up this script you created. It's totally a game changer for us! Here are some of my suggestion to improve further the system.

1. In our case, the fade option has little range only, we wish to have a much quicker fade time.
2. We hope the script may add an overview of the lyrics and can press the part where we can jump to because we have the moment where we seek along the hotkeys the right part of the song we are singing.

We appreciate to see this script much improve in the future because its so much helpful specially today that most churches are doing livestream to further reach many. Thanks!
 
Two Things:
1) Thank you amirchev and DCStrato for this scrip. It is amazing. Makes displaying lyrics for our church broadcast so much easier than any other solution we found.

2) As someone noted above the script does have some issues running on a mac mini (and presumably anything else running macOS). I'm not here to complain but to explain the problem and describe how we fixed it.

- The PROBLEM was that songs did not appear to be permanently saved. During a session you could save a song with lyrics, prepare it, and use it without any issues, but if you closed OBS or shut down the computer, those songs would be gone. Alternatively if you saved songs into the songs directory (in User/.config/.obs_lyrics) the titles would show up on the "Songs Directory" dropdown, but choosing them would give an error and would not pull up the lyrics nor allow you to prepare the song. Thus we were stuck copying and pasting in song titles and lyrics on the day we needed them (not the end of the world, but a bit of a hassle).

-The SOLUTION: in looking around my files and discovered that songs were being save in the .config folder instead of the .config/.obs_lyrics folder, moreover they would save with a name that included part of the path but with the slash the wrong way. lyrics.lua would looks for songs in the .config/.obs_lyrics folder but couldn't load them from there. I am not a lua coder in any way but I discovered that if I made a small change in the get_songs_file_path function, I could get to script to work better with macOS. In line 1641 of the lyrics.lua I changed ' return get_songs_folder_path() .. "\\" .. name .. suffix ' to ' return get_songs_folder_path() .. "/" .. name .. suffix ' (changed the double back slash to a single forward slash). Now songs save to the song directory correctly and any songs saved to that directly can be called using the dropdown list. I don't know if this is the best fix and it defintely BREAKS the script when using Windows (I have my own windows laptop and tested it), but it certainly makes lyrics.lua work better on our mac mini.
 
Top