home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 July
/
CHIP_CD_2005-07.iso
/
bonus
/
srew
/
files
/
AviSynth_208.exe
/
examples
/
Editing.avs
< prev
next >
Wrap
Text File
|
2002-09-27
|
566b
|
33 lines
# Generates colorbar image at the size 320x240
Colorbars(320,240)
# Converts the image to greyscale
Greyscale()
# Adds framenumbers to the image
Showframenumber()
# Selects the range 0 to 50000
Trim (0, 50000)
# Selects every second frame. Fps is now half of 29.97
SelectEven()
# Selects first 1000 frames inside the stream, and assigns it to variable substream
SubStream = Trim (0, -999)
# Loop the substream 25 times
Substream = Loop(Substream,25)
# Put the subtream on top of the original
Stackvertical(substream)