VideoHelp Forum




+ Reply to Thread
Results 1 to 3 of 3
  1. 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.
    Quote Quote  
  2. Member
    Join Date
    Jun 2002
    Location
    MO, US
    Search Comp PM
    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 ++ ...
    This creates several clip variables in the script, one for each performance, and does a fade-in/out on each one. Then all the clips are spliced together and that's your final output.
    Quote Quote  
  3. Thanks, works a treat :P
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!