View Single Post
Old 24th April 2018, 19:40   #34  |  Link
doomleox999
Registered User
 
Join Date: Nov 2015
Posts: 81
These are the scripts I used and 15 seconds samples of both results:

Code:
ClearAutoloadDirs()
AddAutoloadDir("C:\Users\LTX\BACKUP\MeGUI\tools\avs\plugins")
LoadPlugin("C:\Users\LTX\BACKUP\MeGUI\tools\lsmash\LSMASHSource.dll")
a=LWLibavAudioSource("C:\Users\LTX\Desktop\EOE_6CH.mkv")

  fl = GetChannel(a, 1)
  fr = GetChannel(a, 2)
  fc = GetChannel(a, 3)
#  lf = GetChannel(a, 4)
  sl = GetChannel(a, 5)
  sr = GetChannel(a, 6)
  fl_sl = MixAudio(fl, sl, 1.0, 0.707107)
  fr_sr = MixAudio(fr, sr, 1.0, 0.707107)
  l = MixAudio(fl_sl, fc, 1.0, 0.707107)
  r = MixAudio(fr_sr, fc, 1.0, 0.707107)
  MergeChannels(l, r)

Normalize()
return last
EOE_6CH.aac


Code:
ClearAutoloadDirs()
AddAutoloadDir("C:\Users\LTX\BACKUP\MeGUI\tools\avs\plugins")
LoadPlugin("C:\Users\LTX\BACKUP\MeGUI\tools\lsmash\LSMASHSource.dll")
a=LWLibavAudioSource("C:\Users\LTX\Desktop\EOE_6CH.mkv")

  fl = GetChannel(a, 1)
  fr = GetChannel(a, 2)
  fc = GetChannel(a, 3)
#  lf = GetChannel(a, 4)
  sl = GetChannel(a, 5)
  sr = GetChannel(a, 6)
  fl_sl = MixAudio(fl, sl, 1.0, 0.707107)
  fr_sr = MixAudio(fr, sr, 1.0, 0.707107)
  l = MixAudio(fl_sl, fc, 1.0, 0.707107)
  r = MixAudio(fr_sr, fc, 1.0, 0.707107)
  MergeChannels(l, r)

return last
EOE_6CH - NO NORM.aac
doomleox999 is offline   Reply With Quote