Log in

View Full Version : Simple GUI for video editing? And scene detection?


hazel-ra
27th October 2008, 03:55
Is there a simple GUI for creating a avisynth script of edited or mixed avis? I googled avisntyh GUi, and just found one app that was a GUI for changing video, not really movie editing.

I'm talking about having a number of avi files, and getting something like


AviSource("file1.avi")
clip1 = trim ( 0, 100 )
clip3 = trim( 235, 870)
AviSource("file2.avi")
clip2 = trim( 89, 115)
scene1 + scene2 + scene3

as output. The app I'm imagining would have an interface similar to any movie editing app you find these days.

I'm using AVIsynth to make a video. It's going okay, but I'm at a complicated part, and using VirtualDub to figure out where my cuts are is getting to be a bear. And then lining up my cuts from different files is also getting cumbersome.

Also, are there any avisynth scripts or functions that attempt to do scene detection? Are there avisynth functions that can compare one frame to another as images, in a attempt to tell if a scene has changed?

:thanks: