Log in

View Full Version : GUI for AviSynth


spook
19th May 2015, 10:59
Hi!

Since there seems to be no good GUI application for AviSynth, I came up with an idea to use my stream data processing framework as an editor for AviSynth scripts. The application looks like the following:

http://www.spook.freshsite.pl/Temporary/NodeLab.png

You can download proof-of-concept from my website (http://www.spook.freshsite.pl/protools). Note, that this is only a demo.

Please tell me, what you think about this way of editing Avisynth scripts. If any of you would like to participate in development of AviSynth plugin for my application, just tell me - it's written in C# and has fairly simple API.

Best regards -- Spook.

gnaggnoyil
22nd May 2015, 12:25
It just reproduces the wheel of GraphEdit(though a GraphEdit filter is not an Avisynth filter). Also, I don't think it is as simple to directly show the filter dependency DAG as to describe it in an language like what an avisynth script does. In some situations where the filter combination logic is very complicated, leading to a long and complicated script, using a GUI to directly show the filter dependency DAG would perhaps be a much more mess.

zerowalker
23rd May 2015, 14:32
Wow didn't know you could do stuff like that in C# (crappy programmer here);O

I like it, even though i am more for the text & code when it comes to avisynth (well i don't really have much choice anyway).
That GraphEdit style is a very simple and straightforward concept that's very easy to understand and keep track of:)

Interesting work.