Frictional Games Forum (read-only)
Custom Sound too low - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: Custom Sound too low (/thread-15536.html)



Custom Sound too low - Twitchez - 05-20-2012

Hey Forum!

I been working on a Custom Story for 8 months now together with a partner, and we are closing up to the finish. At the moment I'm adding my custom voices from our voice actors, but doesn't matter how much we amplify the volume, it is still too low. How can I change that, and what does these parameters mean?

<PROPERTIES Volume="10" MinDistance="1" MaxDistance="2" Random="0" Interval="0" FadeEnd="False" FadeStart="False" Stream="False" Loop="False" Use3D="false" Blockable="False" BlockVolumeMul="1.5" Priority="5" />


Does BlockVolumeMul do anything to lower it?

All the best!

//Twitchez


RE: Custom Sound too low - Adny - 05-20-2012

Parameters are simple! Here's a quick explanation:

BlockVolumeMul only applies if "Blockable" is true. I believe that refers to the dampening/lowering of sound if there are objects like walls between the sound and the player.

Volume is self explanatory, min/max distance is how close/far the player can be to hear the sound, Random is used to generate a random integer to choose between multiple sounds in a set (like man_whimper_01, 02, 03, etc). Not sure what interval does. Fade end/start will fade the sound in/out. Loop will repeat the sound once it is over.

As for your specific problem: If your recording volume is too low, you'd have to raise it significantly in game in order to hear it. I'd suggest using a free sound editor like Audacity to amplify it. Also, I noticed that the priority is 5 (Priority="5"). Lower integers (0, 1, 2, etc.) have higher priority than larger integers. If the priority int is too high, it is possible other ambient sounds/music could take priority over it, meaning the engine will load those other sounds, and not your voice recordings. Setting the priority to 0 or 1 could help.

Hope that helped!


RE: Custom Sound too low - Twitchez - 05-20-2012

Thanks a lot for explaing those parameters for me Smile I had already used Audacity to enhance it, but I think it was a Priority problem (didn't really make sense for me at first to put 0 as the highest).

Wonder though what Use3D or interval does, if anyone knows feel free to reply.

Thanks again!

//Kind Regards


RE: Custom Sound too low - FragdaddyXXL - 05-20-2012

I found that I was having this problem as well. I fixed it by opening the sound in Audacity, bumping up the gain, and re-saving it. My sample was too quiet Tongue

I had to do this because Amnesia can only increase the gain so much, and it wasn't enough.


RE: Custom Sound too low - jens - 05-21-2012

Setting Volume="10"has no effect, the max is 1. 1 means the sound is played as loud as it is in the sound file, so you can only make sounds lower in volume using the games volume settings, not increase the volume.


RE: Custom Sound too low - Stepper321 - 05-21-2012

(05-21-2012, 08:02 AM)jens Wrote: Setting Volume="10"has no effect, the max is 1. 1 means the sound is played as loud as it is in the sound file, so you can only make sounds lower in volume using the games volume settings, not increase the volume.
Ah! I tough the maximum was 5.