change de multithreading values ,i have a 4 cores (4 threads) cpu so that gives:
Code:
SetMemoryMax(900)
SetMTMode(3,4)
AVISource("E:\00-montage\SampleSgan.avi")
SetMTMode(4)
Problem is RemoveSpotsMC() don't work with 4 threads (only 2 according to my tests) so try :
Code:
SetMTMode(3,2)
AVISource("E:\00-montage\SampleSgan.avi")
SetMTMode(2)
Or no multithreading at all, only:
Code:
AVISource("E:\00-montage\SampleSgan.avi")
...but it's gonna take longer to process
By the way you'd need avisynth 2.6 MT (multithreads) etc..