I am trying to use the plugin TomsMoComp in AviSynth to deinterlace my video, but no matter which application I use (Virtualdub) I keep getting the same error: 'TomsMoComp: Supports YUY2 and YV12 color formats only'. The thing is, I captured the video in YUY2 format, so I cannot figure out why it is giving me that error (if this matters, I used Huffyuv to compress it). I even tried adding 'ConvertToYUY2' in the AviSynth script and still gives the same error. This is the script:
LoadPlugin("C:\Downloads\1\Avisynth_2.5_Alpha\Toms MoComp_Avisynth\Release\TomsMoComp.dll")
clip = AVISource("C:\Documents and Settings\b\My Documents\Capture\#3 Finished\2.avi")
ConvertToYUY2(clip)
return clip.TomsMoComp(1,15,1)
I have messed with this for hours, tried researching it, cannot figure out why I am getting that error. Everything used is the most recent versions. Any help would be appreciated,
Thanks.
+ Reply to Thread
Results 1 to 4 of 4
-
-
have you tried:
...
clip=ConvertToYUY2(clip) #or clip=clip.ConvertToYUY2()
...
? -
Do you have force RGB output, or always suggest RGB output set for Huffyuv?
My script is usually much simpler
LOADPLUGIN("C:\Program Files\AviSynth 2.5\plugins\TomsMoComp.DLL")
AVISource("G:\capture.00.avi")
TomsMoComp(1,30,1)
Is clip=this and clip that really necc?I've never used it, and have never experienced any problems.
-
It works now! I enabled 'always suggest RGB output' in the Huffyuv properties. Works great now. And that clip = ... thing, I just tried that by using an example I found, but it is not needed. I just downloaded AviSynth a few days ago and am still messing with it. It just baffled me why it wouldn't work, just something simple that I never had to change before.
Thanks everyone
Similar Threads
-
Add QTGMC Deinterlacer to MeGUI's avisynth script creator drop down list?
By Simcut in forum Newbie / General discussionsReplies: 2Last Post: 30th Jul 2012, 16:58 -
New Free MSU Deinterlacer
By diablo23q in forum Video ConversionReplies: 1Last Post: 22nd Feb 2012, 09:55 -
Best Vdub deinterlacer?
By brassplyer in forum RestorationReplies: 14Last Post: 25th Apr 2010, 21:50 -
Best deinterlacer
By Xpenguin17 in forum EditingReplies: 12Last Post: 14th Sep 2009, 10:40 -
Avidemux 2.4.4 best deinterlacer
By Kalash109 in forum Video ConversionReplies: 5Last Post: 5th Jul 2009, 08:30