Log in

View Full Version : ConvertToYV12 with Deen


YY1020
11th July 2003, 17:42
Is it correct for ConvertToYV12 with deen??
thx for help!!!


#
# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec3.dll")
#LoadPlugin("C:\Plugin\Decomb.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\Convolution3d.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\FluxSmooth.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\TomsMoComp.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\VSFilter.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\SimpleResize.dll")
#LoadPlugin("C:\Plugin\Release\VSFilter.dll")
#LoadPlugin("C:\Plugin\Release Unicode\VSFilter.dll")
LoadPlugin("C:\Plugin\MSharpen.dll")
LoadPlugin("C:\Plugin\Deen.dll")
#
# SOURCE
avisource("C:\Ready\PM\V.avi")
#ConvertToYV12()
ConvertToYV12(interlaced=true)
#
# TRIM
#trim(startframe,endframe)
#
#IVTC
#Telecide(guide=1)
#Decimate(cycle=5)
#
# CROPPING
#crop(0,0,640,480)
#
#
# SUBTITLES
textsub("XX.ssa")
#
# RESIZING
#BicubicResize(640,480,0,0.5)
#SimpleResize(640,480)
#
#
#MSharpen
MSharpen(threshold=15,strength=75,mask=false,highq=true,debug=false)
#
#3D DENOISE
deen("a3d",1,10,12)
#

KpeX
11th July 2003, 17:52
Please clarify your question. You do have the correct convert command assuming your avi is interlaced. Are you having problems with loading the script ?

YY1020
11th July 2003, 18:00
Originally posted by KpeX
Please clarify your question. You do have the correct convert command assuming your avi is interlaced. Are you having problems with loading the script ?
1.Is this avs script is correct ConvertToYV12??
2.Is this avs script can use deen??

I'am sorry,my english is not good!!!

Wilbert
11th July 2003, 18:30
Unless "deen("a3d",1,10,12)" does only spatial filtering (I guess not, but check the readme), you need to deinterlace before using deen. If the avi is already deinterlaced, change the script into

avisource("C:\Ready\PM\V.avi")
ConvertToYV12()
textsub("XX.ssa")
MSharpen(threshold=15,strength=75,mask=false,highq=true,debug=false)
deen("a3d",1,10,12)

jonjon51
11th July 2003, 18:33
if your source is interlaced, and if your source is not in YV12 color format, yes, the command "ConvertToYV12(interlaced=true)" is good ...but why don't you deinterlace your clip (just) after this command :confused: you want to compress it in interlaced mode ? I advise you to deinterlace it before all plugins.

the Deen command line of your script is good. and it should work... does it ?

@all: excuse my very very bad english...

YY1020
11th July 2003, 18:40
THX Wilbert/jonjon51 and KpeX