View Single Post
Old 4th January 2008, 13:20   #640  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,890
Quote:
Originally Posted by shon3i View Post
@Chumbo, nice stuff, you should enable to use all multichannel encoders like AAC, and aslo WAV.
I can't understand this new stuff.

For what use BeHappy to encode six monowavs to ac3/aac out off AviSynth environment? There are others GUI's to do this.

You always can use BeHappy to do this inside AviSynth with DSP's actives and with any output: ac3, aac, ogg, wav
Instead your .src, .txt or .lst file you only need an .avs file like:

Code:
fl = WavSource("X:\Path\Test_FL.wav")
fr = WavSource("X:\Path\Test_FR.wav")
fc = WavSource("X:\Path\Test_C.wav")
lf = WavSource("X:\Path\Test_LFE.wav")
sl = WavSource("X:\Path\Test_SL.wav")
sr = WavSource("X:\Path\Test_SR.wav")
MergeChannels(fl, fr, fc, lf, sl, sr)
And open this .avs in BeHappy with all AviSynth DSP's and features available: delay, timestretch, resample, ...

Maybe we can construct a utility to write this .avs with a graphical interface like BeLight or Wisodev WavtoAc3, but the Chumbo mod I think is out off the BeHappy scope.

Quote:
Is it possible to make reverse process one multichannel wave to 6 waves?
I don't understand your request. WavSplit can output six monowavs or three stereo wav's from a multichannel input.
tebasuna51 is offline   Reply With Quote