Log in

View Full Version : I NEED HELP WITH AviSynth


trinoserus
27th January 2005, 20:30
I am trying to create a DLL for video processing in AviSynth but I do not know how AviSynth handles frame by frame. Can anyone point in the direction of a sample DLL that processes video in AviSynth on a frame by frame basis? What I really need to know is if there is a way to say find a pointer that would be pointing to frame so I can call it in my DLL.

Guest
27th January 2005, 20:35
Are you trying to make an Avisynth filter? If so, go to www.avisynth.org and look for the Development section.

If not, then what are you trying to make?

trinoserus
31st January 2005, 05:55
Thats what I am trying to do and I have been to the site you suggested but have not yet found the help I need. Perhaps you have anyother suggestions. I really appreciate your help.

Guest
31st January 2005, 13:53
No, still the same suggestion!

Everything you could want to know about making Avisynth filters is here:

http://www.avisynth.org/FilterSDK

Every Avisynth filter implements a method called GetFrame(). So every filter process frames on frame-by-frame basis.

Really good is this article:

http://www.avisynth.org/BensAviSynthDocs

dragongodz
1st February 2005, 03:26
also you can look in the avisynth sections of this very forum. there are quite a few filters ,released under the GPL, you can look at the source for. however be aware if you intend to use the source code from them you must release you filter under the GPL aswell.

trinoserus
1st February 2005, 07:01
Thanks alot Donald. That was very helpful. I don't know how I did not find that.