PDA

View Full Version : Why source is giving error?


TiaoMacaleh
20th May 2005, 04:24
Im trying to encode with temporalsoften2 and limitedsharpen but everytime i try to load the .avs ou gk it gives me error on the line mpeg2source("*.d2v") anyone have any clue?

edit: error seems to be on MPEG2Dec3dg.dll ... but now gives error on temporalsoften comand line... when i try to load temporalsoften.dll it says its not a 2.5 plugin....

Help :(

unskinnyboy
20th May 2005, 04:29
:script:

TiaoMacaleh
20th May 2005, 04:43
The source problem is gone removing the MPEG2Dec3dg.dll .. the problem is that it says temporalsoften2.dll isnt 2.5 compatible :(

-----

script

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

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


# SOURCE
mpeg2source("E:\WOAP_NTSC_LAT\total.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()

Undot()

Temporalsoften2(2,2,4,19,2)

# CROPPING
crop(4,56,712,362)

# SUBTITLES
#VobSub("FileName")

# RESIZING
LanczosResize(672,288)

# DENOISING: choose one combination (or none)
Undot()

import("C:\Arquivos de programas\GordianKnot\AvsScripts\LimitedSharpen.avs")

LimitedSharpen(ss_x=2.0,ss_y=2.0,Smode=3,strength=150)

# 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)

Didée
20th May 2005, 08:57
Don't try to import TemporalSoften2. Just use AviSynth's internal TemporalSoften, with same settings. Functionality is exactly the same, AFAIK.