Log in

View Full Version : AviUtl frame serving


FredThompson
21st July 2003, 08:36
Has anyone successfully used AviUtl as a filter by feeding it an AviSynth script then frame serving out to another AviSynth script?

Is there another way of getting the use of AviUtl filters besides saving a file?

Dreassica
21st July 2003, 08:51
load the aup file in avs with LoadVFAPIplugin.
like LoadVFAPIplugin("your path\aviutl.vfp","AUPsource")
aupsource("c:path\xxx.aup")
flipvertical()

There is a aviutl hack out there that allows avs input.
If u want it PM me

cipher
17th July 2004, 08:54
There's an avsinp.aui included in warpsharp's package which allows one to use avs script as input for aviutl.
dl page for warpsharp :
http://www.geocities.co.jp/SiliconValley-PaloAlto/2382/

The warpsharp could also be used to load input and filter plugins of AviUtl so that they can be used by avisynth, some usages could be like:

LoadPlugin("Warpsharp.dll")
LoadAviUtlInputPlugin("m2v.aui","MPEG2VIDEO")
LoadAviUtlFilterPlugin("lanczos3.auf", "Lanczos3Resize")

However, i still couldn't find a way to load aviutl project file (.aup) in avisynth, well we certainly could always let vfapi do such a job, but unneccessary colorspace conversions are introduced. :p

So it'll be extremely awesome if someone could make a plugin such that avisynth could recognize AviUtl project files directly, for AviUtl is just such a great tool. :D

Thx. =)