1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Avisynth basic editing question

Discussion in 'Windows - Software discussion' started by Milennin, Jul 26, 2012.

  1. Milennin

    Milennin Member

    Joined:
    Jul 26, 2012
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    11
    So I've been trying to get some basic video editing done with Avisynth, but I can't figure out how to do what I want, and there doesn't seem to be any tutorial covering it.

    So basically I have 2 clips that I load in Avisynth. This part I can get right.
    The problem starts when I want to edit some parts off the first clip.
    None of the commands that work for trimming and fading a clip when working with a single clip work anymore.

    Any help?
     
  2. attar

    attar Senior member

    Joined:
    Jun 17, 2005
    Messages:
    11,147
    Likes Received:
    41
    Trophy Points:
    128
    Don't use it much, but maybe apply the changes before joining?


    Code:
    a=avisource("clip.avi")
    part1=a.Trim(0,499)
    
    B=avisource("clip2.avi")
    part2=b.Trim(200,600)
    
    alignedSplice(part1,part2)
    For help with AviSynth questions, better at the VideoHelp site.
    http://forum.videohelp.com/
     
  3. Milennin

    Milennin Member

    Joined:
    Jul 26, 2012
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    11
    Thank you, I will try that.
     

Share This Page