Tags
Creators
Details
Licensed GPL-3.0-only
Published last year
Updated 3 weeks ago
All versions
2.1
Release
Voice Chat Recording 2.13 weeks ago 698
Compatibility
Minecraft: Java Edition
1.21.1
Platform
NeoForge
Supported environments
Server-side
Client and server
Required content
Changes
Voice Chat Recording 2.1
This update focuses on back end changes, including a few breaking API changes
Changes
- Optimize audio caching, task scheduling, audio saving and audio playing
- No longer spams the logs with cache messages
- Fixes a few errors that could occur when a player in the server doesn't have voice chat installed
- Fixes unnecessarily saving the same audio files multiple times when two mods save it around the same time
- The mod is now server-side, so players can join a server with it without the mod installed themselves; this doesn't apply to Revervox
API changes
- VoiceChatRecordingApi.unsaveAudio no longer takes an IRecorded audio, taking a player and audio UUID instead
- No longer uses Mojang's Pair for audio identification, instead uses a new class AudioId: this means VoiceChatRecordingApi.getNamespaceAudios now returns Set<AudioId> instead
- AudioPlayer no longer exists, AudioPlayingUtil is preferred
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:NdyEsNQU:ShvWjC7k"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:NdyEsNQU:ShvWjC7k"
}

