Is the plugin no longer compatible with vers AviSynth 2.56a?
Shouldn't this work?
---------------------------------------------------
LoadPlugin("C:\Ut\Video\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\Plugins\SmoothDeinterlacer.dll")
# (Yes, i know i don't have to include the path!)
#
mpeg2source("Fantastic4_VideoDiary.d2v",cpu=6)# DGDecode Output is YV12
#
ConvertToYUY2(interlaced=true)# Smoothdeinterlacer requires YUY2
SmoothDeinterlace(tff=true)# Output is Progressive
---------------------------------------------------
AviSynth v2.56a
DGDecode v1.4.5
*Fantastic4_VideoDiary.d2v is in the same directory as Fantastic4_VideoDiary.avs
I'll install version 2.55 and try again.
---edit--
Yes Sir!, version 2.55 works just fine.
Something is obviously different.
---edit--
Maybe i'm expecting too much, the quality of the source is really awful, and it's directly off the DVD?
.
+ Reply to Thread
Results 1 to 7 of 7
-
-
Originally Posted by Wilbert
--edit--
Different from either one of these?;
The one i'm using at time of post;
http://www.avisynth.org/warpenterprises/files/smoothdeinterlacer_25_dll_20030218.zip
Looks to be slightly older;
http://www.guthspot.se/video/AVSPorts/SmoothDeinterlacer/AVSSmoothDeinterlacer.zip
. -
Yes, a different one:
http://www.geocities.com/wilbertdijkhof/SmoothDeinterlacer_25.zip -
I assumed this one was for vers 2.0; (AVSSmoothDeinterlacer.zip),
that's why i went the one labeled "25_dll".
A hybrid maybe?
Anyway, some stuff changed from v2.55 to v2.56, that's why it worked for AviSynth v2.55 and not for v2.56. -
After reading a bit more on colorspace i'm wondering if this is a good idea.
LoadPlugin("C:\Ut\Video\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\Plugins\SmoothDeinterlacer.dll")
# (Yes, i know i don't have to include the path!)
#
mpeg2source("Fantastic4_VideoDiary.d2v",cpu=6)# DGDecode Output is YV12
#
ConvertToYUY2(interlaced=true)# Smoothdeinterlacer requires YUY2
SmoothDeinterlace(tff=true)# Output is Progressive
Where YUY2 samples chroma once in every 2 pixels in a row, YV12 samples chroma once in every 2x2 pixel block!
Should this be; 1.Separate Fields, 2. change colorspace, 3. reweave (reinterlace), and then 4. Deinterlace?
Something like this;
LoadPlugin("C:\Ut\Video\DGMPGDec\DGDecode.dll")
# (jdl-interlace.avsi) - http://www.avisynth.org/stickboy/
#
mpeg2source("IntoTheBluePreview.d2v",cpu=6)# DGDecode Output is YV12
#
jdl_UnfoldFieldsVertical(flip=true).ConvertToYUY2( interlaced=false).jdl_FoldFieldsVertical(flip=true )
#
SmoothDeinterlace(tff=true,doublerate=false)
..or maybe the conversion using DGDecode.dll would be better;
LoadPlugin("C:\Ut\Video\DGMPGDec\DGDecode.dll")
#
mpeg2source("IntoTheBluePreview.d2v",cpu=6,upConv=1)
#
SmoothDeinterlace(tff=true,doublerate=false)
Yes, much better. The last script removed some of the blockiness (noise), or should i say avoided making blockiness.
I wondering if i should have converted back to YV12 before encoding to XviD. The black isn't as black as it used to be.
But thats just another opportunity to lose information (ConvertToYV12).
.
.
Similar Threads
-
AVIsynth refuses to work anymore... Plz help!
By Nagashi in forum Newbie / General discussionsReplies: 3Last Post: 24th Dec 2010, 17:44 -
MEGUI - not updating anymore
By Cunhambebe in forum Newbie / General discussionsReplies: 9Last Post: 28th Dec 2009, 21:11 -
Computer would not boot anymore
By videohalp in forum ComputerReplies: 17Last Post: 26th Jul 2009, 02:25 -
Is anything Processor specific anymore?
By greymalkin in forum ComputerReplies: 1Last Post: 22nd May 2008, 10:51 -
I can't see videos anymore!
By cece0808 in forum Newbie / General discussionsReplies: 1Last Post: 18th Aug 2007, 18:46