View Full Version : MeGUI Encoding hangs at 99.96


[AS]
3rd June 2011, 05:27
I really don't know much about this issue, other then that it just hangs when it gets to 99.96, it's happened before, and i really couldn't figure it out.

I tried re- encoding 6 or 7 times but it continued to just hang.

Note: Happens on the first pass.

here's a screenshot.

http://dl.dropbox.com/u/10073683/encodehang.png

Thanks fellas

EDIT: Any ideas on how to solve the issue is my question?

AMED
3rd June 2011, 07:35
Well more info would help.

What version of MeGUI?
Are you using XVID or x264 to encode?
What are you encoding?
What Avisynth script are you using?

[AS]
3rd June 2011, 07:56
Well more info would help.

What version of MeGUI?
Are you using XVID or x264 to encode?
What are you encoding?
What Avisynth script are you using?

I am running the latest version of MeGUI.
X264 to encode.
I am encoding a BluRay m2ts file into an AVC video.

http://dl.dropbox.com/u/10073683/AdditionalINFO.png

Is additional Information about the encoding.

Script:

loadplugin("e:\MeGUI_2008_x86\tools\avisynth_plugin\removegrain.dll")
LoadPlugin("e:\MeGUI_2008_x86\tools\avisynth_plugin\MSharpen.dll")
LoadPlugin("e:\MeGUI_2008_x86\tools\avisynth_plugin\warpsharp.dll")
LoadPlugin("e:\MeGUI_2008_x86\tools\avisynth_plugin\degrainmedian.dll")
loadplugin("e:\MeGUI_2008_x86\tools\avisynth_plugin\Repair.dll")
LoadPlugin("e:\MeGUI_2008_x86\tools\avisynth_plugin\mt_masktools-25.dll")
#loadplugin("e:\MeGUI_2008_x86\tools\avisynth_plugin\VariableBlur.dll")
Import("E:\MeGUI_2008_x86\tools\avisynth_plugin\lsfmod.avsi")
LoadPlugin("C:\Program Files (x86)\K-Lite Codec Pack\Filters\Haali\avss.dll")
dss2("E:\BD.m2ts", fps=23.976).AssumeFPS(24000,1001)
#deinterlace
crop( 0, 130, 0, -132)
ConvertToYV12()

LanczosResize(1280,544) # Lanczos (Sharp)
mergechroma(blur(1.3)) # Little Noise
lsfmod(strength=90,Smode=5,defaults="fast",show=false,Soothe=true)

Lighto
3rd June 2011, 13:18
Got the problem a few times before, what common among them is that all of them use dss2.
Changing dss2 to another decoder will probably solve the problem.

[AS]
3rd June 2011, 21:37
Got the problem a few times before, what common among them is that all of them use dss2.
Changing dss2 to another decoder will probably solve the problem.

How would i go about doing that?

AMED
4th June 2011, 00:43
you might want to use the HD stream extractor on that M2TS and split the video, audio and subtitle streams up (make sure you use MKV for the output for the video). Then use the file indexer on the new MKV.

Temuthril
4th June 2011, 13:24
Do you happen to use CoreAVC with CUDA for decoding? It hangs for me at times when I use it in VirtualDub.

Lighto
23rd June 2011, 13:21
;1505311']How would i go about doing that?

Change dss2 to DirectShowSource.