Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > General > Audio encoding

Closed Thread
 
Thread Tools Search this Thread Display Modes
Old 15th January 2013, 18:12   #1  |  Link
dj-big
Registered User
 
Join Date: Oct 2012
Posts: 25
Problem with 5/2 Downmix

hi guys i want to downmix 5 channels to stero in megui with besweet i get this error " -[Warning] [1/15/2013 8:23:28 PM] channel count mismatch! ignoring downmix as the input file is reporting 6 channels and the AviSynth script is reporting 5 channels" i put my full log in code i get that i cant downmix 5 to stereo (2channel) can any one explain me why ? and what can i do to downmix it to 2channels in acc ?


Quote:
[Warning] Log for job385 (audio, The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1].ac3 -> The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1]_audio.m4a)
-[Information] [1/15/2013 8:23:28 PM] Started handling job
-[Information] [1/15/2013 8:23:28 PM] Preprocessing
-[Information] [1/15/2013 8:23:28 PM] Encoding started
-[Information] [1/15/2013 8:23:28 PM] MediaInfo
--[Information] File: C:\Documents and Settings\Administrator\Desktop\vedrlzv0.yjd\The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1].ac3
--[Information] General
---[Information] Format: AC-3
---[Information] FormatString: AC-3
---[Information] FileSize: 120434688
---[Information] PlayTime: 00:41:49.056
--[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] [1/15/2013 8:23:28 PM] Trying to open the file with NicAudio
-[Information] [1/15/2013 8:23:28 PM] Successfully opened the file with NicAudio
-[Warning] [1/15/2013 8:23:28 PM] channel count mismatch! ignoring downmix as the input file is reporting 6 channels and the AviSynth script is reporting 5 channels
-[Information] [1/15/2013 8:23:28 PM] Avisynth script
--[NoImage] LoadPlugin("C:\Documents and Settings\Administrator\Desktop\MEGUI\tools\avisynth_plugin\NicAudio.dll")
--[NoImage] NicAc3Source("C:\Documents and Settings\Administrator\Desktop\vedrlzv0.yjd\The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1].ac3")
--[NoImage] # detected channels: 6 channels
--[NoImage] # detected channel positions: 3/2/0.1
--[NoImage] SSRC(48000)
--[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] [1/15/2013 8:23:28 PM] Commandline used: -ignorelength -he -q 0.45 -if - -of "{0}"
-[Information] [1/15/2013 8:23:28 PM] Avisynth script environment opened
-[Information] [1/15/2013 8:23:28 PM] Script loaded
-[Information] Output Decoder
--[Information] [1/15/2013 8:23:28 PM] Channels: 5
--[Information] [1/15/2013 8:23:28 PM] Bits per sample: 32
--[Information] [1/15/2013 8:23:28 PM] Sample rate: 48000
-[Information] [1/15/2013 8:23:28 PM] 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\vedrlzv0.yjd\The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1]_audio.m4a"
-[Information] [1/15/2013 8:23:28 PM] Encoder process started
-[Information] [1/15/2013 8:26:43 PM] 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] [1/15/2013 8:26:43 PM] MediaInfo
--[Information] File: C:\Documents and Settings\Administrator\Desktop\vedrlzv0.yjd\The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1]_audio.m4a
--[Information] General
---[Information] Format: MPEG-4
---[Information] FormatString: MPEG-4
---[Information] FileSize: 3574438
---[Information] PlayTime: 00:41:49.184
--[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: 5
---[Information] ChannelsString: 5 channels
---[Information] ChannelPositionsString2: 3/2/0
---[Information] BitRateMode: VBR
---[Information] Delay: 0
---[Information] Title:
---[Information] Language:
---[Information] LanguageString:
---[Information] Default:
---[Information] DefaultString:
---[Information] Forced:
---[Information] ForcedString:
-[Information] [1/15/2013 8:26:43 PM] Postprocessing
--[Information] Deleting intermediate files
-[Information] [1/15/2013 8:26:43 PM] Job completed

Last edited by tebasuna51; 15th January 2013 at 22:19.
dj-big is offline  
Old 15th January 2013, 22:14   #2  |  Link
dj-big
Registered User
 
Join Date: Oct 2012
Posts: 25
and in second time i encoded i try use ac3 with no change in channel and decrease the bitrate to 192 but in same as post 1 i dont have any sound after encode i try my source the sound is fix and without problem the log of my second audio encode
Quote:
[Information] Log for job417 (audio, The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1].ac3 -> The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1]_audio.ac3)
-[Information] [1/15/2013 11:08:14 PM] Started handling job
-[Information] [1/15/2013 11:08:14 PM] Preprocessing
-[Information] [1/15/2013 11:08:14 PM] Encoding started
-[Information] [1/15/2013 11:08:14 PM] MediaInfo
--[Information] File: C:\Documents and Settings\Administrator\Desktop\5sg5utiq.nlc\The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1].ac3
--[Information] General
---[Information] Format: AC-3
---[Information] FormatString: AC-3
---[Information] FileSize: 120434688
---[Information] PlayTime: 00:41:49.056
--[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] [1/15/2013 11:08:14 PM] Trying to open the file with NicAudio
-[Information] [1/15/2013 11:08:14 PM] Successfully opened the file with NicAudio
-[Information] [1/15/2013 11:08:14 PM] Avisynth script
--[NoImage] LoadPlugin("C:\Documents and Settings\Administrator\Desktop\MEGUI\tools\avisynth_plugin\NicAudio.dll")
--[NoImage] NicAc3Source("C:\Documents and Settings\Administrator\Desktop\5sg5utiq.nlc\The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1].ac3")
--[NoImage] Normalize()
--[NoImage] return last
-[Information] [1/15/2013 11:08:14 PM] Commandline used: -readtoeof 1 -b 192 - "{0}"
-[Information] [1/15/2013 11:08:14 PM] Avisynth script environment opened
-[Information] [1/15/2013 11:08:14 PM] Script loaded
-[Information] Output Decoder
--[Information] [1/15/2013 11:08:14 PM] Channels: 5
--[Information] [1/15/2013 11:08:14 PM] Bits per sample: 32
--[Information] [1/15/2013 11:08:14 PM] Sample rate: 48000
-[Information] [1/15/2013 11:08:14 PM] Commandline: C:\Documents and Settings\Administrator\Desktop\MEGUI\tools\aften\aften.exe -readtoeof 1 -b 192 - "C:\Documents and Settings\Administrator\Desktop\5sg5utiq.nlc\The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1]_audio.ac3"
-[Information] [1/15/2013 11:08:14 PM] Encoder process started
-[Information] [1/15/2013 11:08:54 PM] Output from encoder via stderr
--[NoImage] Aften: A/52 audio encoder
--[NoImage] Version git
--[NoImage] (c) 2006-2009 Justin Ruggles, Prakash Punnoor, et al.
--[NoImage] input format: Microsoft WAVE Floating-point 32-bit little-endian 48000 Hz 5-channel
--[NoImage] output format: 48000 Hz 3/2
--[NoImage] SIMD usage: MMX SSE SSE2 SSE3
--[NoImage] Threads: 12
--[NoImage] progress: 100% | q: 488.0 | bw: 2.0 | bitrate: 192.0 kbps
-[Information] [1/15/2013 11:08:54 PM] MediaInfo
--[Information] File: C:\Documents and Settings\Administrator\Desktop\5sg5utiq.nlc\The.Vampire.Diaries.S01E21.720p.HDTV.x264 - [1]_audio.ac3
--[Information] General
---[Information] Format: AC-3
---[Information] FormatString: AC-3
---[Information] FileSize: 60218112
---[Information] PlayTime: 00:41:49.088
--[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: 5
---[Information] ChannelsString: 5 channels
---[Information] ChannelPositionsString2: 3/2/0
---[Information] BitRateMode: CBR
---[Information] Delay:
---[Information] Title:
---[Information] Language:
---[Information] LanguageString:
---[Information] Default:
---[Information] DefaultString:
---[Information] Forced:
---[Information] ForcedString:
-[Information] [1/15/2013 11:08:54 PM] Postprocessing
--[Information] Deleting intermediate files
-[Information] [1/15/2013 11:08:54 PM] Job completed

Last edited by tebasuna51; 15th January 2013 at 22:19.
dj-big is offline  
Old 15th January 2013, 22:27   #3  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,915
We can't help you with downloaded files.

Thread closed.
__________________
BeHappy, AviSynth audio transcoder.
tebasuna51 is offline  
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 14:50.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.