frist thing I see is that, if n < max_frames that should crash, since 'clip.get_frame(n-i)' would try to access non existing frames.
should be something like
Also the output of AverageFrames does look correct to me, one of the frames you look at is an unprocessed frame.
Cu Selur
for i in range(1, max_frames):
for i in range(1, min(n-1,max_frames)):
Also the output of AverageFrames does look correct to me, one of the frames you look at is an unprocessed frame.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.