dj-big
14th February 2013, 07:12
hi again can someone explain why i have this error on my log ?
"channel count mismatch! ignoring downmix as the input file is reporting 6 channels and the AviSynth script is reporting 2 channels"
is it coz of incorrect stream ?
and this is my full log
[Warning] Log for job515 (audio, True.Blood.S01E06.720p.HDTV.x264 - [1].ac3 -> True.Blood.S01E06.720p.HDTV.x264 - [1]_audio.m4a)
-[Information] [2/14/2013 6:36:52 AM] Started handling job
-[Information] [2/14/2013 6:36:52 AM] Preprocessing
-[Information] [2/14/2013 6:36:52 AM] Encoding started
-[Information] [2/14/2013 6:36:52 AM] MediaInfo
--[Information] File: C:\Documents and Settings\Administrator\Desktop\tb\clzxoqdj.suf\True.Blood.S01E06.720p.HDTV.x264 - [1].ac3
--[Information] General
---[Information] Format: AC-3
---[Information] FormatString: AC-3
---[Information] FileSize: 150676992
---[Information] PlayTime: 00:52:19.104
--[Information] Audio
---[Information] ID:
---[Information] StreamOrder:
---[Information] Format: AC-3
---[Information] FormatProfile:
---[Information] FormatSettingsSBR:
---[Information] FormatSettingsPS:
---[Information] SamplingRate: 48000
---[Information] SamplingRateString: 48.0 KHz
---[Information] Channels: 6
---[Information] ChannelsString: 6 channels
---[Information] ChannelPositionsString2: 3/2/0.1
---[Information] BitRateMode: CBR
---[Information] Delay:
---[Information] Title:
---[Information] Language:
---[Information] LanguageString:
---[Information] Default:
---[Information] DefaultString:
---[Information] Forced:
---[Information] ForcedString:
-[Information] [2/14/2013 6:36:52 AM] Trying to open the file with DirectShowSource()
-[Information] [2/14/2013 6:36:53 AM] Successfully opened the file with DirectShowSource()
-[Warning] [2/14/2013 6:36:53 AM] channel count mismatch! ignoring downmix as the input file is reporting 6 channels and the AviSynth script is reporting 2 channels
-[Information] [2/14/2013 6:36:53 AM] Avisynth script
--[NoImage] LoadPlugin("C:\Documents and Settings\Administrator\Desktop\MEGUI\tools\avs\directshowsource.dll")
--[NoImage] DirectShowSource("C:\Documents and Settings\Administrator\Desktop\tb\clzxoqdj.suf\True.Blood.S01E06.720p.HDTV.x264 - [1].ac3")
--[NoImage] EnsureVBRMP3Sync()
--[NoImage] # detected channels: 6 channels
--[NoImage] # detected channel positions: 3/2/0.1
--[NoImage] Normalize()
--[NoImage] return last
--[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> stereo + LFE
--[NoImage] function c6_stereo(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] lf = GetChannel(a, 4)
--[NoImage] sl = GetChannel(a, 5)
--[NoImage] sr = GetChannel(a, 6)
--[NoImage] fl_sl = MixAudio(fl, sl, 0.2929, 0.2929)
--[NoImage] fr_sr = MixAudio(fr, sr, 0.2929, 0.2929)
--[NoImage] fc_lf = MixAudio(fc, lf, 0.2071, 0.2071)
--[NoImage] l = MixAudio(fl_sl, fc_lf, 1.0, 1.0)
--[NoImage] r = MixAudio(fr_sr, fc_lf, 1.0, 1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 5 Channels L,R,C,SL,SR or L,R,LFE,SL,SR-> Stereo
--[NoImage] function c5_stereo(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] sl = GetChannel(a, 4)
--[NoImage] sr = GetChannel(a, 5)
--[NoImage] fl_sl = MixAudio(fl, sl, 0.3694, 0.3694)
--[NoImage] fr_sr = MixAudio(fr, sr, 0.3694, 0.3694)
--[NoImage] l = MixAudio(fl_sl, fc, 1.0, 0.2612)
--[NoImage] r = MixAudio(fr_sr, fc, 1.0, 0.2612)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 5 Channels L,R,C,LFE,S -> Stereo
--[NoImage] function c52_stereo(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] lf = GetChannel(a, 4)
--[NoImage] bc = GetChannel(a, 5)
--[NoImage] fl_bc = MixAudio(fl, bc, 0.3205, 0.2265)
--[NoImage] fr_bc = MixAudio(fr, bc, 0.3205, 0.2265)
--[NoImage] fc_lf = MixAudio(fc, lf, 0.2265, 0.2265)
--[NoImage] l = MixAudio(fl_bc, fc_lf, 1.0, 1.0)
--[NoImage] r = MixAudio(fr_bc, fc_lf, 1.0, 1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 4 Channels Quadro L,R,SL,SR -> Stereo
--[NoImage] function c4_stereo(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] sl = GetChannel(a, 3)
--[NoImage] sr = GetChannel(a, 4)
--[NoImage] l = MixAudio(fl, sl, 0.5, 0.5)
--[NoImage] r = MixAudio(fr, sr, 0.5, 0.5)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 4 Channels L,R,C,LFE or L,R,S,LFE or L,R,C,S -> Stereo
--[NoImage] function c42_stereo(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] lf = GetChannel(a, 4)
--[NoImage] fc_lf = MixAudio(fc, lf, 0.2929, 0.2929)
--[NoImage] l = MixAudio(fl, fc_lf, 0.4142, 1.0)
--[NoImage] r = MixAudio(fr, fc_lf, 0.4142, 1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 3 Channels L,R,C or L,R,S or L,R,LFE -> Stereo
--[NoImage] function c3_stereo(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] l = MixAudio(fl, fc, 0.5858, 0.4142)
--[NoImage] r = MixAudio(fr, fc, 0.5858, 0.4142)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> Dolby ProLogic
--[NoImage] function c6_dpl(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] sl = GetChannel(a, 5)
--[NoImage] sr = GetChannel(a, 6)
--[NoImage] bc = MixAudio(sl, sr, 0.2265, 0.2265)
--[NoImage] fl_fc = MixAudio(fl, fc, 0.3205, 0.2265)
--[NoImage] fr_fc = MixAudio(fr, fc, 0.3205, 0.2265)
--[NoImage] l = MixAudio(fl_fc, bc, 1.0, 1.0)
--[NoImage] r = MixAudio(fr_fc, bc, 1.0, -1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 5 Channels L,R,C,SL,SR -> Dolby ProLogic
--[NoImage] function c5_dpl(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] sl = GetChannel(a, 4)
--[NoImage] sr = GetChannel(a, 5)
--[NoImage] bc = MixAudio(sl, sr, 0.2265, 0.2265)
--[NoImage] fl_fc = MixAudio(fl, fc, 0.3205, 0.2265)
--[NoImage] fr_fc = MixAudio(fr, fc, 0.3205, 0.2265)
--[NoImage] l = MixAudio(fl_fc, bc, 1.0, 1.0)
--[NoImage] r = MixAudio(fr_fc, bc, 1.0, -1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 5 Channels L,R,LFE,SL,SR -> Dolby ProLogic
--[NoImage] function c52_dpl(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] sl = GetChannel(a, 4)
--[NoImage] sr = GetChannel(a, 5)
--[NoImage] bc = MixAudio(sl, sr, 0.2929, 0.2929)
--[NoImage] l = MixAudio(fl, bc, 0.4142, 1.0)
--[NoImage] r = MixAudio(fr, bc, 0.4142, -1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 5 Channels L,R,C,LFE,S -> Dolby ProLogic
--[NoImage] function c53_dpl(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] bc = GetChannel(a, 5)
--[NoImage] fl_fc = MixAudio(fl, fc, 0.4142, 0.2929)
--[NoImage] fr_fc = MixAudio(fr, fc, 0.4142, 0.2929)
--[NoImage] l = MixAudio(fl_fc, bc, 1.0, 0.2929)
--[NoImage] r = MixAudio(fr_fc, bc, 1.0, -0.2929)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 4 Channels Quadro L,R,SL,SR -> Dolby ProLogic
--[NoImage] function c4_dpl(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] sl = GetChannel(a, 3)
--[NoImage] sr = GetChannel(a, 4)
--[NoImage] bc = MixAudio(sl, sr, 0.2929, 0.2929)
--[NoImage] l = MixAudio(fl, bc, 0.4142, 1.0)
--[NoImage] r = MixAudio(fr, bc, 0.4142, -1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 4 Channels L,R,LFE,S -> Dolby ProLogic
--[NoImage] function c42_dpl(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] bc = GetChannel(a, 4)
--[NoImage] l = MixAudio(fl, bc, 0.5858, 0.4142)
--[NoImage] r = MixAudio(fr, bc, 0.5858, -0.4142)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 4 Channels L,R,C,S -> Dolby ProLogic
--[NoImage] function c43_dpl(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] bc = GetChannel(a, 4)
--[NoImage] fl_fc = MixAudio(fl, fc, 0.4142, 0.2929)
--[NoImage] fr_fc = MixAudio(fr, fc, 0.4142, 0.2929)
--[NoImage] l = MixAudio(fl_fc, bc, 1.0, 0.2929)
--[NoImage] r = MixAudio(fr_fc, bc, 1.0, -0.2929)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 3 Channels L,R,S -> Dolby ProLogic
--[NoImage] function c3_dpl(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] bc = GetChannel(a, 3)
--[NoImage] l = MixAudio(fl, bc, 0.5858, 0.4142)
--[NoImage] r = MixAudio(fr, bc, 0.5858, -0.4142)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> Dolby ProLogic II
--[NoImage] function c6_dpl2(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] sl = GetChannel(a, 5)
--[NoImage] sr = GetChannel(a, 6)
--[NoImage] ssl = MixAudio(sl, sr, 0.2818, 0.1627)
--[NoImage] ssr = MixAudio(sl, sr, -0.1627, -0.2818)
--[NoImage] fl_fc = MixAudio(fl, fc, 0.3254, 0.2301)
--[NoImage] fr_fc = MixAudio(fr, fc, 0.3254, 0.2301)
--[NoImage] l = MixAudio(fl_fc, ssl, 1.0, 1.0)
--[NoImage] r = MixAudio(fr_fc, ssr, 1.0, 1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 5 Channels L,R,C,SL,SR -> Dolby ProLogic II
--[NoImage] function c5_dpl2(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] fc = GetChannel(a, 3)
--[NoImage] sl = GetChannel(a, 4)
--[NoImage] sr = GetChannel(a, 5)
--[NoImage] ssl = MixAudio(sl, sr, 0.2818, 0.1627)
--[NoImage] ssr = MixAudio(sl, sr, -0.1627, -0.2818)
--[NoImage] fl_fc = MixAudio(fl, fc, 0.3254, 0.2301)
--[NoImage] fr_fc = MixAudio(fr, fc, 0.3254, 0.2301)
--[NoImage] l = MixAudio(fl_fc, ssl, 1.0, 1.0)
--[NoImage] r = MixAudio(fr_fc, ssr, 1.0, 1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 5 Channels L,R,LFE,SL,SR -> Dolby ProLogic II
--[NoImage] function c52_dpl2(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] sl = GetChannel(a, 4)
--[NoImage] sr = GetChannel(a, 5)
--[NoImage] ssl = MixAudio(sl, sr, 0.3714, 0.2144)
--[NoImage] ssr = MixAudio(sl, sr, -0.2144, -0.3714)
--[NoImage] l = MixAudio(fl, ssl, 0.4142, 1.0)
--[NoImage] r = MixAudio(fr, ssr, 0.4142, 1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
--[NoImage] # 4 Channels Quadro L,R,SL,SR -> Dolby ProLogic II
--[NoImage] function c4_dpl2(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] sl = GetChannel(a, 3)
--[NoImage] sr = GetChannel(a, 4)
--[NoImage] ssl = MixAudio(sl, sr, 0.3714, 0.2144)
--[NoImage] ssr = MixAudio(sl, sr, -0.2144, -0.3714)
--[NoImage] l = MixAudio(fl, ssl, 0.4142, 1.0)
--[NoImage] r = MixAudio(fr, ssr, 0.4142, 1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
-[Information] [2/14/2013 6:36:53 AM] Commandline used: -ignorelength -he -q 0.45 -if - -of "{0}"
-[Information] [2/14/2013 6:36:53 AM] Avisynth script environment opened
-[Information] [2/14/2013 6:36:53 AM] Script loaded
-[Information] Output Decoder
--[Information] [2/14/2013 6:36:53 AM] Channels: 2
--[Information] [2/14/2013 6:36:53 AM] Bits per sample: 16
--[Information] [2/14/2013 6:36:53 AM] Sample rate: 48000
-[Information] [2/14/2013 6:36:53 AM] Commandline: C:\Documents and Settings\Administrator\Desktop\MEGUI\tools\eac3to\neroAacEnc.exe
-ignorelength -he -q 0.45 -if - -of "C:\Documents and Settings\Administrator\Desktop\tb\clzxoqdj.suf\True.Blood.S01E06.720p.HDTV.x264 - [1]_audio.m4a"
-[Information] [2/14/2013 6:36:53 AM] Encoder process started
-[Information] [2/14/2013 6:38:46 AM] Output from encoder via stderr
--[NoImage] *************************************************************
--[NoImage] * *
--[NoImage] * Nero AAC Encoder *
--[NoImage] * Copyright 2009 Nero AG *
--[NoImage] * All Rights Reserved Worldwide *
--[NoImage] * *
--[NoImage] * Package build date: Feb 18 2010 *
--[NoImage] * Package version: 1.5.4.0 *
--[NoImage] * *
--[NoImage] * See -help for a complete list of available parameters. *
--[NoImage] * *
--[NoImage] *************************************************************
-[Information] [2/14/2013 6:38:46 AM] MediaInfo
--[Information] File: C:\Documents and Settings\Administrator\Desktop\tb\clzxoqdj.suf\True.Blood.S01E06.720p.HDTV.x264 - [1]_audio.m4a
--[Information] General
---[Information] Format: MPEG-4
---[Information] FormatString: MPEG-4
---[Information] FileSize: 65221794
---[Information] PlayTime: 00:52:19.115
--[Information] Audio
---[Information] ID: 1
---[Information] StreamOrder: 0
---[Information] Format: AAC
---[Information] FormatProfile: HE-AAC / LC
---[Information] FormatSettingsSBR: Yes (Implicit)
---[Information] FormatSettingsPS: No (Explicit)
---[Information] SamplingRate: 48000 / 24000
---[Information] SamplingRateString: 48.0 KHz / 24.0 KHz
---[Information] Channels: 2
---[Information] ChannelsString: 2 channels
---[Information] ChannelPositionsString2: 2/0/0
---[Information] BitRateMode: VBR
---[Information] Delay: 0
---[Information] Title:
---[Information] Language:
---[Information] LanguageString:
---[Information] Default:
---[Information] DefaultString:
---[Information] Forced:
---[Information] ForcedString:
-[Information] [2/14/2013 6:38:46 AM] Postprocessing
--[Information] Deleting intermediate files
-[Information] [2/14/2013 6:38:46 AM] Job completed
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.