Cyberia
31st December 2004, 07:29
Can some one explain why this script does not produce a pure black screen?
video=AVISource("D:\movie.avi")
video=video.ConvertToYV12()
video=video.BlindPP()
video2=AVISource("D:\movie.avi")
video2=video2.ConvertToYV12()
video=video.BlindPP()
subtract(video2, video).Levels(127, 1, 129, 0, 255, False)
If you remove the BlindPP lines, the effect goes away and you do get the expected black screen. The effect happens on AVISource and DSSource opens. But what's going on?
EDIT: BlindPP is being auto-loaded from the latest DGDecode.
video=AVISource("D:\movie.avi")
video=video.ConvertToYV12()
video=video.BlindPP()
video2=AVISource("D:\movie.avi")
video2=video2.ConvertToYV12()
video=video.BlindPP()
subtract(video2, video).Levels(127, 1, 129, 0, 255, False)
If you remove the BlindPP lines, the effect goes away and you do get the expected black screen. The effect happens on AVISource and DSSource opens. But what's going on?
EDIT: BlindPP is being auto-loaded from the latest DGDecode.