View Single Post
Old 16th February 2012, 01:54   #1004  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,890
Quote:
Originally Posted by CoRoNe View Post
I'd like to do BeSweet.exe -azid(-s dplii -c normal -L -3db --maximize) -ota(-hybridgain) with Avisynth.
Here -hybridgain do nothing because the audio was already normalized by azid parameter --maximize.

Quote:
Please tell me, am I getting close?:
Code:
...
lfe = GetChannel(4, 4)
lrc = MixAudio(lrc, lfe, 1.0, 0.1857)
-----------------------------------------
lfe = GetChannel(4, 4).AmplifydB(-3.0)	# -azid(-L -3db), or would this totally screw-up the DPLII-matrix?
lrc = MixAudio(lrc, lfe, 1.0, 1.0)
-----------------------------------------
You can't add two times LFE, the first one is enough to complain -azid(-L -3db)

Quote:
Code:
...
Normalize()	# -azid(--maximize)
AmplifydB(10)	# -ota(hybridgain), I just picked a number (dB), because I don't
			#  know what would be equivalent to hybridgain.
Like I say before -ota(hybridgain) do nothing with a normalized audio. With this syntax you clip all sound over -10 dB and distort the output.
__________________
BeHappy, AviSynth audio transcoder.
tebasuna51 is offline   Reply With Quote