PDA

View Full Version : Cannot get Virtualdub plugins to work in Avisynth


tedkunich
28th November 2004, 08:22
I know this worked before (not with these plugins though), but I cannot get virtual dub plugins to work with the 2.5.5 release of avisynth. I looks like Avisynth is loading the plugin, as misnaming the plugin name causes an error on open, but with the following script, I see no difference whether the _VD_white filter is called or not (while viewing in VDMod). This filter and settings do a resonable job on this piece of footage within VDMod itself, but I need to have different settings for different portions of this clip. Is there any trick needed to get VD plugins to work? I have tried 3 or 4 different ones and none ever seem to get applied.


Thanks

T



SetMemoryMax(192)

LoadVirtualDubPlugin ("E:\VirtualDubMod\unused plugins\whitebalance.vdf", "_VD_white")

scr=avisource("E:\Xmass\raw\1988_DV.avi")
mono=getchannel(scr,1).SSRC(48000)
scr=audiodub(scr,mono).assumebff()

scr

converttorgb32(interlaced=true)
_VD_white(17,14084067,1691805667,1691805667,1691805667,1691805669,-1,2,1682656075,1684300900,0,0,0,0)

Wilbert
29th November 2004, 11:00
1) Remove the empty space between "LoadVirtualDubPlugin" and "(".

2) The script looks ok to me. Could you try older AviSynth versions (v2.54 for example)?

tedkunich
1st December 2004, 06:28
Originally posted by Wilbert
1) Remove the empty space between "LoadVirtualDubPlugin" and "(".

2) The script looks ok to me. Could you try older AviSynth versions (v2.54 for example)?

Wilbert,

Looks like I had a parameter set incorrectly in the function call - it now works. Is there a limit to the number of VD pluggins that may be called?


Thanks

Ted