Splice のバックアップソース(No.2)

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

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

AlignedSpliceとUnalignedSpliceは、2つ以上のビデオクリップを、端と端をつないで結合します。両フィルタの違いは、サウンドトラックの取り扱い方にあります。 UnalignedSpliceは、ビデオとの同期を顧慮せずに、単純にサウンドトラックを連結します。AlignedSpliceは、2つ目のサウンドトラックがビデオとの同期を保持することを保証する必要があるときに、1つ目のサウンドトラックを切り落とすか、または無音を挿入します。

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)

#hr
//註: このページは、http://www.avisynth.org/Spliceの日本語訳です。