benw
30th September 2013, 16:29
I have an .avi file in which each frame has a time stamp in the left upper corner. I have cropped the time stamp alone (2) and cropped the entire frame excluding the time stamp (1).
I now want to layer the two files so that the time stamp (2) is in the middle of the bottom of the entire frame (1).
I used the script below:
clip1 = AviSource("C:\(1).avi").ConvertToYUY2
clip2 = AviSource("C:\(2).avi").ConvertToYUY2
return Layer(clip1, clip2, "fast", x=380, y=375)
This accomplishes the layering and positioning but the time stamp (2) is very washed out - I assume because it is transparant. What do I have to add to the script above to make (2) opaque and look like the original (2)?
Thanks!
Ben
I now want to layer the two files so that the time stamp (2) is in the middle of the bottom of the entire frame (1).
I used the script below:
clip1 = AviSource("C:\(1).avi").ConvertToYUY2
clip2 = AviSource("C:\(2).avi").ConvertToYUY2
return Layer(clip1, clip2, "fast", x=380, y=375)
This accomplishes the layering and positioning but the time stamp (2) is very washed out - I assume because it is transparant. What do I have to add to the script above to make (2) opaque and look like the original (2)?
Thanks!
Ben