Kord 0.14.0 Help

Voice

An implementation of Discord's Voice Connection.

Kord Voice acts as the middleman between Discord and your audio.

You may want to use something like LavaPlayer, to deal with getting proper audio. The example will use LavaPlayer to get audio. However, anything that can output 20ms of Opus-encoded 48k stereo audio data should work fine.

repositories { mavenCentral() // Kord Snapshots Repository (Optional): maven("https://oss.sonatype.org/content/repositories/snapshots") } dependencies { implementation("dev.kord:kord-voice:0.14.0") }
repositories { mavenCentral() // Kord Snapshots Repository (Optional): maven { url "https://oss.sonatype.org/content/repositories/snapshots" } } dependencies { implementation("dev.kord:kord-voice:0.14.0") }
<dependency> <groupId>dev.kord</groupId> <artifactId>kord-voice</artifactId> <version>0.14.0</version> </dependency>

Kord Snapshot Repository (Optional)

<repository> <id>snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository>
Last modified: 08 April 2023