Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Preliminary log file only. During closing of MeGUI the well formed log file will be written.
- -[Information] Versions
- --[Information] [9/15/2013 12:50:44 PM] MeGUI: 2356
- --[Information] [9/15/2013 12:50:44 PM] Operating System: Windows 7 Premium Edition x64 SP1 (6.1.65536.7601)
- --[Information] [9/15/2013 12:50:44 PM] .Net Framework: 4.5 (4.5.50709)
- --[Information] [9/15/2013 12:50:44 PM] AviSynth: 2.5.8.5 (12/21/2008 9:46:54 PM)
- --[Information] [9/15/2013 12:50:44 PM] AvisynthWrapper: 1/2/2009 8:34:04 PM
- --[Information] [9/15/2013 12:50:44 PM] Haali Matroska Splitter: 1.13.138.14 (4/14/2013 10:00:32 AM)
- --[Information] [9/15/2013 12:50:44 PM] Haali DSS2: 4/14/2013 9:59:06 AM
- --[Information] [9/15/2013 12:50:44 PM] ICSharpCode.SharpZipLib: 0.85.5.452 (8/7/2008 8:31:12 PM)
- --[Information] [9/15/2013 12:50:44 PM] LinqBridge: 1.0.0.0 (5/28/2009 1:24:34 AM)
- --[Information] [9/15/2013 12:50:44 PM] MediaInfo: 0.7.63.0 (5/13/2013 10:47:16 AM)
- --[Information] [9/15/2013 12:50:44 PM] MediaInfoWrapper: 0.7.61.0 (1/6/2013 2:47:15 PM)
- --[Information] [9/15/2013 12:50:44 PM] MessageBoxExLib: 1.0.2218.28317 (12/19/2008 8:53:04 PM)
- --[Information] [9/15/2013 12:50:44 PM] SevenZipSharp: 0.64.3890.29348 (1/2/2011 10:59:32 AM)
- --[Information] [9/15/2013 12:50:44 PM] 7z: 9.20 (11/18/2010 4:27:34 PM)
- -[Information] Update detection
- --[Information] [9/15/2013 12:50:45 PM] Connecting to server: http://megui.xvidvideo.ru/auto/stable/
- --[Information] [9/15/2013 12:50:46 PM] All files are up to date
- -[Information] Log for job1 (audio, Schindler's List (1993)_track2.aac -> AUDIO.mp4)
- --[Information] [9/15/2013 12:52:34 PM] Started handling job
- --[Information] [9/15/2013 12:52:34 PM] Preprocessing
- --[Information] [9/15/2013 12:52:34 PM] MediaInfo
- ---[Information] File: C:\Users\NAME\Documents\My Videos\FOLDER\INPUT_AUDIO.aac
- -[Information] Format: ADTS
- -[Information] FormatString: ADTS
- -[Information] FileSize: 254003415
- -[Information] PlayTime:
- ---[Information] General
- -[Information] ID:
- -[Information] StreamOrder:
- -[Information] Format: AAC
- -[Information] FormatProfile: HE-AAC / LC
- -[Information] FormatSettingsSBR: Yes (Implicit)
- -[Information] FormatSettingsPS:
- -[Information] SamplingRate: 48000 / 24000
- -[Information] SamplingRateString: 48.0 KHz / 24.0 KHz
- -[Information] Channels: 6
- -[Information] ChannelsString: 6 channels
- -[Information] ChannelPositionsString2: 3/2/0.1
- -[Information] BitRateMode: VBR
- -[Information] Delay:
- -[Information] Title:
- -[Information] Language:
- -[Information] LanguageString:
- -[Information] Default:
- -[Information] DefaultString:
- -[Information] Forced:
- -[Information] ForcedString:
- ---[Information] Audio
- --[Information] [9/15/2013 12:52:34 PM] Trying to open the file with NicAudio
- --[Information] [9/15/2013 12:52:34 PM] Failed opening the file with NicAudio()
- --[Information] [9/15/2013 12:52:34 PM] Trying to open the file with BassAudioSource()
- --[Information] [9/15/2013 12:52:37 PM] Successfully opened the file with BassAudioSource()
- -[NoImage] LoadPlugin("C:\APPLICATIONS\MeGUI_2308_x86\tools\bassaudio\bassaudio.dll")
- -[NoImage] BassAudioSource("C:\Users\NAME\Documents\My Videos\FOLDER\INPUT_AUDIO.aac")
- -[NoImage] # detected channels: 6 channels
- -[NoImage] # detected channel positions: 3/2/0.1
- -[NoImage] c6_stereo(ConvertAudioToFloat(last))
- -[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] [9/15/2013 12:52:39 PM] Avisynth script
- --[Information] [9/15/2013 12:52:39 PM] Commandline used: -ignorelength -lc -q 1 -if - -of "{0}"
- --[Information] [9/15/2013 12:52:39 PM] Avisynth script environment opened
- --[Information] [9/15/2013 12:52:40 PM] Script loaded
- --[Information] [9/15/2013 12:52:40 PM] Output Decoder
- ---[Information] [9/15/2013 12:52:40 PM] Channels: 2
- ---[Information] [9/15/2013 12:52:40 PM] Bits per sample: 32
- ---[Information] [9/15/2013 12:52:40 PM] Sample rate: 48000
- --[Information] [9/15/2013 12:52:40 PM] Job commandline: C:\APPLICATIONS\MeGUI_2308_x86\neroAacEnc.exe -ignorelength -lc -q 1 -if - -of "C:\Users\NAME\Downloads\OUTPUT_AUDIO.mp4"
- --[Information] [9/15/2013 12:52:40 PM] Process started
- --[Information] [9/15/2013 12:52:40 PM] Standard output stream
- --[Information] [9/15/2013 12:52:40 PM] Standard error stream
Advertisement
Add Comment
Please, Sign In to add comment