Log in

View Full Version : Clip paste in a Video


_Sagan
4th November 2008, 21:28
Hello everybody,
I have a problem with a Video. I will cut a period about 6-7 seconds from the movie and paste a new clip above that cutted clip. How should i do this? I know that i can remove a clip with the function trim, but how can I paste a movie into the place the deleted clips. When you know the answer, than write it so fast like you can. Sorry for my bad English, but its isn`t my national language.

Alex_ander
4th November 2008, 22:02
If you don't care about replacing audio, you can use RemapFrames:
http://avisynth.org/stickboy/

IanB
4th November 2008, 23:01
Generally "Splice" is what you want. :search: It comes in 2 forms UnalignedSplice or "+" and AlignedSplice or "++". The aligned form truncates or pads the audio track length so it matches the associated video. The unaligned form just appends the tracks independently. You may also use AudioDub to build a new clip with the video from one and the audio from another. e.g.A=...Source(...)
B=...Source(...)
A1=A.Trim(0, 12)
A2=A.Trim(13, 44)
B1=B.Trim(45, 67)
A1+B1+A2
AudioDub(A) # Use the audio from A