PDA

View Full Version : avssource


zefram
23rd October 2005, 10:40
I want to write a program to trim avs files. It should take any avs file as input, and create a 'trimmed' avs file as output.

The problem I have is that some avs files use the 'return vid', and others don't.

One way to solve this problem, would be if avisynth could do the following:

b.avs:
avssource("a.avs").trim(0,50)+avssource("a.avs").trim(100,150) etc.

Any suggestions? :confused:

zefram
23rd October 2005, 10:50
:stupid:

I found my own answer: Both import() and avisource() can do this.

Thanx anyway.