View Full Version : MeGUI.exe has encountered a problem
las7h0p3
14th January 2011, 18:04
Hello everyone,
I have a problem, every time when I start to encode with megui (it doesen't matter xvid, x264, mp3, aac) it gives me this error: MeGUI.exe has encountered a problem and needs to close. We are sorry for the inconvenience.
I reinstalled the program several times and restarted my PC also, but it doesen't help...
Error signature:
AppName: megui.exe AppVer: 0.3.5.0 ModName: dmfsource.ax
ModVer: 1.0.2.6 Offset: 0000423b
Sharktooth
14th January 2011, 19:00
divx (dmfsource = divx media format source) is crashing.
please dont use DirectShowSource() in your avs script but a proper indexer or FFMS instead
las7h0p3
14th January 2011, 19:06
Update: I've unregistered the file and now when I try to encode the audio file process gives me an error saying: DirectShowSource: Could not open as video or audio, but I'm not using DirectShowSource, I'm using DGDecode_Mpeg2Source...
Zathor
14th January 2011, 20:05
Please post the log and the content of the AVS file.
las7h0p3
14th January 2011, 20:24
avs:
LoadPlugin("D:\plugins\tdeint.dll")
LoadPlugin("D:\plugins\tivtc.dll")
LoadPlugin("D:\plugins\dgdecode.dll")
LoadPlugin("D:\plugins\fieldhint.dll")
function Preset0(clip c) {
#Name: Default
c
return last
}
DGDecode_Mpeg2Source("D:\file1.d2v")
Trim(2805,5946)++Trim(8050,26479)++Trim(28278,49256)++Trim(51955,52849)
YattaPreMatchClip = last
FieldHint(ovr="D:\file1.d2v.fh.txt")
TDeint(clip2=YattaPreMatchClip,hints=true,order=1,type=0,sharp=true)
PresetClip0=Preset0()
PresetClip0.Trim(0,43445)
TDecimate(mode=1,cycle=5,ovr="D:\file1.d2v.dec.txt")
error log:
[Error] Log
-[Information] Versions
--[NoImage] MeGUI Version : 0.3.5.0
--[NoImage] OS : Windows XP Professional x86 SP3 (5.1.196608.2600)
--[NoImage] Latest .Net Framework installed : 3.5 (3.5.30729.01)
--[NoImage] Avisynth Version : 2.5.7.0
-[Information] AutoEncode job generation log
--[NoImage] Desired Size : 700 MB
--[NoImage] Split Size : null
--[Information] Eliminating duplicate filenames
---[NoImage] Video output file: D:\yatta\file1.d2v.m4v
---[NoImage] Muxed output file: D:\yatta\file1.d2v-muxed.mp4
---[NoImage] Encodable audio stream 0: D:\yatta\file1.mp3
-[Error] Log for job1 (audio, file1.mka -> file1.mp3)
--[Information] [14.1.2011 г. 21:23:08] Started handling job
--[Information] [14.1.2011 г. 21:23:08] Preprocessing
--[NoImage] Avisynth script
---[NoImage] DirectShowSource("D:\yatta\file1.mka")
---[NoImage] EnsureVBRMP3Sync()
---[NoImage] 6<=Audiochannels(last)?x_stereo78294a6102a74bcc87d806b603838952(ConvertAudioToFloat(last)):last
---[NoImage] SSRC(44100)
---[NoImage] Normalize()
---[NoImage] 32==Audiobits(last)?ConvertAudioTo16bit(last):last
---[NoImage] return last
---[NoImage] function x_stereo78294a6102a74bcc87d806b603838952(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] c = GetChannel(a, 3)
---[NoImage] lfe = GetChannel(a, 4)
---[NoImage] sl = GetChannel(a, 5)
---[NoImage] sr = GetChannel(a, 6)
---[NoImage] l_sl = MixAudio(fl, sl, 0.2929, 0.2929)
---[NoImage] c_lfe = MixAudio(lfe, c, 0.2071, 0.2071)
---[NoImage] r_sr = MixAudio(fr, sr, 0.2929, 0.2929)
---[NoImage] l = MixAudio(l_sl, c_lfe, 1.0, 1.0)
---[NoImage] r = MixAudio(r_sr, c_lfe, 1.0, 1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
--[NoImage] Commandline used: -b 128 --cbr -h - "{0}"
--[Information] [14.1.2011 г. 21:23:09] Encoding started
--[Information] [14.1.2011 г. 21:23:09] Encode thread started
--[Information] [14.1.2011 г. 21:23:09] Avisynth script environment opened
--[Error] An error occurred
---[NoImage] Exception message
----[NoImage] DirectShowSource: Could not open as video or audio.
----[NoImage] Video returned: "DirectShowSource: couldn't open file D:\yatta\file1.mka:
----[NoImage] The source filter for this file could not be loaded."
----[NoImage] Audio returned: "DirectShowSource: couldn't open file D:\yatta\file1.mka:
----[NoImage] The source filter for this file could not be loaded."
---[NoImage] Stacktrace
----[NoImage] at MeGUI.AviSynthClip..ctor(String func, String arg, AviSynthColorspace forceColorspace, AviSynthScriptEnvironment env)
----[NoImage] at MeGUI.AviSynthAudioEncoder.encode()
---[NoImage] Inner exception: null
--[Information] [14.1.2011 г. 21:23:10] Job completed
Sharktooth
15th January 2011, 01:23
that's coz the audio encoding part is still using DirectShow
--[NoImage] Avisynth script
---[NoImage] DirectShowSource("D:\yatta\file1.mka")
however the error message is quite clear
----[NoImage] Audio returned: "DirectShowSource: couldn't open file D:\yatta\file1.mka:
----[NoImage] The source filter for this file could not be loaded."
that means you miss the decoder for the audio stream.
las7h0p3
15th January 2011, 03:32
Thanks for the help, it works fine now. :)
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.