+ 1
How do I make lyrics read through when the song's playing?? Like word for word
6 Answers
+ 4
1. In html added id=âlysâ
<p class="lyrics" id="lys"></p>
2. In js code added a global variable lys of this id.
const lys = document.querySelector("#lys");
3. In the nextSong and previuusSong event listeners added
lys.innerHTML = songs[current_song].lyrics;
Here a easiest implementation for example:
https://code.sololearn.com/WgBO1t33xCz0/?ref=app
+ 4
It's a pity that your code presented here didn't implement showing texts. Maybe this link will help otherwise the world wide web:
https://www.sololearn.com/Discuss/2384164/how-can-i-make-real-time-lyrics-connected-with-mp3-music
+ 1
about LRC... it is easier if you can find ready made ones, but if you have to make them yourself, you can do the manual option if it's only a few songs..
https://www.wikihow.com/Make-an-*.Lrc-File
or if you're adventurous and ok with python, you can try this:
https://m.youtube.com/watch?v=yfXbgCkgHU8
the link to his github repo is in the description under the video.
this:
https://github.com/rye761/pysync
0
Well, thanks, I meant to read them as a song goes, I'll add them alright and style them that's just fine no big deal but I'm Interested in reading them as a so goes if there's a way to do that. I already have an idea in mind but I'm not sure if I'll not need an API plus...
0
True that my bad I hadn't yet added them, but anyway this will help thank you.
0
Not sure why but the second is not working can you resend it again