OK, I have one big file of the Grammys and I want to extract out all the live performances, and string them together. I could use AlignedSplice with Trim to put all the extracts together, but I cannot seem to get FadeIn / FadeOut to work on EACH individual performance within the one script.
Is it possible to do this in one AviSynth script or do I have to do one script per performance ?
bd.
+ Reply to Thread
Results 1 to 3 of 3
-
-
You should be able to do something like this:
Code:orig = avisource(capture-file) perf1 = orig.trim(start, end).fadein(framecount).fadeout(framecount) perf2 = orig.trim(start, end).fadein(framecount).fadeout(framecount) perf3 = orig.trim(start, end).fadein(framecount).fadeout(framecount) ... return perf1 ++ perf2 ++ perf3 ++ ...
Similar Threads
-
Help with scripting - please
By cliffspicer in forum SVCD2DVD & VOB2MPGReplies: 4Last Post: 12th Oct 2009, 12:08 -
A few ideas for a Video Editor for AVIsynth Scripting
By vhelp in forum EditingReplies: 4Last Post: 2nd Jan 2009, 23:47 -
Avisynth Batch Scripting
By Maikeru-sama in forum Video ConversionReplies: 1Last Post: 20th Jun 2008, 22:18 -
DVD scripting
By Rosko1702RS in forum Authoring (DVD)Replies: 6Last Post: 15th Mar 2008, 00:57 -
Avisynth scripting
By demonwarrior in forum Newbie / General discussionsReplies: 9Last Post: 24th Dec 2007, 00:05