View Single Post
Old 14th August 2015, 12:21   #13780  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,815
Quote:
Originally Posted by fantasmanegro View Post
Using aac 5.1 is too much for my 2.0 TV speakers... so do mixing to stereo is OK for me but, the voice is too low ...

is there a way to increase the volume in voice channel or decrease a little the background and effects?
Open DownMixAudio.avs in notepad
and increase this value
Code:
function DownMix2Stereo(clip a)
{
a=ConvertAudioToFloat(a)
fl = GetChannel(a, 1)
fr = GetChannel(a, 2)
c = GetChannel(a, 3)
lfe = GetChannel(a, 4)
sl = GetChannel(a, 5)
sr = GetChannel(a, 6)
l_sl = MixAudio(fl, sl, 0.2929, 0.2929)
c_lfe = MixAudio(lfe, c, 0.2071, 0.2071)
r_sr = MixAudio(fr, sr, 0.2929, 0.2929)
l = MixAudio(l_sl, c_lfe, 1.0, 1.0)
r = MixAudio(r_sr, c_lfe, 1.0, 1.0)
return MergeChannels(l, r)
}
Save and verify loudness in ripbot264 (Preview script). Audio Normalization set at 100%.

Last edited by Atak_Snajpera; 14th August 2015 at 12:26.
Atak_Snajpera is offline   Reply With Quote