Skip to content

LyricsLineEvent

The LyricsLineEvent is sent periodically by the server to the client during playback if the player is subscribed to synchronized lyrics. It indicates which line of the lyrics should be active at the current moment.


FieldTypeDescription
opstringAlways event
typestringAlways LyricsLineEvent
guildIdstringThe Discord guild ID
lineIndexnumberThe 0-indexed index of the current line
lineobjectThe Lyrics Line object
skippedbooleantrue if this line was reached by seeking or skipping

{
"op": "event",
"type": "LyricsLineEvent",
"guildId": "1234567890",
"lineIndex": 5,
"line": {
"timestamp": 45000,
"duration": 2000,
"line": "We're going to the moon!"
},
"skipped": false
}