How to make sounds louder

In this forum you will find and post information regarding the modding of Star Wars Battlefront 2. DO NOT POST MOD IDEAS/REQUESTS.

Moderator: Moderators

Post Reply
User avatar
Anakin
Master of the Force
Master of the Force
Posts: 4817
Joined: Sat Sep 19, 2009 11:37 am
Projects :: RC Side Mod - Remastered - SWBF3 Legacy
Location: Mos Espa (germany)

How to make sounds louder

Post by Anakin »

Hi,

is there a way to make sounds louder?? i tryed to edit the sound's wav file, but they are already at maximum. So maybe there is an option for the .snd file that makes BF playing this special sound louder than the others.
User avatar
Locutus
1st Lieutenant
1st Lieutenant
Posts: 420
Joined: Fri Jun 04, 2010 10:08 am
Projects :: Stargate Battlefront Pegasus
Location: Germany
Contact:

Re: How to make sounds louder

Post by Locutus »

Audacity?
Export, import freshly exported sound file, increase volume again.
User avatar
Nedarb7
Lieutenant General
Lieutenant General
Posts: 676
Joined: Sat Sep 22, 2012 3:41 pm

Re: How to make sounds louder

Post by Nedarb7 »

I found it much easier to add the gain property to the sound through the snd file, example:

Code: Select all

SoundProperties()
{
    Name("dc-15p_fire");
    Group("weapons");
    Inherit("weapon_template");
    Gain(1.0);
    SampleList()
    {
        Sample("dc-15p_owe", 1.0);
    }
}
Marth8880
Resistance Leader
Posts: 5042
Joined: Tue Feb 09, 2010 8:43 pm
Projects :: DI2 + Psychosis
Games I'm Playing :: Silent Hill 2
xbox live or psn: Marth8880
Location: Edinburgh, UK
Contact:

Re: How to make sounds louder

Post by Marth8880 »

What kind of sound effect is it? You can do as Nedarb suggests and add Gain(1.0); to the sound property (don't bother trying to go past 1.0 - that's the maximum), but you may also want to try amplifying the sound in Audacity past its peaks. To do so, select your track, choose the Amplify effect, check "Allow clipping", enter the value (in decibels) you want to amplify your track by, and press OK. When using "Allow clipping", I strongly recommend amplifying in intervals of 3.0dB and testing after each amplification to make sure there isn't much noticeable distortion.
User avatar
Anakin
Master of the Force
Master of the Force
Posts: 4817
Joined: Sat Sep 19, 2009 11:37 am
Projects :: RC Side Mod - Remastered - SWBF3 Legacy
Location: Mos Espa (germany)

Re: How to make sounds louder

Post by Anakin »

I'm using Magix Music Cleaning Lab 2006 deluxe. There is an option "normalisiere Objektlautstärke" it increase the sound level to the maximum without loosing any informations. But both sound files already have the maximum. So i think i'll give Nedarb's idea a try.
Marth8880
Resistance Leader
Posts: 5042
Joined: Tue Feb 09, 2010 8:43 pm
Projects :: DI2 + Psychosis
Games I'm Playing :: Silent Hill 2
xbox live or psn: Marth8880
Location: Edinburgh, UK
Contact:

Re: How to make sounds louder

Post by Marth8880 »

Yeah I can't help you with that software. :p And that's basically the normalize effect in Audacity, which isn't going to achieve the effect you desire. Just use Audacity to do what you want to do; it's up-to-date and most likely leagues better than this other software.
THEWULFMAN
Space Ranger
Posts: 5557
Joined: Tue Aug 17, 2010 3:30 pm
Projects :: Evolved 2
Location: Columbus, Ohio
Contact:

Re: How to make sounds louder

Post by THEWULFMAN »

Why are you using such outdated software? I highly recommend using Audacity. I used to be like you, using some random audio editing software, but when I switched to Audacity I never looked back. So many people use it, for good reason. It's the best free sound editing software out there.
User avatar
Anakin
Master of the Force
Master of the Force
Posts: 4817
Joined: Sat Sep 19, 2009 11:37 am
Projects :: RC Side Mod - Remastered - SWBF3 Legacy
Location: Mos Espa (germany)

Re: How to make sounds louder

Post by Anakin »

OK i'll have a look at it :D
Post Reply