Hi @NeonBible,
Chewtobacca's post is hidden in another thread so it's not easy to find but this is it:
Yeah, the question is how multi-track mixes were matrixed for LD (and whether the process varied from disc to disc). Given that DPL2 was introduced in 2000, my preference has always been to use DPL1 (mono surround, like the old four-track mixes) because the results have always struck me as being the best match for matrixed tracks on LD.
Use BeHappy instead if you like. Uncomment ConvertAudioTo16bit() if you want, but you might prefer to adjust the volume (or EQ or whatever) first.
I don't know whether other downmixing methods (e.g. DPL2) will affect playback via your AVR. Maybe experiment and report back.
Chewtobacca's post is hidden in another thread so it's not easy to find but this is it:
Yeah, the question is how multi-track mixes were matrixed for LD (and whether the process varied from disc to disc). Given that DPL2 was introduced in 2000, my preference has always been to use DPL1 (mono surround, like the old four-track mixes) because the results have always struck me as being the best match for matrixed tracks on LD.
Code:
Code:
#AviSynth
a=WhateverSource("6-track_file")
flr = GetChannel(a, 1, 2)
fcc = GetChannel(a, 3, 3)
lrc = MixAudio(flr, fcc, 0.3205, 0.2265)
bl = GetChannel(a, 5)
br = GetChannel(a, 6)
sl = MixAudio(bl, br, 0.2265, 0.2265)
sr = MixAudio(bl, br, -0.2265, -0.2265)
blr = MergeChannels(sl, sr)
mix = MixAudio(lrc, blr, 1.0, 1.0)
return mix#.ConvertAudioTo16bit()
Use BeHappy instead if you like. Uncomment ConvertAudioTo16bit() if you want, but you might prefer to adjust the volume (or EQ or whatever) first.
I don't know whether other downmixing methods (e.g. DPL2) will affect playback via your AVR. Maybe experiment and report back.