Simple Voice Chat Music Addon
🟡 Updated this year⚠️ Install Order · 2 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
Preview

🔍 Analysis
- 👍 0.1% endorsement rate
- 🏆 #142 of 581 adventure mods in this game by downloads
📋 About This Mod
# Music Music is a server-side Fabric mod that streams URL music through Simple Voice Chat. It is built for shared server music with queues, saved playlists, YouTube playlist import, player targeting, personal opt-out, and YouTube OAuth support through Lavaplayer/youtube-source. ## Features - Streams music through Simple Voice Chat static audio channels. - Supports YouTube, YouTube Music, YouTube playlist links, and other Lavaplayer-supported remote sources. - Expands pasted YouTube playlist links into individual songs. - Shows title, creator, requester, duration, queue position, and playback diagnostics. - Cleans YouTube topic-channel creator names, so `Artist - Topic` displays as `Artist`. - One shared server-wide music stream. - Global queue with skip, repeat, and shuffle. - Persistent saved playlists. - Forward/backward seeking by seconds. - Player targeting and exclusion controls. - Player self-service `/music leave` and `/music join`. - Simple Voice Chat "Music" volume category for personal client volume. - Global server volume control. ## Requirements - Fabric Loader. - Simple Voice Chat installed on the server. - Simple Voice Chat installed on clients that want to hear the stream. - A Minecraft version supported by the mod file you install. This mod controls music on the server, but players only hear it through their Simple Voice Chat connection. ## Installation 1. Install Fabric Loader on the server. 2. Install Simple Voice Chat on the server. 3. Install this mod in the server `mods` folder. 4. Players who want to hear the stream must install Simple Voice Chat on their clients. 5. Start the server and run `/music help`. ## Quick Start ```text /music now /music play https://www.youtube.com/watch?v=VIDEO_ID 10 /music queue add https://music.youtube.com/watch?v=NEXT_VIDEO_ID /music queue add https://www.youtube.com/playlist?list=PLAYLIST_ID /music queue list ``` If YouTube asks for login or blocks playback, complete the OAuth device login shown in the server log. ## How It Works 1. A player runs `/music play`, queues a URL, or starts a saved playlist. 2. Lavaplayer loads the URL. 3. YouTube links are handled by `youtube-source`. 4. The mod sends encoded audio frames into a Simple Voice Chat static audio channel. 5. Selected listeners hear the same stream. There is one active global stream per server. Starting a new track with `/music play` replaces current playback and clears the runtime queue. ## YouTube OAuth YouTube may block automated playback clients. This mod supports YouTube OAuth through `youtube-source`. Config file: ```text config/music.json ``` Important fields: ```json { "youtubeOAuthEnabled": true, "youtubeOAuthRefreshToken": "", "youtubeOAuthSkipInitialization": false } ``` First login flow: 1. Start the server. 2. Run `/music play <youtube-url>`. 3. Check the server log for the Google device login code. 4. Complete the login in a browser. 5. The refresh token is saved to `config/music.json`. The YouTube login is global for the server, not per player. Keep `music.json` private because it can contain an OAuth refresh token. Using a secondary YouTube account is recommended. ## Commands Run: ```text /music help /music help queue /music help playlist /music help target /music help volume ``` ### Everyone ```text /music help /music now /music queue list /music leave /music join ``` - `/music leave` opts the player out of the music stream. - `/music join` removes the personal opt-out. - Personal volume is controlled with the Simple Voice Chat client "Music" slider. ### Playback All players: ```text /music play <url> /music play <url> <volume> /music stop /music pause /music resume /music skip /music forward <seconds> /music backward <seconds> /music volume <1-100> /music repeat off /music repeat one /music repeat queue /music shuffle on /music shuffle off ``` Behavior: - `/music play <url>` starts immediately and clears the runtime queue. - `/music play <youtube-playlist-url>` starts the first playlist track and queues the rest. - `/music play <url> <volume>` starts playback and sets global volume from `1` to `100`. - `/music forward <seconds>` seeks ahead in the current track. - `/music backward <seconds>` seeks back in the current track. - `/music repeat one` repeats the current track. - `/music repeat queue` loops through the queue. - `/music shuffle on` chooses queued tracks randomly. ### Queue All players: ```text /music queue add <url> /music queue remove <index> /music queue clear /music skip ``` Everyone can view: ```text /music queue list ``` Queue behavior: - The runtime queue is not saved after server restart. - `/music queue add <url>` appends a track. - `/music queue add <youtube-playlist-url>` expands the playlist and appends each song. - Queue metadata loads in the background, so a new item can briefly show as `title loading`. - YouTube creator names ending in ` - Topic` are displayed without that suffix. - If metadata fails, the UR
Music is a server-side Fabric mod that streams URL music through Simple Voice Chat. It is built for shared server music with queues, saved playlists, YouTube playlist import, player targeting, personal opt-out, and YouTube OAuth support through Lavaplayer/youtube-source.
## Features
- Streams music through Simple Voice Chat static audio channels.
- Supports YouTube, YouTube Music, YouTube playlist links, and other Lavaplayer-supported remote sources.
- Expands pasted YouTube playlist links into individual songs.
- Shows title, creator, requester, duration, queue position, and playback diagnostics.
- Cleans YouTube topic-channel creator names, so `Artist - Topic` displays as `Artist`.
- One shared server-wide music stream.
- Global queue with skip, repeat, and shuffle.
- Persistent saved playlists.
- Forward/backward seeking by seconds.
- Player targeting and exclusion controls.
- Player self-service `/music leave` and `/music join`.
- Simple Voice Chat "Music" volume category for personal client volume.
- Global server volume control.
## Requirements
- Fabric Loader.
- Simple Voice Chat installed on the server.
- Simple Voice Chat installed on clients that want to hear the stream.
- A Minecraft version supported by the mod file you install.
This mod controls music on the server, but players only hear it through their Simple Voice Chat connection.
## Installation
1. Install Fabric Loader on the server. 2. Install Simple Voice Chat on the server. 3. Install this mod in the server `mods` folder. 4. Players who want to hear the stream must install Simple Voice Chat on their clients. 5. Start the server and run `/music help`.
## Quick Start
```text /music now /music play https://www.youtube.com/watch?v=VIDEO_ID 10 /music queue add https://music.youtube.com/watch?v=NEXT_VIDEO_ID /music queue add https://www.youtube.com/playlist?list=PLAYLIST_ID /music queue list ```
If YouTube asks for login or blocks playback, complete the OAuth device login shown in the server log.
## How It Works
1. A player runs `/music play`, queues a URL, or starts a saved playlist. 2. Lavaplayer loads the URL. 3. YouTube links are handled by `youtube-source`. 4. The mod sends encoded audio frames into a Simple Voice Chat static audio channel. 5. Selected listeners hear the same stream.
There is one active global stream per server. Starting a new track with `/music play` replaces current playback and clears the runtime queue.
## YouTube OAuth
YouTube may block automated playback clients. This mod supports YouTube OAuth through `youtube-source`.
Config file:
```text config/music.json ```
Important fields:
```json { "youtubeOAuthEnabled": true, "youtubeOAuthRefreshToken": "", "youtubeOAuthSkipInitialization": false } ```
First login flow:
1. Start the server.
2. Run `/music play
The YouTube login is global for the server, not per player. Keep `music.json` private because it can contain an OAuth refresh token. Using a secondary YouTube account is recommended.
## Commands
```text /music help /music help queue /music help playlist /music help target /music help volume ```
### Everyone
```text /music help /music now /music queue list /music leave /music join ```
- `/music leave` opts the player out of the music stream.
- `/music join` removes the personal opt-out.
- Personal volume is controlled with the Simple Voice Chat client "Music" slider.
### Playback
All players:
```text
/music play
- `/music play
` starts immediately and clears the runtime queue. - `/music play
` starts the first playlist track and queues the rest. - `/music play
` starts playback and sets global volume from `1` to `100`. - `/music forward
` seeks ahead in the current track. - `/music backward
` seeks back in the current track. - `/music repeat one` repeats the current track.
- `/music repeat queue` loops through the queue.
- `/music shuffle on` chooses queued tracks randomly.
All players:
```text
/music queue add
Everyone can view:
```text /music queue list ```
Queue behavior:
- The runtime queue is not saved after server restart.
- `/music queue add
` appends a track. - `/music queue add
` expands the playlist and appends each song. - Queue metadata loads in the background, so a new item can briefly show as `title loading`.
- YouTube creator names ending in ` - Topic` are displayed without that suffix.
- If metadata fails, the UR
📊 Mod Details
- Game
- Minecraft Mods
- Author
- rjiangame
- Version
- 1.0.0
- Downloads
- 5,520
- Endorsements
- 8
- Category
- adventure
- Created
- 5/5/2026
- Updated
- 6/21/2026
- Game Versions
- 26.2
- Tags
- adventure, social, utility
🔧 How to Install Minecraft Mods Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Mods →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Mods versions does Simple Voice Chat Music Addon support?
The author lists 26.2. Other versions may work but are untested by the author.
What is the latest version of Simple Voice Chat Music Addon?
Version 1.0.0, published 2026-06-21 with 5,520 downloads recorded at the source.
Keep browsing — more Minecraft Mods mods await