Anonymous
Rating: N/A Votes: 0 (Vote!) | Posted on Tuesday, March 09, 2004 - 5:03 pm: | |
# red shifter (3d anaglyph?) # this script shifts the red channel up and # to the left an arbitrary amount of pixels # load your source AVISource("640x480.avi") # if the source is yuv it needs to be converted to rgb ConvertToRGB() # split the red and cyan channels red =RGBAdjust(1,0,0,1) cyan=RGBAdjust(0,1,1,1) # overlay (parameter meaning documented in avisynth help) Overlay(cyan,red,-4,-4,opacity=0.5,output="YV12") # optionally crop and tweak Crop(0,0,636,476) Tweak(sat=2,bright=2,cont=2) |