Home
RecentChanges

Search:

» AviSynth is a powerful video FrameServer for Win32.

AviSynth Links:
»Download
»Learn to script
»FAQ
»Manual
»Discussion fora
»Project page
»External filters
»FeedBack

» You can add pages to this website immediately. No login required.
Edit this document

» AboutAviSynth

 

Avisynth 
Logo

Splice

( Diese Seite in flag-germany.gif Deutsch )

AlignedSplice(clip clip1, clip clip2 [,...])

UnalignedSplice(clip clip1, clip clip2 [,...])

AlignedSplice and UnalignedSplice join two or more video clips end to end. The difference between the filters lies in the way they treat the sound track. UnalignedSplice simply concatenates the sound tracks without regard to synchronization with the video. AlignedSplice cuts off the first sound track or inserts silence as necessary to ensure that the second sound track remains synchronized with the video.

You should use UnalignedSplice when the soundtracks being joined were originally contiguous--for example, when you're joining files captured with AVI_IO. Slight timing errors may lead to glitches in the sound if you use AlignedSplice in these situations.

AviSynth's scripting language provides + and ++ operators as synonyms for UnalignedSplice and AlignedSplice respectively.

# Join segmented capture files to produce a single clip:
UnalignedSplice(AviSource("cap1.avi"),AviSource("cap2.avi"),AviSource("cap3.avi"))
# or:
AviSource("cap1.avi") + AviSource("cap2.avi") + AviSource("cap3.avi")
# Extract three scenes from a clip and join them together in a new order
AviSource("video.avi")
Trim(2000,2500) ++ Trim(3000,3500) ++ Trim(1000,1500)

SourceForge Logo

 


Edit this document | View document history
Document last modified Tue, 11 Jan 2005 14:44:52