Mod
Ambient Music Additions
No reviews yet
Allows custom music tracks to be added into the vanilla music rotation at configurable weights, biomes, structures, etc.
Does not follow a specific thematic focus apart from vanilla Minecraft.
Used for mods with little to no gameplay elements.
Includes quality of life improvements and small tweaks to enhance and customize gameplay.
Adds new music or changing the game's music and sound effects.
Fabric is a mod loader for versions 1.14+ of Minecraft, particularly popular for client side and optimization mods.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
Resources
External Links
About
Description
Ambient Music Additions allows the addition of custom .ogg tracks to the Vanilla music rotation at configurable weights, with the additional ability to divide the music into categories. The music can play in specific structures and biomes, modded or otherwise.
----------------------------------------------
UPDATE: 1.1:
A timeRanges argument has been added. The minTime and MaxTime are the time values in which the track could play, while the label is just for display purposes when using the info command in game.
There are a few options for label:
day
night
dawn
dusk
noon
midnight
"timeRanges": [
{
"label": "night",
"minTime": 12000,
"maxTime": 24000
}
]
Here is what a completed entry looks like with timeRanges included:
{
"soundId": "ambient_music_generator:lost_maze",
"replaceProbability": 1.0,
"weight": 10,
"biomes": [
"minecraft:swamp"
],
"structures": [],
"category": "overworld",
"timeRanges": [
{
"label": "night",
"minTime": 12000,
"maxTime": 24000
}
]
}
----------------------------------------------
The Mod will by default create a resource pack folder called "Ambient Music Generator". This should be enabled for everything to function properly.
Inside the music folder of this pack is where you will place your .ogg files for addition. Inside the sounds folder is sounds.json.
"example_track": {
"sounds": [
{
"name": "ambient_music_generator:music/example_track",
"stream": true
}
],
"subtitle": "subtitles.ambient_music_generator.example_track"
},
Each ogg file from the music folder should be listed in the sounds.json folder like so. The subtitle field is not required. The important thing is that "example_track" is replaced with the EXACT name of your .ogg file without the extension. I.E, if I wanted to add a track called, forest_creatures.ogg, the entry would look like the following:
"forest_creatures": {
"sounds": [
{
"name": "ambient_music_generator:music/forest_creatures",
"stream": true
}
],
"subtitle": "subtitles.ambient_music_generator.forest_creatures"
},
Once sounds.json is configured, another config file exists in the mods config folder, ambient-music-generator.json.
entries in this file look like the following:
{
"customTracks": [
{
"soundId": "ambient_music_generator:far_fields",
"replaceProbability": 1.0,
"weight": 10,
"biomes": [
"minecraft:jungle"
],
"structures": [],
"category": "overworld"
}
]
}
The SOUND ID is the same id used in sounds.json.
The Replace Probability determines how often the song will play instead of a vanilla track, with 1.0 meaning the track will always replace any vanilla options.
The category option allows you to put tracks into a category. Tracks in the same category will play according to their individual weights, with higher weights making it more likely that a track in a given category will play. The game will randomly select a category to play music from if it selects a custom track instead of a vanilla one.
Lastly, the biome and structure lists allow you to configure which biomes/structures the music should play in.
NOTE: Because structure detection is server sided, this mod MUST be installed on both the client and server to function properly in multiplayer.
The mod also adds a few useful commands:
/ambientmusic info: Displays info about the current track playing, the number of custom tracks loaded, the current structure/biome, and which custom tracks can play in your given situation.
/ambientmusic skip: Immediately skips to the next music track. This command works with any vanilla tracks as well and integrates properly with the music frequency option in the game settings.
/ambientmusic reload: Reloads sounds.json and ambient-music-generation.json.
Please notify me of any bugs that occur while playing. This mod is intended as a useful modpack utility and I welcome its use in any modpack.
Ambient Music Additions allows the addition of custom .ogg tracks to the Vanilla music rotation at configurable weights, with the additional ability to divide the music into categories. The music can play in specific structures and biomes, modded or otherwise.
----------------------------------------------
UPDATE: 1.1:
A timeRanges argument has been added. The minTime and MaxTime are the time values in which the track could play, while the label is just for display purposes when using the info command in game.
There are a few options for label:
day
night
dawn
dusk
noon
midnight
"timeRanges": [
{
"label": "night",
"minTime": 12000,
"maxTime": 24000
}
]
Here is what a completed entry looks like with timeRanges included:
{
"soundId": "ambient_music_generator:lost_maze",
"replaceProbability": 1.0,
"weight": 10,
"biomes": [
"minecraft:swamp"
],
"structures": [],
"category": "overworld",
"timeRanges": [
{
"label": "night",
"minTime": 12000,
"maxTime": 24000
}
]
}
----------------------------------------------
The Mod will by default create a resource pack folder called "Ambient Music Generator". This should be enabled for everything to function properly.
Inside the music folder of this pack is where you will place your .ogg files for addition. Inside the sounds folder is sounds.json.
{
"example_track": {
"sounds": [
{
"name": "ambient_music_generator:music/example_track",
"stream": true
}
],
"subtitle": "subtitles.ambient_music_generator.example_track"
}
}
Each ogg file from the music folder should be listed in the sounds.json folder like so. The subtitle field is not required. The important thing is that "example_track" is replaced with the EXACT name of your .ogg file without the extension. I.E, if I wanted to add a track called, forest_creatures.ogg, the entry would look like the following:
{
"forest_creatures": {
"sounds": [
{
"name": "ambient_music_generator:music/forest_creatures",
"stream": true
}
],
"subtitle": "subtitles.ambient_music_generator.forest_creatures"
}
}
Once sounds.json is configured, another config file exists in the mods config folder, ambient-music-generator.json.
entries in this file look like the following:
{
"customTracks": [
{
"soundId": "ambient_music_generator:far_fields",
"replaceProbability": 1.0,
"weight": 10,
"biomes": [
"minecraft:jungle"
],
"structures": [],
"category": "overworld"
}
]
}
-
The SOUND ID is the same id used in sounds.json.
-
The Replace Probability determines how often the song will play instead of a vanilla track, with 1.0 meaning the track will always replace any vanilla options.
-
The category option allows you to put tracks into a category. Tracks in the same category will play according to their individual weights, with higher weights making it more likely that a track in a given category will play. The game will randomly select a category to play music from if it selects a custom track instead of a vanilla one.
-
Lastly, the biome and structure lists allow you to configure which biomes/structures the music should play in.
NOTE: Because structure detection is server sided, this mod MUST be installed on both the client and server to function properly in multiplayer.
The mod also adds a few useful commands:
/ambientmusic info: Displays info about the current track playing, the number of custom tracks loaded, the current structure/biome, and which custom tracks can play in your given situation.
/ambientmusic skip: Immediately skips to the next music track. This command works with any vanilla tracks as well and integrates properly with the music frequency option in the game settings.
/ambientmusic reload: Reloads sounds.json and ambient-music-generation.json.
Please notify me of any bugs that occur while playing. This mod is intended as a useful modpack utility and I welcome its use in any modpack.
Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers
Statistics
Resources