I have used the following Avisynth script file:
AviSource("D:\movie.avi")
SmartDeinterlace (2,10,true,true,true)
BiCubicResize(480,480,0.00,0.75)
TemporalSmoother(2)
If I open it with Virtualdub, I get the following error:
Avisynth open failure:
Script error: there is no function named "SmartDeinterlace"
If I open it with CCE, program crashes.
If I open it with WMP, I get the following error:
AviSource: couldn't locate a decompressor for fourcc dvsd
Any help is very much appreciated.
+ Reply to Thread
Results 1 to 7 of 7
-
-
You need Donald Graft's plugin (Decomb.dll) to
use smartdeinterlace PLUS add the following line before avisource
Loadplugin("C:\filters\Donald Graft\Decomb.dll")
Oh and if you have an AMD cpu, add the following line
at the end to fool cce that audio is included in the frameserve
(to help prevent cce crashes)
ResampleAudio(44100) -
Hi Offline,
Thank you for your reply.
How about for TemporalSmoother and TemporalCleaner filters?
Do I need another *.dll file?
Cheers. -
LoadPlugin("mpeg2dec.dll")
AviSource("D:\movie.avi")
Import("c:\dir\vdub_filters.avs")
ConvertToRGB
SmartDeinterlace (2,10,true,true,true)
ConvertToYUY2
BiCubicResize(480,480,0.00,0.75)
TemporalSmoother(2)
SmartDeinterlace is a VirtualDub plugin. TemporalSmoother is part of the MPEG2DEC.dll.
TemporalCleaner is a virtualdub plugin too. I haven't seen an Avisynth script yet.
Definitely you should try the decomb plugin. Well, I hate it to deinterlace at all and the filter, that work fine with one source may be worse with the other source. In my special case I tested about 10 deinterlace filters and figured out, that Decomb(FieldDeinterlace) worked best. -
SmartDeinterlace is also part of mpeg2dec.dll.
http://users.win.be/dividee/avisynth.html
LoadPlugin("mpeg2dec.dll")
AviSource("D:\movie.avi")
SmartDeinterlace (2,10,true,true,true)
BiCubicResize(480,480,0.00,0.75)
TemporalSmoother(2) -
that Decomb(FieldDeinterlace) worked best.
find smartdeinterlace does a better job with hi-res (for Pal).
As always ymmy (your milage may vary)
Similar Threads
-
PIP Problem using AviSynth
By wakeup in forum EditingReplies: 4Last Post: 20th Feb 2012, 18:14 -
never mind, fixed audio sync problem in avisynth
By spiritgumm in forum Video ConversionReplies: 0Last Post: 16th May 2010, 10:58 -
W7 + AviSynth + VC-1 = problem?
By follz20 in forum Video ConversionReplies: 5Last Post: 5th May 2010, 12:16 -
AviSynth Script Problem
By Eva-Unit01 in forum EditingReplies: 21Last Post: 29th Dec 2009, 12:00 -
Avisynth Directshowsource Problem
By Robert Simandl in forum Video ConversionReplies: 3Last Post: 2nd Jan 2008, 07:41