nicco
10th May 2004, 17:01
I have two video source an I want to align them and apply different filters to eachone
I do the following avs script:
a = AVISource("E:\prova.avi",audio=false,pixel_type="yuy2").Tweak(hue=-174,sat=7,bright=-248)
b = AVISource("E:\prova.avi",audio=false,pixel_type="yuy2")
UnalignedSplice(a,b)
So I can apply tweak only to "a".
It works, but I have to apply alot of filters with ApplyRange function to "a" so dot after dot after dot my string become very long!
Is there another way to do this?
I do the following avs script:
a = AVISource("E:\prova.avi",audio=false,pixel_type="yuy2").Tweak(hue=-174,sat=7,bright=-248)
b = AVISource("E:\prova.avi",audio=false,pixel_type="yuy2")
UnalignedSplice(a,b)
So I can apply tweak only to "a".
It works, but I have to apply alot of filters with ApplyRange function to "a" so dot after dot after dot my string become very long!
Is there another way to do this?