Log in

View Full Version : NicAC3Source bug: cannot process "1+1"-channel AC3 files?


kumi
12th October 2007, 21:45
Hi,

My script:
LoadPlugin("C:\Program Files\dgmpgdec 1.5.0\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\NicAudio.dll")
MPEG2Source("D:\SPECIMEN X264 PROJECT\VTS_01_1.d2v",idct=7)
audiodub(nicac3source("D:\SPECIMEN X264 PROJECT\VTS_01_1 T01 1+1ch 256Kbps DELAY 0ms.ac3"))

I'm using dgmpgdec version 1.5.0 b6 and nicaudio version 2.0.0.5 (the one in the latest MeGUI update.)

The error is see is:
m2AudioAC3Source: unsupported channel configuration in file "D:\SPECIMEN X264 PROJECT\VTS_01_1 T01 1+1ch 256Kbps DELAY 0ms.ac3"
(D:\SPECIMEN X264 PROJECT\VTS_01_1.avs)

And yet, I can hear both channels of audio if I play back the script in Media Player Classic!

This post here (http://forum.doom9.org/showthread.php?p=918329&highlight=unsupported+channel+configuration#post918329) shows another user with the same error. He was also trying to source a "1+1"-channel track.

There appears to be a NicAC3Source problem in processing "1+1"-channel tracks. Is there another way to open this AC3 file in avisynth?

Ebobtron
12th October 2007, 21:55
directshowsource() hits me off-hand, maybe, if it works.

kumi
12th October 2007, 22:31
Thanks, I ended up decoding to .WAV in DGIndex, then loading with WAVSource().

Guest
12th October 2007, 22:52
Try:

nicac3source("D:\SPECIMEN X264 PROJECT\VTS_01_1 T01 1+1ch 256Kbps DELAY 0ms.ac3",2)

kumi
13th October 2007, 00:49
I get the same error I'm afraid. It's odd, because the audio _seems_ to be decoded correctly. I can hear it in my media player. It's just that pesky error message.