How do I make lyrics read through when the song's playing?? Like word for word | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

How do I make lyrics read through when the song's playing?? Like word for word

https://code.sololearn.com/Wgb290Vn3Ni6/?ref=app

2nd Aug 2023, 9:45 AM
Indiphile Menziwa
Indiphile Menziwa - avatar
6 ответов
+ 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
2nd Aug 2023, 10:51 AM
JaScript
JaScript - avatar
+ 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
2nd Aug 2023, 8:04 PM
JaScript
JaScript - avatar
+ 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
4th Aug 2023, 1:38 AM
Bob_Li
Bob_Li - avatar
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...
2nd Aug 2023, 2:28 PM
Indiphile Menziwa
Indiphile Menziwa - avatar
0
True that my bad I hadn't yet added them, but anyway this will help thank you.
3rd Aug 2023, 7:02 PM
Indiphile Menziwa
Indiphile Menziwa - avatar
0
Not sure why but the second is not working can you resend it again
4th Aug 2023, 6:04 AM
Indiphile Menziwa
Indiphile Menziwa - avatar