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
What issues are you experiencing
I have some Unresolved reference, I will send my code.
It would be much more useful to see which refrenced were unresolvbed
@OptIn(KordVoice::class)
Unresolved reference: KordVoice An annotation argument must be a compile-time constantval track = lavaplayerManager.playTrack(query, player)
Unresolved reference: playTrackval connection = channel.connect { // the audio provider should provide frames of audio audioProvider { AudioFrame.fromData(player.provide()?.data) } }
Unresolved reference: connect Unresolved reference: audioProvider
My code is for now a copy past of the example : https://kord.dev/implementing-a-music-bot.html
Kord Help
Implementing a music bot | Kord
Try using
iplementation("dev.kord:kord-core-voice:0.15.0")
This not solve my Unresolved reference ๐.
I add it to gradle refresh, and also sync gradle.
Take a screenshot
Like this ?


I can make a public repo on GitHub, for debug if you want ?

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
Hum I think it's my bad cause I'm maybe missing repositories ๐ค
you did not add core-voice
In repo or dependencies ?
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
Ok this solve connect and audioProvider thanks.
Last one is missing but I think it's same my gradle is probably bad.

That is lavaplayer code
I can't help you with lavapayyer
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 ๐
The docs ill eventually be updated, have like an 6 hr train ride ahead of me maybe I will do it then
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.
Docs is important ๐ .
Okey thanks, we can make issues and pull request there ?
yeah sure
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.
I think you need to create a player first
playerManager.createPlayer()
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.
Test result :

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 ๐.
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...