in case the field deinterlacer fails, try this....
when you get here:
click on EDIT!
now you will be taken to your avisynth script:
+++++
# Created with Gordian Knot
#
# http://thewef.nav.to
#
# PLUGINS
# get them from http://users.win.be/dividee
LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\mpeg2dec.dl l")
#LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\decomb.dll ")
#LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\InverseTel ecine.dll")
#LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\Avisynth_S patial.dll")
LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\GreedyHMA.d ll")
#LoadPlugin("C:\WINDOWS\SYSTEM\vobsub.dll")
#LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\SimpleResi ze.dll")
#
# SOURCE
mpeg2source("E:\dvd\ryan\video_ts\ryan.d2v")
#
# TRIM
trim(0,233893)
#
# IVTC
#Telecide()
#Decimate(cycle=5)
# or use
#InverseTelecine(40,10,15)
#GreedyHMA(1,0,4,0,0,0,0,0)
#
# DEINTERLACING
#FieldDeinterlace()
# or use
#VerticalReduceBy2
# or maybe
GreedyHMA(1,0,0,0,0,0,0,0)
#
# CROPPING
crop(5,6,712,560)
#
# DENOISING: choose one combination (or none)
# 1) little noise (fast)
TemporalSmoother(2,1)
#
# 2) medium noise (slow)
#SpatialSoftenMMX(1,4,6,false,false,4,4,6,8)
#TemporalSmoother(2)
#
# 3) heavy noise (very slow, you have been warned)
#SpatialSoftenMMX(2,4,6,false,false,4,4,6,8)
#TemporalSmoother(3)
#SpatialSoftenMMX(1,4,6,false,false,4,4,6,8)
#
# SUBTITLES
#VobSub("FileName")
#
# RESIZING
SimpleResize(640,344)
#
# BORDERS
#AddBorders(left,top,right,bottom)
#
# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 14 for use in GKnot!
#SelectRangeEvery(280,14)
#
# FOOL CCEnc
#ResampleAudio(44100)
+++++
load greedyhma by deleting the '#' in the load section and ivtc or de-interlacing section as well!
this way you will use greedyhma for de-interlacing/ivtc and it might make a difference!
when you get here:
click on EDIT!
now you will be taken to your avisynth script:
+++++
# Created with Gordian Knot
#
# http://thewef.nav.to
#
# PLUGINS
# get them from http://users.win.be/dividee
LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\mpeg2dec.dl l")
#LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\decomb.dll ")
#LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\InverseTel ecine.dll")
#LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\Avisynth_S patial.dll")
LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\GreedyHMA.d ll")
#LoadPlugin("C:\WINDOWS\SYSTEM\vobsub.dll")
#LoadPlugin("C:\TOOLS\GORDIA~2\GORDIA~1\SimpleResi ze.dll")
#
# SOURCE
mpeg2source("E:\dvd\ryan\video_ts\ryan.d2v")
#
# TRIM
trim(0,233893)
#
# IVTC
#Telecide()
#Decimate(cycle=5)
# or use
#InverseTelecine(40,10,15)
#GreedyHMA(1,0,4,0,0,0,0,0)
#
# DEINTERLACING
#FieldDeinterlace()
# or use
#VerticalReduceBy2
# or maybe
GreedyHMA(1,0,0,0,0,0,0,0)
#
# CROPPING
crop(5,6,712,560)
#
# DENOISING: choose one combination (or none)
# 1) little noise (fast)
TemporalSmoother(2,1)
#
# 2) medium noise (slow)
#SpatialSoftenMMX(1,4,6,false,false,4,4,6,8)
#TemporalSmoother(2)
#
# 3) heavy noise (very slow, you have been warned)
#SpatialSoftenMMX(2,4,6,false,false,4,4,6,8)
#TemporalSmoother(3)
#SpatialSoftenMMX(1,4,6,false,false,4,4,6,8)
#
# SUBTITLES
#VobSub("FileName")
#
# RESIZING
SimpleResize(640,344)
#
# BORDERS
#AddBorders(left,top,right,bottom)
#
# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 14 for use in GKnot!
#SelectRangeEvery(280,14)
#
# FOOL CCEnc
#ResampleAudio(44100)
+++++
load greedyhma by deleting the '#' in the load section and ivtc or de-interlacing section as well!
this way you will use greedyhma for de-interlacing/ivtc and it might make a difference!
Comment