I need a video editing program

Discussion in 'Video - Software discussion' started by leroyorel, Jul 19, 2008.

  1. leroyorel

    leroyorel Regular member

    Joined:
    Jan 1, 2006
    Messages:
    108
    Likes Received:
    0
    Trophy Points:
    26
    That will let me have two videos side by side. I downloaded the trial for Adobe Premier Pro 2 but apparently my processor doesn't support the "SSE2 instruction set". Anything else?
     
  2. attar

    attar Senior member

    Joined:
    Jun 17, 2005
    Messages:
    11,147
    Likes Received:
    41
    Trophy Points:
    128
    You can install AVISynth, create a text script that can be loaded/dropped into a media player like 'Media Player Classic' or an editor like 'VirtualDub'.

    http://www.afterdawn.com/software/video_software/video_tools/avisynth.cfm

    A typical script, created with Notepad is the following - note that the file has to be saved with an .avs extension (example, test.avs).

    first = AVISource("d:\cd1.avi")
    second = AVISource("d:\cd2.avi")
    together=StackHorizontal(first,second)
    audio = audiodub(together,second) #audio comes from cd2.avi, cd1.avi is silent.
    return(audio)

    [​IMG]
     
  3. leroyorel

    leroyorel Regular member

    Joined:
    Jan 1, 2006
    Messages:
    108
    Likes Received:
    0
    Trophy Points:
    26
    My MPC kept getting some error whenever I tried but I don't think that's what I was looking for anyway. I meant that I want to save two pre-existing videos as one video. Where they would play side by side.
     
  4. attar

    attar Senior member

    Joined:
    Jun 17, 2005
    Messages:
    11,147
    Likes Received:
    41
    Trophy Points:
    128
    If you load the script in VirtualDub you can save it as an avi file (after selecting a suitable compressor from the 'Video' menu).
     

Share This Page