Interleave: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
Raffriff42 (talk | contribs)
m formatting, links, phrasing
add link to avs+ documentation
 
Line 1: Line 1:
<div style="max-width:62em" >
<div style="max-width:62em" >
<div {{BlueBox2|40|0|3px solid purple}} >
{{AvsPlusFullname}}<br>
Up-to-date documentation: [https://avisynthplus.readthedocs.io/en/latest/avisynthdoc/corefilters/interleave.html https://avisynthplus.readthedocs.io]
</div>
{{Template:FuncDef|Interleave(clip1, clip2 [, ...])}}
{{Template:FuncDef|Interleave(clip1, clip2 [, ...])}}



Latest revision as of 07:26, 18 September 2022

AviSynth+
Up-to-date documentation: https://avisynthplus.readthedocs.io


Interleave(clip1, clip2 [, ...])

Interleaves frames from several clips on a frame-by-frame basis – for example if you give three arguments, the first three frames of the output video are the first frames of the three source clips, the next three frames are the second frames of the source clips, and so on.

See filters with multiple input clips for the resulting clip properties.


Interleave is very useful for comparing two similar videos, stepping frame-by-frame:

Interleave(
\    A.Subtitle("A"), 
\    B.Subtitle("B"))