PDA

View Full Version : m2v files are not created


Jedd
30th October 2004, 02:05
I use DeSpot plugin to get rid of the film's noise - splashes, hair and strokes.
I can open my script in VDub and in CCE SP and results look very good.
When I try to run DVD Rbuilder it saves .vaf files, but doesn't produce m2v files.
:scared:

LoadPlugin("H:\Media\AviSynth 2.5\plugins\DGDecode.dll")
Loadplugin("H:\Media\AviSynth 2.5\plugins\DeSpot.dll")
mpeg2source("H:\NEWS\MTMP\D2VAVS\V01.D2V",idct=7)
trim(0,2975)

#big black spots
despot(sign=1,pwidth=45,pheight=45,p1=15,p2=8,mthres=8,color=true)
#thin white lines
despot(sign=-1,pwidth=140,pheight=100,p1=8,p2=1,mthres=5)
#thick hair lines (avoid real hair)
despot(sign=-1,pwidth=140,pheight=100,p1=15,p2=13,mthres=13,merode=24)
#lines with motion, avoid motion areas
despot(sign=-1,pwidth=140,pheight=100,p1=15,p2=13,mthres=13,merode=16,seg=1)
#small dots and dust
despot(pwidth=6,pheight=5,p1=15,p2=8,mthres=12,tsmooth=2)

ConvertToYUY2(interlaced=false)