Log in

View Full Version : AVS examples


lamapoo
24th October 2003, 17:07
Is there anywhere I can find some AVI synth script examples?

KpeX
24th October 2003, 17:27
http://forum.doom9.org/search.php?s=&action=showresults&searchid=641775&sortby=lastpost&sortorder=descending

That's the result of a forum search for avisynth script example. It's about 98 pages, that's a lot of reading. I'd recommend being more specific about what you're looking for, or doing some reading of http://www.avisynth.org/index.php?page=ScriptExamples
hth,

frodoontop
24th October 2003, 17:52
Look at snowbeach guide (http://forum.doom9.org/showthread.php?s=&threadid=56709&highlight=snowbeach+guide). It has some basic avisynth guidelines inspired by Koepi and other experienced users.

lamapoo
24th October 2003, 21:49
I have to make a script that can process about 500 10sec clips. Take 3 clips from a same 15 minute clip (there is a naming scheme to diferenciate them) and create a 30 second clip with fade in fadeout effects. It has to batch process it. So there would be a loop.

ex

movieid=0001
clipid=01

for i = 1 to 500

for z = 1 to 5 (because there is 5 clips per movie)

TGP1=movieid+"_"+clipid+_"+"1"
TGP2=movieid+"_"+clipid+_"+"2"
TGP2=movieid+"_"+clipid+_"+"3"

[routine to join files, this part is already done]
clipid = clipid +1
next z

movieid=movieid+1
next i

I'm not a programmer but I think this is what it would look like.

I also don't know how to specify the output file.