Open AlmostLook opened 7 years ago
API lyrics search engine -> https://www.programmableweb.com/category/lyrics/apis?category=20278
I use this: https://makeitpersonal.co/lyrics/
We haven't resources to fetch artist and tittle from messic api.
token=$(curl --insecure --data "j_username=usuario&j_password=password" 'https://localhost/messic/messiclogin' | cut -c 77-112)
authors=$(curl --insecure https://localhost/messic/services/authors?messic_token=$token)
artista=mpc -f %artist% | head -n 1
cancion=mpc -f %title% | head -n 1
API_letra="https://makeitpersonal.co/lyrics/"
curl -s --get "$API_letra" --data-urlencode "artist=$artista" --data-urlencode "title=$cancion"
echo -e "$artista - $title\n$song" | less -FX
I need current artist and title played at messic.
Hi team,
After we'll design a frontend to show the lyrics in messic while song is ringing.