xyloy
1st February 2006, 13:01
I've got a very annoying problem. It's the first time when everything I try is helpless.
Let's resume the facts shortly:
Gordian Knot 0.35 setup2 installed (AviSynth 2.5.5 - DGIndex 1.4.3)
AviSynth plugins correctly installed
the AviSynth script(done by GordianKnot) works in Media Player Classic 6.4.8.7 and VirtualDubMod 1.5.10.2
XviD v1.1.0 finale is the YV12 decoder used
MeGUI v0.2.3.2060 (found here (http://www.chronocrossdev.com/apps/megui/)) is used, since the MeGUIx264 SVN v0.2.3.2050 given with x264 rev.410 (http://x264.nl/) suddenly needed some 'AviSynthWrapper.dll' (It worked perfectly before without it)
All of the others encodes(14 so far) from the same DVDs went fine(MP4 output) with exactly the same settings, the same AviSynth script and apps/files versions
The 3 pass seems to work fine(progress is shown, and a .stats.temp file of a few MB is done), but I have a 0 KB .MP4 file output
I have tried again with a demuxed video stream (demux done by DVD Decrypter), wich has given me .M2V files instead of .VOB files. It didn't change anything
I had the same problem with MeGUI v0.2.3.2055. I didn't try MeGUI v0.2.3.2058; since 0.2.3.2060 seems to be the newest version
Finally, here is the log:
Starting job job1-1 at 07:35:52
Job is a video job. encoder commandline:
--pass 1 --bitrate 1133 --stats "F:\****\Episode7\Episode7.stats" --bframes 3 --b-pyramid --subme 1 --analyse none --me dia --cqm "jvt" --progress --no-psnr --output NUL "F:\****\Episode7\Episode7.avs"
successfully started encoding
Processing ended at 08:18:11
----------------------------------------------------------------------------------------------------------
Log for job job1-1
avis [info]: 528x384 @ 25.00 fps (72202 frames)
x264 [info]: using cpu capabilities MMX MMXEXT SSE 3DNow!
----------------------------------------------------------------------------------------------------------
job job1-1 has been processed. This job is linked to the next job: job1-2
Starting job job1-2 at 08:18:11
Job is a video job. encoder commandline:
--pass 3 --bitrate 1133 --stats "F:\****\Episode7\Episode7.stats" --ref 5 --mixed-refs --no-fast-pskip --bframes 3 --b-pyramid --bime --weightb --analyse all --8x8dct --cqm "jvt" --progress --no-psnr --output "F:\****\Episode7\Episode7.mp4" "F:\****\Episode7\Episode7.avs"
successfully started encoding
Processing ended at 08:18:16
----------------------------------------------------------------------------------------------------------
Log for job job1-2
desired video bitrate of this job: 1133 kbit/s - obtained video bitrate: 0 kbit/s
----------------------------------------------------------------------------------------------------------
job job1-2 has been processed. This job is linked to the next job: job1-3
Starting job job1-3 at 08:18:16
Job is a video job. encoder commandline:
--pass 3 --bitrate 1133 --stats "F:\****\Episode7\Episode7.stats" --ref 5 --mixed-refs --no-fast-pskip --bframes 3 --b-pyramid --bime --weightb --analyse all --8x8dct --cqm "jvt" --progress --no-psnr --output "F:\****\Episode7\Episode7.mp4" "F:\****\Episode7\Episode7.avs"
successfully started encoding
Processing ended at 08:18:16
----------------------------------------------------------------------------------------------------------
Log for job job1-3
desired video bitrate of this job: 1133 kbit/s - obtained video bitrate: 0 kbit/s
And the script:
# Created with Gordian Knot
#
# http://gknot.doom9.org
# PLUGINS
LoadPlugin("E:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\KernelDeInt.dll")
LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgbob.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\Convolution3d.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\FluxSmooth.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\TomsMoComp.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\VSFilter.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\SimpleResize.dll")
# SOURCE
mpeg2source("F:\****\Episode7\Episode7.d2v")
# TRIM
#trim(startframe,endframe)
# IVTC
#Telecide(order=1,guide=1).Decimate()
# or use
#IVTC(44,11,95)
#GreedyHMA(1,0,4,0,0,0,0,0)
# DEINTERLACING (1)
FieldDeinterlace()
#FieldDeinterlace(blend=false)
#TomsMoComp(1,5,1)
# DEINTERLACING (2)
#KernelDeInt(order=1,sharp=true)
# or maybe
#DGBob(order=1,mode=0)
# DEINTERLACING (3) - special requests
#GreedyHMA(1,0,0,0,0,0,0,0)
#Telecide()
#SeparateFields()
# CROPPING
crop(0,0,718,572)
# SUBTITLES
#VobSub("FileName")
# RESIZING
LanczosResize(528,384)
# DENOISING: choose one combination (or none)
Undot()
# 1) little noise
#Temporalsoften(2,3,3,mode=2,scenechange=6)
#mergechroma(blur(1.3))
#FluxSmoothST(5,7)
# 2) medium noise
#Temporalsoften(3,5,5,mode=2,scenechange=10)
#Convolution3d("moviehq")
#FluxSmoothST(7,7)
# 3) heavy noise
#Temporalsoften(4,8,8,mode=2,scenechange=10)
#Convolution3d("movielq")
#FluxSmoothST(10,15)
# BORDERS
#AddBorders(left,top,right,bottom)
# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 20 for use in GKnot!
#SelectRangeEvery(400,20)
# FOOL CCEnc
#empty = BlankClip()
#AudioDub(last,empty)
I guess I could use VirtualDubMod and x264's VFW frontend for this time as a workaround since I don't use the missing options(except for Bidirectionnal ME and Chroma ME). But usually I do use them...
Let's resume the facts shortly:
Gordian Knot 0.35 setup2 installed (AviSynth 2.5.5 - DGIndex 1.4.3)
AviSynth plugins correctly installed
the AviSynth script(done by GordianKnot) works in Media Player Classic 6.4.8.7 and VirtualDubMod 1.5.10.2
XviD v1.1.0 finale is the YV12 decoder used
MeGUI v0.2.3.2060 (found here (http://www.chronocrossdev.com/apps/megui/)) is used, since the MeGUIx264 SVN v0.2.3.2050 given with x264 rev.410 (http://x264.nl/) suddenly needed some 'AviSynthWrapper.dll' (It worked perfectly before without it)
All of the others encodes(14 so far) from the same DVDs went fine(MP4 output) with exactly the same settings, the same AviSynth script and apps/files versions
The 3 pass seems to work fine(progress is shown, and a .stats.temp file of a few MB is done), but I have a 0 KB .MP4 file output
I have tried again with a demuxed video stream (demux done by DVD Decrypter), wich has given me .M2V files instead of .VOB files. It didn't change anything
I had the same problem with MeGUI v0.2.3.2055. I didn't try MeGUI v0.2.3.2058; since 0.2.3.2060 seems to be the newest version
Finally, here is the log:
Starting job job1-1 at 07:35:52
Job is a video job. encoder commandline:
--pass 1 --bitrate 1133 --stats "F:\****\Episode7\Episode7.stats" --bframes 3 --b-pyramid --subme 1 --analyse none --me dia --cqm "jvt" --progress --no-psnr --output NUL "F:\****\Episode7\Episode7.avs"
successfully started encoding
Processing ended at 08:18:11
----------------------------------------------------------------------------------------------------------
Log for job job1-1
avis [info]: 528x384 @ 25.00 fps (72202 frames)
x264 [info]: using cpu capabilities MMX MMXEXT SSE 3DNow!
----------------------------------------------------------------------------------------------------------
job job1-1 has been processed. This job is linked to the next job: job1-2
Starting job job1-2 at 08:18:11
Job is a video job. encoder commandline:
--pass 3 --bitrate 1133 --stats "F:\****\Episode7\Episode7.stats" --ref 5 --mixed-refs --no-fast-pskip --bframes 3 --b-pyramid --bime --weightb --analyse all --8x8dct --cqm "jvt" --progress --no-psnr --output "F:\****\Episode7\Episode7.mp4" "F:\****\Episode7\Episode7.avs"
successfully started encoding
Processing ended at 08:18:16
----------------------------------------------------------------------------------------------------------
Log for job job1-2
desired video bitrate of this job: 1133 kbit/s - obtained video bitrate: 0 kbit/s
----------------------------------------------------------------------------------------------------------
job job1-2 has been processed. This job is linked to the next job: job1-3
Starting job job1-3 at 08:18:16
Job is a video job. encoder commandline:
--pass 3 --bitrate 1133 --stats "F:\****\Episode7\Episode7.stats" --ref 5 --mixed-refs --no-fast-pskip --bframes 3 --b-pyramid --bime --weightb --analyse all --8x8dct --cqm "jvt" --progress --no-psnr --output "F:\****\Episode7\Episode7.mp4" "F:\****\Episode7\Episode7.avs"
successfully started encoding
Processing ended at 08:18:16
----------------------------------------------------------------------------------------------------------
Log for job job1-3
desired video bitrate of this job: 1133 kbit/s - obtained video bitrate: 0 kbit/s
And the script:
# Created with Gordian Knot
#
# http://gknot.doom9.org
# PLUGINS
LoadPlugin("E:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\KernelDeInt.dll")
LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgbob.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\Convolution3d.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\FluxSmooth.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\TomsMoComp.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\VSFilter.dll")
#LoadPlugin("E:\PROGRA~1\GORDIA~1\AviSynthPlugins\SimpleResize.dll")
# SOURCE
mpeg2source("F:\****\Episode7\Episode7.d2v")
# TRIM
#trim(startframe,endframe)
# IVTC
#Telecide(order=1,guide=1).Decimate()
# or use
#IVTC(44,11,95)
#GreedyHMA(1,0,4,0,0,0,0,0)
# DEINTERLACING (1)
FieldDeinterlace()
#FieldDeinterlace(blend=false)
#TomsMoComp(1,5,1)
# DEINTERLACING (2)
#KernelDeInt(order=1,sharp=true)
# or maybe
#DGBob(order=1,mode=0)
# DEINTERLACING (3) - special requests
#GreedyHMA(1,0,0,0,0,0,0,0)
#Telecide()
#SeparateFields()
# CROPPING
crop(0,0,718,572)
# SUBTITLES
#VobSub("FileName")
# RESIZING
LanczosResize(528,384)
# DENOISING: choose one combination (or none)
Undot()
# 1) little noise
#Temporalsoften(2,3,3,mode=2,scenechange=6)
#mergechroma(blur(1.3))
#FluxSmoothST(5,7)
# 2) medium noise
#Temporalsoften(3,5,5,mode=2,scenechange=10)
#Convolution3d("moviehq")
#FluxSmoothST(7,7)
# 3) heavy noise
#Temporalsoften(4,8,8,mode=2,scenechange=10)
#Convolution3d("movielq")
#FluxSmoothST(10,15)
# BORDERS
#AddBorders(left,top,right,bottom)
# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 20 for use in GKnot!
#SelectRangeEvery(400,20)
# FOOL CCEnc
#empty = BlankClip()
#AudioDub(last,empty)
I guess I could use VirtualDubMod and x264's VFW frontend for this time as a workaround since I don't use the missing options(except for Bidirectionnal ME and Chroma ME). But usually I do use them...