Log in

View Full Version : center vocal track is too low how to fix it ?


adrianmak
29th April 2008, 14:58
I ve and dvd and going to re-encode to xvid avi format
I ripped out the 5.1 ac3 audio track. However sound effects are much louder than the center vocal sound , how do I fix it ?

azad
29th April 2008, 16:19
again you can try eac3to and use the "remove dialog normalization" function.

setarip_old
29th April 2008, 17:24
@adrianmak

Hi!

You can use any audio editor to simply raise the midrange...

adrianmak
29th April 2008, 23:41
@adrianmak

Hi!

You can use any audio editor to simply raise the midrange...

how to do it directly on the ac3 track with a format conversion (ac3->demux & encode to wavs -> raise center volume -> mux wavs and encode to ac3) ?

Susana
30th April 2008, 00:48
Avisynth script:

audio = NicAC3Source("C:\...\AudioFile.ac3")

FL = GetChannel(audio, 1)
FR = GetChannel(audio, 2)
C = GetChannel(audio, 3)
LFE = GetChannel(audio, 4)
SL = GetChannel(audio, 5)
SR = GetChannel(audio, 6)

C = AmplifydB(C, x)

audio = MergeChannels(FL, FR, C, LFE, SL, SR)

SoundOut(audio)

where x is an integer (amplification in db's)

http://www.codeplex.com/NicAudio
soundout: http://forum.doom9.org/showthread.php?t=120025

.. dll's within avisynth "plugin" folder. Open this .avs text file with virtualdub.

__
It's very strange central channel needs edition in a commercial dvd, though

Susana
30th April 2008, 02:52
again you can try eac3to and use the "remove dialog normalization" function.

No, Dialnorm is applied to all channels.

azad
30th April 2008, 08:13
No, Dialnorm is applied to all channels.

Thanks! Didn't know that! ;)

nautilus7
30th April 2008, 14:39
No, Dialnorm is applied to all channels.

Are you sure? I think only on center channel. DRC is applied on all channels.

tebasuna51
30th April 2008, 15:08
Are you sure? I think only on center channel. DRC is applied on all channels.

Both, DialNorm and DRC are applied on all channels.

Edit: I agree with Susana also with the avs method (I was writting the same thing for BeHappy when I see the Susana post), and with the comment:
"It's very strange central channel needs edition in a commercial dvd"
I think is a player problem not in the source, but ...