K
Kordโ€ข2w ago
Tibou

Kord music bot and documentation.

Hello everyone, As some of you may have noticed, the Javacord library is reaching the end of its service, which forces people like me to recode all their Discord bots ๐Ÿ˜ญ. Since I already code in Kotlin, my choice naturally turns to Kord. However, I am facing a problem: the documentation on the example implementation of music does not seem to be up-to-date, and the example does not work. https://kord.dev/implementing-a-music-bot.html Is there a functional example of the music implementation?
32 Replies
SchlaubiBus
SchlaubiBusโ€ข2w ago
What issues are you experiencing
Tibou
TibouOPโ€ข2w ago
I have some Unresolved reference, I will send my code.
SchlaubiBus
SchlaubiBusโ€ข2w ago
It would be much more useful to see which refrenced were unresolvbed
Tibou
TibouOPโ€ข2w ago
dependencies {
implementation("dev.lavalink.youtube:common:1.12.0")
implementation("dev.arbjerg:lavaplayer:2.2.3")
implementation("dev.kord:kord-core:0.15.0")
implementation("dev.kord:kord-voice:0.15.0")
}
dependencies {
implementation("dev.lavalink.youtube:common:1.12.0")
implementation("dev.arbjerg:lavaplayer:2.2.3")
implementation("dev.kord:kord-core:0.15.0")
implementation("dev.kord:kord-voice:0.15.0")
}
import com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager
import com.sedmelluq.discord.lavaplayer.source.AudioSourceManagers
import dev.kord.common.entity.Snowflake
import dev.kord.core.event.message.MessageCreateEvent
import dev.kord.voice.VoiceConnection
import dev.kord.core.Kord
import dev.kord.core.behavior.reply
import dev.kord.core.on
import dev.kord.voice.AudioFrame
import com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager
import com.sedmelluq.discord.lavaplayer.source.AudioSourceManagers
import dev.kord.common.entity.Snowflake
import dev.kord.core.event.message.MessageCreateEvent
import dev.kord.voice.VoiceConnection
import dev.kord.core.Kord
import dev.kord.core.behavior.reply
import dev.kord.core.on
import dev.kord.voice.AudioFrame
@OptIn(KordVoice::class)
Unresolved reference: KordVoice An annotation argument must be a compile-time constant
val track = lavaplayerManager.playTrack(query, player)
Unresolved reference: playTrack
val connection = channel.connect { // the audio provider should provide frames of audio audioProvider { AudioFrame.fromData(player.provide()?.data) } }
Unresolved reference: connect Unresolved reference: audioProvider
Tibou
TibouOPโ€ข2w ago
My code is for now a copy past of the example : https://kord.dev/implementing-a-music-bot.html
SchlaubiBus
SchlaubiBusโ€ข2w ago
Try using iplementation("dev.kord:kord-core-voice:0.15.0")
Tibou
TibouOPโ€ข2w ago
This not solve my Unresolved reference ๐Ÿ˜•. I add it to gradle refresh, and also sync gradle.
SchlaubiBus
SchlaubiBusโ€ข2w ago
Take a screenshot
Tibou
TibouOPโ€ข2w ago
Like this ?
No description
Tibou
TibouOPโ€ข2w ago
No description
Tibou
TibouOPโ€ข2w ago
I can make a public repo on GitHub, for debug if you want ?
SchlaubiBus
SchlaubiBusโ€ข2w ago
import dev.kord.core.behavior.channel.connect
import dev.kord.voice.KordVoice
import dev.kord.core.behavior.channel.connect
import dev.kord.voice.KordVoice
Tibou
TibouOPโ€ข2w ago
No description
SchlaubiBus
SchlaubiBusโ€ข2w ago
it's dev.kord.common.annotation.KordVoice that was my bad and for the 2nd one please show your gradle file and the log from gradle sync
Tibou
TibouOPโ€ข2w ago
repositories {
mavenCentral()
maven("https://repo.kord.dev/snapshots")
maven("https://oss.sonatype.org/content/repositories/snapshots")
}

dependencies {
testImplementation(kotlin("test"))
implementation("dev.lavalink.youtube:common:1.12.0")
implementation("dev.arbjerg:lavaplayer:2.2.3")
implementation("dev.kord:kord-core:0.15.0")
implementation("dev.kord:kord-voice:0.15.0")
}
repositories {
mavenCentral()
maven("https://repo.kord.dev/snapshots")
maven("https://oss.sonatype.org/content/repositories/snapshots")
}

dependencies {
testImplementation(kotlin("test"))
implementation("dev.lavalink.youtube:common:1.12.0")
implementation("dev.arbjerg:lavaplayer:2.2.3")
implementation("dev.kord:kord-core:0.15.0")
implementation("dev.kord:kord-voice:0.15.0")
}
Hum I think it's my bad cause I'm maybe missing repositories ๐Ÿค”
SchlaubiBus
SchlaubiBusโ€ข2w ago
you did not add core-voice
Tibou
TibouOPโ€ข2w ago
In repo or dependencies ?
SchlaubiBus
SchlaubiBusโ€ข2w ago
implementation("dev.kord:kord-core:0.15.0") implementation("dev.kord:kord-voice:0.15.0") You need kord-core-voice instead of those two
Tibou
TibouOPโ€ข2w ago
Ok this solve connect and audioProvider thanks. Last one is missing but I think it's same my gradle is probably bad.
No description
SchlaubiBus
SchlaubiBusโ€ข2w ago
That is lavaplayer code I can't help you with lavapayyer
Tibou
TibouOPโ€ข2w ago
This is ok, I will search. Others question are you going to update the docs ? And how can we contribute to it ? And thanks for all your help ๐Ÿ™
SchlaubiBus
SchlaubiBusโ€ข2w ago
The docs ill eventually be updated, have like an 6 hr train ride ahead of me maybe I will do it then
SchlaubiBus
SchlaubiBusโ€ข2w ago
And how can we contribute to it ?
docs are hosted here: https://github.com/kordlib/kord-wiki
GitHub
GitHub - kordlib/kord-wiki: Repository containing the new Kord wiki
Repository containing the new Kord wiki. Contribute to kordlib/kord-wiki development by creating an account on GitHub.
Tibou
TibouOPโ€ข2w ago
Docs is important ๐Ÿ™ . Okey thanks, we can make issues and pull request there ?
SchlaubiBus
SchlaubiBusโ€ข2w ago
yeah sure
Tibou
TibouOPโ€ข2w ago
Thanks you for your time. See you. I will try solve my problem with lavaplayer, and publish my result here, and if I can on the doc.
SchlaubiBus
SchlaubiBusโ€ข2w ago
I think you need to create a player first playerManager.createPlayer()
Tibou
TibouOPโ€ข7d ago
Yeah but there is also something with a loader ect, I will go read my old code for see how I do ๐Ÿ˜‚. You solve my main problems. Okey now it work my kord discord bot is playing music ! Thanks you. I will write a full example send it here and try to contribute to the documentation (and probably open a other help about contribution ๐Ÿ˜ฌ ๐Ÿ˜… ). So here we are. Here is what I can offer as an example of an implementation of a music bot with Kord and Lavaplayer.
repositories {
mavenCentral()

// Lavaplayer
maven("https://jitpack.io") // For com.github.walkyst.JAADec-fork:jaadec-ext-aac & ibxm-fork:com.github.walkyst:ibxm-fork
// YouTube source
maven("https://maven.lavalink.dev/releases")
}

dependencies {
implementation("dev.kord:kord-core-voice:0.15.0")

implementation("dev.arbjerg:lavaplayer:2.2.3")
implementation("dev.lavalink.youtube:common:1.12.0")
}
repositories {
mavenCentral()

// Lavaplayer
maven("https://jitpack.io") // For com.github.walkyst.JAADec-fork:jaadec-ext-aac & ibxm-fork:com.github.walkyst:ibxm-fork
// YouTube source
maven("https://maven.lavalink.dev/releases")
}

dependencies {
implementation("dev.kord:kord-core-voice:0.15.0")

implementation("dev.arbjerg:lavaplayer:2.2.3")
implementation("dev.lavalink.youtube:common:1.12.0")
}
Tibou
TibouOPโ€ข7d ago
Tibou
TibouOPโ€ข7d ago
Test result :
No description
Tibou
TibouOPโ€ข7d ago
I have add a CoroutineScope to allow to send messages reply in this anonymous object AudioLoadResultHandler. Idk if it's the best way do solve this problem, but in any case it's better to create a class to manage loaded track, this is just a simple example inpireby by the README of lavaplayer. @SchlaubiBus (Hum sorry for ping, idk if I can't ping you, but if not tell me and I will stop ๐Ÿ˜ถ). Is this code eligible to be added to the documentation? I am open to any suggestions for improvement ๐Ÿ˜‡.
Tibou
TibouOPโ€ข6d ago
Well here is my Pull request ๐Ÿ˜Š .
GitHub
Update music bot implementation example. by Tibou-17 ยท Pull Reques...
This pull request follows a discussion on the Kord Discord help forum : https://discord.com/channels/556525343595298817/1354901794068631592 . Here is my proposal to update the example implementatio...

Did you find this page helpful?