Log in

View Full Version : No playback of .avs-file


[DSL]Sensenman
14th February 2006, 16:28
Hi there

I've installed the Gordian Knot Rippack (actual version), used DVD-Decrypter to rip the DVD to my HDD, used DGIndex to generate a .d2v-project and made a .avs-script using Gordian Knot.
But now it seems I can't open this script using either MeGUI (...cannot be opened. Please make sure it's a valid AviSynth script and that AviSynth is properly installed (...) Error message for your reference:AviStreamGetFrameOpen failed.) or Zoom-Player ( Unable to play [DVDVolume.avs]. This may be due to a corrupt file, missing filters, filter conflicts, or hardware related issues.)

Here's the script:

# Created with Gordian Knot
#
# http://gknot.doom9.org

# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\KernelDeInt.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgbob.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\Convolution3d.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\FluxSmooth.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\TomsMoComp.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\VSFilter.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\SimpleResize.dll")

# SOURCE
mpeg2source("D:\DVD\Projects\DVDVolume_VTS_03_PGC1\DVDVolume.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(12,14,698,548)

# SUBTITLES
#VobSub("FileName")

# RESIZING
LanczosResize(704,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 14 for use in GKnot!
#SelectRangeEvery(280,14)

# FOOL CCEnc
#empty = BlankClip()
#AudioDub(last,empty)


The .d2v-file opens fine in the .avs-creation of MeGUI and in Gordian Knot, so I think it's an AviSynth issue.

Thanks for your help in advance!

foxyshadis
14th February 2006, 20:18
Ensure that both
C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll
C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll
exist, that
D:\DVD\Projects\DVDVolume_VTS_03_PGC1\DVDVolume.d2v
exists and was generated with the same version of dgindex as dgdecode (vdub would tell you), and that avisynth is actually installed. If in doubt redownload it (http://prdownloads.sourceforge.net/avisynth2/Avisynth_256.exe?download), and install somewhere. If there's still problems it might be a plugin conflict.

Boulder
14th February 2006, 22:05
Open the script in VirtualDub and see if it gives you a specific error message.

[DSL]Sensenman
15th February 2006, 06:15
undot.dll, dgdecode.dll and the .d2v-project file all exist in the location specified
in the .avs-file.

VirtualDubMod gives the following error-message:
Couldn't locate decompressor for format 'YV12' (unknown).
VirtualDub requires a Video for Windows (VFW) compatible codec (...).

Version of Dgindex.exe and the dgdecode.dll are the same, re-installing AviSynth didn't help either.

Boulder
15th February 2006, 07:17
Try installing the latest XviD binary.

www.koepi.org

[DSL]Sensenman
15th February 2006, 13:51
Boulder, you're the man! Works like a charm now ! :thanks: