#live lyrics endpoint
1 messages · Page 1 of 1 (latest)
You can try node-fetch request, it works for me, but you need to play around with it a bit.
const restUrl = `${baseUrl}/v4/sessions/${sessionId}/players/${guildId}/track/lyrics`;
const params = new URLSearchParams({
skipTrackSource: "false"
});
const res = await fetch(`${restUrl}?${params.toString()}`, {
headers: {
Authorization: lavalinkAuth
}
});
for example code snippet
alr, ty ill see
Only here you have regular lyrics without live, but maybe it will work for live too.
I've already tried the live with shoukaku and it never worked.
I'm currently trying magmastream to see if it will work aswell.
lavalink-client