본문으로 건너뛰기

사운드 브라우저

알려진 GTA V 사운드 이름과 사운드 세트를 검색해 여기서 바로 들어보고, 동작하는 PlaySoundFrontend나 PlaySoundFromCoord 스니펫을 복사하세요. 원하는 소리를 찾겠다고 게임을 다시 켤 필요가 없습니다.

이 도구와 설명은 아직 영어로만 제공됩니다.

레퍼런스오디오, 네이티브문서 읽기

How to use it

Search by sound name or sound set (beep, checkpoint, HUD_FRONTEND). Click a row to hear it, or use the arrow keys to step through the list and Space to play or stop. The panel on the right has the exact name and set to copy, plus a ready Lua call. The URL keeps your search, set and selected sound, so you can send someone a link to the exact beep you mean.

Playing a sound in FiveM

-- Fire and forget, only this client hears it
PlaySoundFrontend(-1, "SELECT", "HUD_FRONTEND_DEFAULT_SOUNDSET", true)

-- With a sound id you can stop it later (needed for looping sounds)
local soundId = GetSoundId()
PlaySoundFromEntity(soundId, "Beep_Red", PlayerPedId(), "DLC_HEIST_HACKING_SNAKE_SOUNDS", false, 0)
Wait(3000)
StopSound(soundId)
ReleaseSoundId(soundId)

PlaySoundFrontend plays a 2D sound. PlaySoundFromCoord andPlaySoundFromEntity place it in the world. Pass -1 as the sound id for one-shots. For anything that loops, get an id with GetSoundId, stop it with StopSound and always hand it back with ReleaseSoundId: the game only has a limited pool.

About the previews

The previews are close to what you hear in game, but some things a web page cannot copy exactly:

  • Variations. Many sounds pick a random wave each time. Those rows show a shuffle icon and the preview is one of the variations.
  • Synthesized sounds. A lot of HUD beeps are generated live by the game's modular synth. They have no recorded wave, so there is no preview. When only part of a sound is synthesized, you hear the recorded part.
  • Names without a set. Some names in the list were collected without their sound set. If the game has no standalone sound by that name there is no preview, and the panel links to the same name in other sets.
  • Levels. Clips are evened out so you can compare them. In game, volume also depends on the sound's category, distance and your audio settings.

If a sound is silent in game, check that the set exists in your game build (DLC sets needsv_enforceGameBuild), and that its wave bank is loaded (RequestScriptAudioBank; the panel shows the bank when it is not one of the always loaded ones).

Credits

Sound names and sets frommikigoalie/gta_sound_tester(a FiveM NUI for testing sounds in game), originally collected byPlebMasters. Thanks toCodeWalker by dexyfex.