View Full Version : 6 mono wavs to 6ch aac
cmw
26th February 2007, 13:34
I have made 6 mono wavs from a dts file, now I want to convert them to 6ch nero digital aac.
Is there a AVS Script which I can use for that, or some tool I haven't been able to find?
THX in advance, best regards
cmw
tebasuna51
26th February 2007, 14:42
Warnings:
- If you want open 32bit_float wav with AviSynth you need v2.5.7
- If you want Avisynth output 32bit_float you need set:
global OPT_AllowFloatAudio=True
- If you want open WAVE_FORMAT_EXTENSIBLE wav's you need a patch or use BassAudioSource() method or any DirectShowSource() method properly configured.
Script:
#global OPT_AllowFloatAudio=True
fl = WavSource("D:\x_FL.wav")
fr = WavSource("D:\x_FR.wav")
fc = WavSource("D:\x_FC.wav")
lf = WavSource("D:\x_LF.wav")
sl = WavSource("D:\x_SL.wav")
sr = WavSource("D:\x_SR.wav")
MergeChannels(fl, fr, fc, lf, sl, sr)
# If SoundOut/VirtualDub method is selected:
#AudioDubEx(BlankClip(), last)
#SoundOut()
Methods to use the script to Nero encode:
- SoundOut/VirtualDub.
- Bepipe
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.