View Full Version : Independent 2 channel source to joint stereo?
chros
17th October 2006, 22:32
I have a trailer (which has wrong mastering, I think), and the 2ch AC3 audio is independent: the music is on left speaker, the dialog is on the right.
Can I create a "normal" joint stereo audio from it? (eg. in avisynth)
Thanks
tebasuna51
18th October 2006, 01:50
If you want mix left with right speaker you obtain a stereo with two equal channels. You can use a Audio.avs:
#a = NicAc3Source("path\your.ac3", DRC=1)
a = NicAc3Source("path\your.ac3")
fl = GetChannel(a, 1)
fr = GetChannel(a, 2)
m = MixAudio(fl, fr, 0.5, 0.5)
MergeChannels(m, m)
And after:
bepipe --script"Import(^Audio.avs^)" | yourEncoder -yourParameters
chros
18th October 2006, 08:40
... you obtain a stereo with two equal channels.
You are right. And thanks for this script...
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.