You are on page 1of 20

King: Free effects video with Avisynth

Split Screen(16splitscreen)

The Split Screen is the effect of division of the screen in fields where they come
reproduced clip various. With Avisynth and a engagement P2o is possible to recreate it,
holding present that the interpretation of this type of script turns out heavy rather in phase
than direct reproduction and during the conversion but that the rallentamenti of norm will
not be brought back in the creation of the rows that will slide fluidly.

The example that we take in consideration uses previews it of 16 miniclip but it can be
developed the necessities second, the only thing to remember is that the number of the
clip must be equal or in horizontal that in vertical for pote respecting the proportions and
therefore aspect the ratio of every single video.

This is the script:


Spoiler

Copy in the notes Code:


clip=BlankClip (length=150, width=640, height=352, fps=25,
color=$000000) .ConvertToYUY2
clip3=clip
clip4=clip
a=AVISource (“C:\percorso\vpa.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
b=AVISource (“C:\percorso\vpb.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
c=AVISource (“C:\percorso\vpc.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
d=AVISource (“C:\percorso\vpd.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
e=AVISource (“C:\percorso\vpe.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
f=AVISource (“C:\percorso\vpf.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
g=AVISource (“C:\percorso\vpg.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
h=AVISource (“C:\percorso\vph.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
i=AVISource (“C:\percorso\vpi.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
l=AVISource (“C:\percorso\vpl.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
m=AVISource (“C:\percorso\vpm.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
n=AVISource (“C:\percorso\vpn.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
o=AVISource (“C:\percorso\vpo.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
p=AVISource (“C:\percorso\vpp.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
q=AVISource (“C:\percorso\vpq.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
r=AVISource (“C:\percorso\vpr.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
st=stackvertical (StackHorizontal (to, b), StackHorizontal (c,
d)).BicubicResize (640,352)
st1=StackVertical (StackHorizontal (to, b, c), StackHorizontal (d,
and, f), StackHorizontal (g, h, i)).BicubicResize (640,352)
st2=stackvertical (StackHorizontal (to, b, c, d), StackHorizontal
(and, f, g, h), StackHorizontal (i, l, m, n), StackHorizontal (or, p,
q, r)).BicubicResize (640,352)
L=layer (clip, st, “add”)
L1=layer (clip3, st1, “add”)
L2=layer (clip4, st2, “add”)
It dissolves (L, L1, L2,30)

Copy in the notes

And this is the final result:


Spoiler

We analyze the script:

First of all we have need of clip a guide for every sequence:


we take advantage ourselves of the BlankClip filter and we determine the duration in
frame of the first splittata series:

Copy in the notes Code:


clip=BlankClip (length=150, width=640, height=352, fps=25,
color=$000000) .ConvertToYUY2

Wanting to join 3 various sequences of equal duration we must declare the others two:

Copy in the notes Code:


clip3=clip
clip4=clip

The clip (vpx.avi) they go declared separately, to ognuna assegnamo a letter:

Copy in the notes Code:


a=AVISource (“C:\percorso\vpa.avi”). ConvertToYUY2. BicubicResize
(320,176) .AddBorders (2, 2, 2, 2)
AVISource (“C:\percorso\vpa.avi”) charge the clip
ConvertToYUY2 converts the format color in order to render it compatible with the
successive filters
BicubicResize (320,176) initially we make the resize of the clip so that they are exactly
the half of the resolution of the video.
AddBorders (2, 2, 2, 2) adds an edge of 2 pixel around the clip, can also be omitted.

The filter that generates the effect is declared in the following lines:

Copy in the notes Code:


st=StackVertical (StackHorizontal (to, b), StackHorizontal (c,
d)).BicubicResize (640,352)

st1=StackVertical (StackHorizontal (to, b, c), StackHorizontal (d,


and, f), StackHorizontal (g, h, i)).BicubicResize (640,352)

st2=StackVertical (StackHorizontal (to, b, c, d), StackHorizontal


(and, f, g, h), StackHorizontal (i, l, m, n), StackHorizontal (or, p,
q, r)).BicubicResize (640,352

StackVertical aligns two vertically or more clip


StackHorizontal aligns two horizontally or more clip

The two arranged filters entirety allow the visualization of the Split Screen with the
number of clip that we wish.
In order to maintain the proportions of clip the screen it will have to always be divided in
an equal number of parts is in horizontal that in vertical, in fact the variable ones of the
StackVertical filter are replaced from the StackHorizontal filter that in its turn recalls the
clip in an equal number of times to the clip to reproduce in horizontal.
Thus with the variable one st they will come visualized the clip:
to, b
c, d
In the variable one st1 the number of clip therefore the visualization increases of three
will be:
to, b, c
d, and, f
g, h, i

In the variable one st2 we add ulterior seven clip:


to, b, c, d
and, f, g, h
i, l, m, n
or, p, q, r
Always so that the number of clip or the usual or in horizontal that in vertical.

Now we declare with the Layer commando the overlaps of the clip that they compose the
split with respective clip the guide:

Copy in the notes Code:


L=layer (clip, st, “add”)
L1=layer (clip3, st1, “add”)
L2=layer (clip4, st2, “add”)

Col filter Dissolves creates the final sequence with a fade between the clip:

Copy in the notes Code:


It dissolves (L, L1, L2,30)

Now enough to save the script with extension .avs, to load it in VirtualDubMod, to add a
sonorous column of adequate duration and to proceed to the creation of the film in Split
Screen.

Sabo.

Effects video through avisynth


Seen demand always greater for effects video details and not easy to carry out, and since
the assembly software video is usually more rather expensive, besides heavy, sometimes
can to come us in aid software free and from potentiality enormous, like AviSynth,
based on script, rows of text with extension .avs, script in which is
possible to insert a such amount of filters that often can be obtained the
same effect that only an expensive software can make, works in
combination with varied software of editing video, thus like with the
player, loading a script .avs with a player in fact is possible to see in
preview the effects of the script and of the eventual applied filters.

The used software more in coupling to Avisynth is VirtualDubMod, but


the scripts of avisynth very well work with many other software, therefore
it is not virtualdubmod exclusive of these guides, but only Avisynth and
its filters.

Seen the already numerous arguments present, in which Carlito and


sabotender in particular has already inserted numerous solutions, this
topic wants to assemble the single ones post of those arguments, and
eventually to receive some of the new, obtained exclusively of own hand,
therefore not copied from other sites, can also be inserted without demand
a post here with a solution, but this must be explained in the minimums
details, not link external (to part those which serve in order to show the
obvious final result), and above all it must be effective and possibly
proven with an visual example, through screenshot or video of youtube

The argument is absolutely anti-OT, for difficulty or demands for any


type on these guides, it is necessary to open topic to part in the
sottosezione an Acquisition and assembly video.
Post not consistent and that are not exactly guides based on Avisynth will
come without prior notice cancelled

________________
Guide: From DV to Xvid with Virtualdubmod
Guide: To render Divx/xvid with the readers from drawing-room
compatible
“First star to right, then always straight till the mattino”
Last modification of kirk39: 10-06-2008 to the 19:07.

It marks it
on:

Bookmarks:

kirk39
It watches public profile
It sends a private message kirk39
It cites this post in a PM for kirk39
It visits the site of kirk39!
It finds other messages of kirk39
The following customer sabotender (10-06-2008)
ringrazia/agrees with kirk39 for
this useful contribution:

10-06-2008, 19:16 #2
** carlito ** King: Darkening You turn
To darken Faces using the Delogo filter
Corner video
First of all servants to install Avisynth and delogo filter 1.3.2
(Manual Delogo 1.3.2).

First of all we must create the images bmp that they will
serve from masks for the filter.

Example:

Profile: Video Originates them


Enrolled from: 05-11-
Spoiler
2005
City: Power
Age: 3
Messages: 7.782
Points: 10.156 We load the video in VDM, after from menu video it must
P2P in use: Xtreme; activate the Delogo filter and through the preview of the filter
utorrent we save our images in bmp. In the example in the video there
are from saving 4 images from which creating the masks and
Rep: at the same time we annotate the several changes of
inquadratura (N° frame).
We open the images in paint and we modify to them in this
way: the loaded images are in jpg for comfort but those to use
I must be in bmp .
01.bmp= 02.bmp=

03.bmp= 04.b

mp=

After it does not remain to us that to create our script. Ours is


worked in RGB32 therefore first of all clip will be:

Copy in the notes Code:


clip = avisource (“C:\Video\01.avi”)
.ConvertToRGB32

In order to use the filter of VDM in avisynth it must be used:

Copy in the notes Code:


LoadVirtualDubPlugin
(“C:\Programmi\VirtualDubMod 1.6.0.0 Surround \
plugins \ delogo.vdf”, “delogo”)

these will be the first lines of our script now must create the
several fragments of video to modify. In the example I have
divided the clip in 6 parts

Copy in the notes Code:


clip01 = clip. Trim (0, 131)
clip02 = clip.trim (132, 217)
clip03 = clip.trim (218,315)
clip04 = clip.trim (316,415)
clip05 = clip.trim (416,557)
clip06 = clip.trim (558, 0)
Now we must apply the delogo filter to the several ones clip:

Copy in the notes Code:


clip01 = clip. Trim (0, 131) .DeLogo (1, "",
"", "", "", “C: /Immagini/01.bmp”, 15, 40, 0,
0)
clip02 = clip.trim (132, 217)
clip03 = clip.trim (218,315) .DeLogo (1, "",
"", "", "", “C: /Immagini/02.bmp”, 15, 40, 0,
0)
clip04 = clip.trim (316,415) .DeLogo (1, "",
"", "", "", “C: /Immagini/03.bmp”, 15, 40, 0,
0)
clip05 = clip.trim (416,557) .DeLogo (1, "",
"", "", "", “C: /Immagini/04.bmp”, 15, 40, 0,
0)
clip06 = clip.trim (558, 0)

Last two lines are the conversion and sum clip in yuy2

Copy in the notes Code:


return clip01 + clip02 + clip03 + clip04 +
clip05 + clip06
ConvertToyuy2

Complete script:

Copy in the notes Code:


clip = avisource (“C:\Video\01.avi”)
.ConvertToRGB32
LoadVirtualDubPlugin
(“C:\Programmi\VirtualDubMod 1.6.0.0 Surround \
plugins \ delogo.vdf”, “delogo”)
clip01 = clip. Trim (0, 131) .DeLogo (1, "",
"", "", "", “C: /Immagini/01.bmp”, 15, 40, 0,
0)
clip02 = clip.trim (132, 217)
clip03 = clip.trim (218,315) .DeLogo (1, "",
"", "", "", “C: /Immagini/02.bmp”, 15, 40, 0,
0)
clip04 = clip.trim (316,415) .DeLogo (1, "",
"", "", "", “C: /Immagini/03.bmp”, 15, 40, 0,
0)
clip05 = clip.trim (416,557) .DeLogo (1, "",
"", "", "", “C: /Immagini/04.bmp”, 15, 40, 0,
0)
clip06 = clip.trim (558, 0)
return clip01 + clip02 + clip03 + clip04 +
clip05 + clip06
ConvertToyuy2

Result
Spoiler

________________
Survey: MotoMondiale Vale vs Ducati: We are available
Antonio votes Votes Antonio

** carlito **
It watches public profile
It sends a carlito private message ** **
It cites this post in a carlito PM for ** **
It finds other messages of ** carlito **
Following the 2 customers kirk39 (11-06-2008), sabotender (10-06-2008)
ringraziano/agree with ** carlito **
for this useful contribution:
10-06-2008, 19:31 #3
** carlito ** King: Use of the Layer filter
Small example of the use of the filter layer that it can be used
Corner video as an example in order to insert a video in an angle or a
position any

the code to use is

Copy in the notes Code:


clip1 = AviSource (“C:\01.avi”)
.ConvertToYUY2.BicubicResize (640, 480)
clip2 = AviSource (“C:\02.avi”)
.ConvertToYUY2.BicubicResize (320, 240)
Profile: Layer (clip1, clip2, “add”, 255,320)
Enrolled from: 05-11-
2005
City: Power
Age: 3 Result
Messages: 7.782
Points: 10.156 Spoiler
P2P in use: Xtreme;
utorrent
Layer (clip1, clip2, “add”, 255,320) the num in red
Rep: corresponds to the horizontal position. In order to move it also
verticamlmente enough to add the cordinata one y
example
Layer (clip1, clip2, “add”, 255,320,200) in red the cordinata
one y

The turning out audio is that one of clip the 1 but


successivente can be modified.
If the two video is not of the same length then the clip2 it
must be vanished with other filters as an example with the
FadeIO filter

Example I use of the FadeIO (in/out) with to the Layer


filter

Copy in the notes Code:


clip1 = AviSource (“C:\01.avi”)
.ConvertToYUY2.trim (100,334)
clip2 = AviSource (“C:\02.avi”)
.ConvertToYUY2.BicubicResize (208, 118) .FadeIO
(20)
clip3 = AviSource (“C:\01.avi”) .ConvertToYUY2
clip3.trim (0,100) + Layer (clip1, clip2,
“add”, 257,416) + clip3.trim (334,0)

A small explanation:
We have two video of which inserting in an angle with
beginning and various end. We open the video to insert in an
angle in VDM and control of how many frame is compound,
in this case 234 frame.
First of all we must choose the insertion point, open the video
base with VDM and us posizioniamo in the point in which we
want to make to begin the video to insert, in this case I have
chosen frame the 100. To this point we can create the part of
overlapping video:

clip1 = AviSource (“C:\01.avi”) .ConvertToYUY2.trim


(100,334)
clip2 = AviSource (“C:\02.avi”)
.ConvertToYUY2.BicubicResize (208, 118) .FadeIO (20)
Layer (clip1, clip2, “add”, 257,416)

fact this for having the complete video we must add or the
part that is begins them that final of the video base and

clip3 = AviSource (“C:\01.avi”) .ConvertToYUY2


clip3.trim (0,100) + Layer (clip1, clip2, “add”, 257,416) +
clip3.trim (334,0)

This is the result

Spoiler

PS: to C:\01.avi and C:\02.avi it must replace the covered


ones of your rows

________________
Survey: MotoMondiale Vale vs Ducati: We are available
Antonio votes Votes Antonio
Last carlito modification of ** **: 10-06-2008 to the 19:37.

** carlito **
It watches public profile
It sends a carlito private message ** **
It cites this post in a carlito PM for ** **
It finds other messages of ** carlito **
Following the 2 customers kirk39 (11-06-2008), sabotender (10-06-2008)
ringraziano/agree with ** carlito **
for this useful contribution:
10-06-2008, 19:44 #4
** carlito ** King: Use of the filter colorkeymask
An other filter that can come to us in aid in order to create
Corner video video without it I use of software expensive is the filter
colorkeymask. To this it allows us filter to create
transparencies.
Example 1: static image

Video base
Spoiler

We take an image with green background in this example I


Profile: have used a television set
Enrolled from: 05-11-
2005
City: Power
Age: 3
Messages: 7.782
Points: 10.156
P2P in use: Xtreme;
utorrent

Rep:
I have colored the parts to render transparent in green
(#0DB40C).

After enough creating a script with colorkeymask

example:

Copy in the notes Code:


text = ImageSource
(“C:\Immagini\televisore.jpg”) .converttorgb32
transparent=resetmask (text) .colorkeymask
($0DB40C, 70)
clip2=avisource (“C:\Video\01.avi”)
.converttorgb32.BicubicResize (276, 158)
.AddBorders (100, 100, 100, 100, $000000)
layer (clip2, transparent, “add”, 257,75,65)

result
Spoiler

Example 2: Image in motion


video originates them

Spoiler

We take a GIF as an example

example

In this case the animated GIF can be already converted in


grandfathers but for having a better result better editarla with
a graphical program changing the background in green and to
save the photograms compose that it separated in jpg

example the GIF is composed from 15 photograms

now it does not remain to us that to write our script

first of all we must load the images:

Copy in the notes Code:


text = ImageSource (“C:\Cuore\ %d.jpg”)
.converttorgb32

with %d.jpg
we load all the images with the folder Heart

Now we must create the transparency

Copy in the notes Code:


transparent = resetmask (text) .colorkeymask
($0DB40C, 70). Loop (26,0,14)

Loop the servants in order to make to repeat the movement of


the heart for all the duration of the video. 26 are in num of
times 0 and 14 are the photograms begin them and final to
repeat.
How is found the num of repetitions? Simple enough to divide
to the num of photograms totals of the video of reference with
the num of photograms of the GIF, in this case the video has
386/15 = 25,7 that we approximate to 26.

Last phase is that to load the video with reference and to


create the overlap:

Copy in the notes Code:


clip = avisource (“C:\Video\totti.avi”)
.converttorgb32
layer (clip, transparent, “add”, 257,400, 270)

400 and 270 are cordinate the x and y of the heart

final result

Spoiler

Complete script

Copy in the notes Code:


text = ImageSource (“C:\Cuore\ %d.jpg”)
.converttorgb32
transparent = resetmask (text) .colorkeymask
($0DB40C, 70). Loop (26,0,14)
clip = avisource (“C:\Video\totti.avi”)
.converttorgb32
layer (clip, transparent, “add”, 257,400, 270)

________________
Survey: MotoMondiale Vale vs Ducati: We are available
Antonio votes Votes Antonio
Last carlito modification of ** **: 10-06-2008 to the 19:52.
** carlito **
It watches public profile
It sends a carlito private message ** **
It cites this post in a carlito PM for ** **
It finds other messages of ** carlito **
Following the 3 customers kirk39 (11-06-2008), sabotender (10-06-2008),
ringraziano/agree with ** carlito ** goes some (17-07-2008)
for this useful contribution:
10-06-2008, 21:29 #5
Sabotender King: Free effects video with Avisynth
The MOD in the Sky Flowing a road in order to overlap a video with tito them and
colorful background uniform (to render transparent) to an
other that it will make from background the clip final is to use
the commando colorkeymask in a script for Avisynth to load
with VirtualDubMod.

This is the complete code:

Profile: Copy in the notes Code:


Enrolled from: 02-09- clip1=avisource (“C:\percorso\nome1.avi”)
2005 .converttorgb32 ()
Locality: Practically trasparente=resetmask (clip1) .colorkeymask
Anywhere ($0A9F38, 128)
clip2=avisource (“C:\percorso\nome2.avi”)
Age: 2 .converttorgb32 ()
Messages: 4.300 layer (clip2, transparent)
Points: 1.968
P2P in use: eMule

Rep: The commando colorkeymask works with the channel alpha in


the method of color RGB32 therefore for first thing must
convert the clip in RGB32.
clip1=avisource (“C:\percorso\nome1.avi”) .converttorgb32
()

The addition of the commando resetmask allows to leave from


an opaque situation of for all the clip and goes put in front to
colorkeymask that in its turn it must declare the code of the
color to mask (in this case the green) and the tolerance to
consider. We declare the transparent function:
trasparente=resetmask (clip1) .colorkeymask ($0A9F38, 128)

We must also convert the clip2 in RGB32.


clip2=avisource (“C:\percorso\nome2.avi”) .converttorgb32
()

And to overlap the two clip.


layer (clip2, transparent)

We load the script saved as .avs with VDM and operate the
conversion in Full Processing Mode.

This is the clip with the green background:

Spoiler

This is the final result:

Spoiler

________________
________________
What the others think about me they are… problem!
VirtualDubMod -- To work in Direct Stream copy with
VDM
Free effects video with Avisynth -- Collection of
Readers DivxUltra Certified

Sabotender
It watches public profile
It sends a private message to Sabotender
It cites this post in a PM for Sabotender
It sends an email to Sabotender
It finds other messages of Sabotender
Trophies Arcade di Sabotender
Mud and Blood: Vietnam
Following the 3 customers ** carlito ** (10-06-2008), kirk39 (11-06-
ringraziano/agree with Sabotender 2008), goes some (17-07-2008)
for this useful contribution:
09-08-2008, 21:42 #6
Sabotender King: Free effects video with Avisynth
The MOD in the Sky Split Screen

The Split Screen is the effect of division of the screen in fields


where they come reproduced clip various. With Avisynth and
a engagement P2o is possible to recreate it, holding present
that the interpretation of this type of script turns out heavy
rather in phase than direct reproduction and during the
conversion but that the rallentamenti of norm will not be
brought back in the creation of the rows that will slide fluidly.
Profile:
Enrolled from: 02-09- The example that we take in consideration uses previews it of
2005 16 miniclip but it can be developed the necessities second, the
Locality: Practically only thing to remember is that the number of the clip must be
Anywhere equal or in horizontal that in vertical for pote respecting the
Age: 2 proportions and therefore aspect the ratio of every single
Messages: 4.300 video.
Points: 1.968
P2P in use: eMule This is the script:
Spoiler
Rep:
And this is the final result:
Spoiler

We analyze the script:

First of all we have need of clip a guide for every sequence:


we take advantage ourselves of the BlankClip filter and we
determine the duration in frame of the first splittata series:

Copy in the notes Code:


clip=BlankClip (length=150, width=640,
height=352, fps=25, color=$000000)
.ConvertToYUY2
Wanting to join 3 various sequences of equal duration we
must declare the others two:

Copy in the notes Code:


clip3=clip
clip4=clip

The clip (vpx.avi) they go declared separately, to ognuna


assegnamo a letter:

Copy in the notes Code:


a=AVISource (“C:\percorso\vpa.avi”).
ConvertToYUY2. BicubicResize (320,176)
.AddBorders (2, 2, 2, 2)

AVISource (“C:\percorso\vpa.avi”) charge the clip


ConvertToYUY2 converts the format color in order to render
it compatible with the successive filters
BicubicResize (320,176) initially we make the resize of the
clip so that they are exactly the half of the resolution of the
video.
AddBorders (2, 2, 2, 2) adds an edge of 2 pixel around the
clip, can also be omitted.

The filter that generates the effect is declared in the following


lines:

Copy in the notes Code:


st=StackVertical (StackHorizontal (to, b),
StackHorizontal (c, d)).BicubicResize (640,352)

st1=StackVertical (StackHorizontal (to, b, c),


StackHorizontal (d, and, f), StackHorizontal
(g, h, i)).BicubicResize (640,352)

st2=StackVertical (StackHorizontal (to, b, c,


d), StackHorizontal (and, f, g, h),
StackHorizontal (i, l, m, n), StackHorizontal
(or, p, q, r)).BicubicResize (640,352

StackVertical aligns two vertically or more clip


StackHorizontal aligns two horizontally or more clip
The two arranged filters entirety allow the visualization of the
Split Screen with the number of clip that we wish.
In order to maintain the proportions of clip the screen it will
have to always be divided in an equal number of parts is in
horizontal that in vertical, in fact the variable ones of the
StackVertical filter are replaced from the StackHorizontal
filter that in its turn recalls the clip in an equal number of
times to the clip to reproduce in horizontal.
Thus with the variable one st they will come visualized the
clip:
to, b
c, d
In the variable one st1 the number of clip therefore the
visualization increases of three will be:
to, b, c
d, and, f
g, h, i

In the variable one st2 we add ulterior seven clip:


to, b, c, d
and, f, g, h
i, l, m, n
or, p, q, r

Always so that the number of clip or the usual or in horizontal


that in vertical.

Now we declare with the Layer commando the overlaps of


the clip that they compose the split with respective clip the
guide:

Copy in the notes Code:


L=layer (clip, st, “add”)
L1=layer (clip3, st1, “add”)
L2=layer (clip4, st2, “add”)

Col filter Dissolves creates the final sequence with a fade


between the clip:

Copy in the notes Code:


It dissolves (L, L1, L2,30)

Now enough to save the script with extension .avs, to load it


in VirtualDubMod, to add a sonorous column of adequate
duration and to proceed to the creation of the film in Split
Screen.

You might also like