Common questions about Minecraft sound events, the /playsound command, and how to use this site.
How do I use the /playsound command?
The /playsound command takes a sound event ID, a sound category (master, music, record, weather, block, hostile, neutral, player, ambient, voice), and a player selector. Example: /playsound minecraft:entity.zombie.ambient master @p. You can copy a complete command for any sound from its detail page on this site.
What is a Minecraft sound event?
A sound event is a named entry in Minecraft's sounds.json file that maps a friendly identifier (like entity.zombie.ambient) to one or more .ogg audio files. The game references sounds by event name, so multiple sound files can be grouped behind a single event with weighted random selection.
How do I add a custom sound to a resource pack?
Place your .ogg files under assets/<namespace>/sounds/, then define the sound event in assets/<namespace>/sounds.json. The JSON entry lists the sound files (paths relative to the sounds folder) and optional volume, pitch, weight, and stream properties. Reference your sound from commands or data packs as <namespace>:<event_name>.
What is the difference between pitch and volume?
Volume scales the loudness (0 = silent, 1 = full volume; higher values increase the audible distance rather than loudness above the listener's threshold). Pitch acts as a playback-rate multiplier (0.5 = one octave down, 1 = original, 2 = one octave up). Pitch also affects playback speed — higher pitch plays back faster.
Why does playing a sound give a random variant each time?
Many sound events bundle multiple .ogg files (variants). Each variant has a weight in sounds.json; when the event fires, Minecraft picks a variant using weighted random selection. This is why mob ambient or step sounds feel varied instead of repetitive.
Are the sound files on this site the same as in the actual Minecraft game?
Yes. The .ogg files served by this site are the same files extracted from the official Minecraft client. The event names, file paths, and audio data match what the game uses.
How do I share a sound combination?
Add the sounds you want to your selection, adjust pitch and volume, and copy the URL from your browser. The URL stores every selected sound, its pitch, volume, and any layered variants. Send the link to anyone and they'll see the same combination.
Why are some sound events not playing anything?
A few sound events are placeholders or are gated on specific in-game conditions (cinematic music cues, jukebox-only tracks). If a preview fails, try playing a different variant on the sound's detail page, or check your browser's audio permissions.