Log in

View Full Version : AviSynth_C & AviSynth 2.5.5


dplaton
23rd March 2005, 08:31
I made a mistake, I installed an AviSynth 2.5.5 built after August 2004 and AviSynth_C simply doesn’t want to work. So I lost 2 of my favorites plug-in (Transition.dll and Ibob). Now I can’t find a 2.5.5 version before September 2004, to test if my assumption is true.

dplaton
23rd March 2005, 08:43
All my plug-in are in separate folders.

stickboy
23rd March 2005, 09:16
Huh? The version of AviSynth 2.5.5 on SourceForge (http://sourceforge.net/project/showfiles.php?group_id=57023) is from August 31, 2004.

2.5.4 is available too.

How are you loading the plug-ins?

dplaton
23rd March 2005, 09:29
Yes, that it says but when instaled version() says build September, or when it worked version() sayed build August.

LoadCPlugin("C:\path\....)

C API says that after 2.5.3 I can use LoadPlugin, and so is in the transition_4 example. But when it worked, it worked with Load C Plugin,
also ibob.

I want to make some avi slideshows and transall seems to me to work not flowly, beside the fact that transition gives (gaved) me the ability to choose where and how the transition occurs.

Wilbert
23rd March 2005, 10:35
You need to load avisynth_c.dll first. Thus

LoadPlugin("avisynth_c.dll")
LoadCPlugin("ibob.dll")

C API says that after 2.5.3 I can use LoadPlugin
As you noticed, that doesn't work that way anymore in later AviSynth versions.

dplaton
23rd March 2005, 11:39
OK

I will try at home.
But until now it wasn't necessary to call avisynth_c, I just putted the dll in winnt folder and everything worked.

Thanks you all, you wonderfull people

stickboy
24th March 2005, 06:44
Originally posted by dplaton
But until now it wasn't necessary to call avisynth_c, I just putted the dll in winnt folder and everything worked.Right. Native support for C plugins was removed.

(Why are you putting them all in your WinNT directory anyway?)

dplaton
24th March 2005, 09:56
LoadPlugin("avisynth_c.dll")
LoadCPlugin("ibob.dll")


works fine