RRAH
28th October 2014, 11:06
Hello,
I want to downmix a 7.1 W64-File (32bit float) to 6 mono Wavs (32bit float) with BeHappy.
As Input I use the following AVS-Script:
# Downmix 7.1 to 5.1
RaWavSource("audio.w64")
fl = Getchannel(1)
fr = Getchannel(2)
fc = Getchannel(3)
lf = Getchannel(4)
bl = Getchannel(5)
br = Getchannel(6)
sl = Getchannel(7)
sr = Getchannel(8)
sul = Mixaudio(sl, bl, 1.0, 1.0)
sur = Mixaudio(sr, br, 1.0, 1.0)
Mergechannels(fl, fr, fc, lf, sul, sur)
Normalize()
BeHappy`s output is set to Wav Split @ Mono wav`s
Problem: The runtime of the output is only about half the runtime of the input.
What`s going wrong?
Thanks
I want to downmix a 7.1 W64-File (32bit float) to 6 mono Wavs (32bit float) with BeHappy.
As Input I use the following AVS-Script:
# Downmix 7.1 to 5.1
RaWavSource("audio.w64")
fl = Getchannel(1)
fr = Getchannel(2)
fc = Getchannel(3)
lf = Getchannel(4)
bl = Getchannel(5)
br = Getchannel(6)
sl = Getchannel(7)
sr = Getchannel(8)
sul = Mixaudio(sl, bl, 1.0, 1.0)
sur = Mixaudio(sr, br, 1.0, 1.0)
Mergechannels(fl, fr, fc, lf, sul, sur)
Normalize()
BeHappy`s output is set to Wav Split @ Mono wav`s
Problem: The runtime of the output is only about half the runtime of the input.
What`s going wrong?
Thanks