Music Player
Built-in music player that plays YouTube music during loading. Players can also add their own music.
How It Works
- A default playlist is defined in
cfg/config.lua - Music is added via YouTube links — thumbnails are fetched automatically
- Players can add their own music through the UI
- Player-added music is saved and persists across reconnections
- Players can remove their own custom music entries
- Volume is adjustable with a default starting level
Configuration
| Option | Default | Description |
|---|---|---|
Config.musicVolume | 20 | Default volume level (0-100) |
Config.musicList | table | Default music playlist |
Default Music List
lua
Config.musicList = {
{
name = "Confetti - Ghost",
link = "https://www.youtube.com/watch?v=mgQOEPWxp7c",
},
}
Each entry requires:
name— Display name for the tracklink— YouTube video URL (thumbnail is fetched automatically)
