Working with AVFS and real projects leads to one simple conclusion: make sure no comps are open in AE when the AVFS files are mounted or else you’re in for a very long wait.
The slowdown is due to AE accessing the footage files for various reasons and the Avisynth scripts executing for every frame accessed. I had good results with having the comps in the Render Queue ready to go (and not loaded in the Composition window) then mounting the AVFS files.
BTW, while checking out denoising footage with AVFS, I came across these two denoising scripts that work as well as what I’ve seen Noiseware do in Photoshop:
super = MSuper(pel=2, sharp=1)
backward_vec2 = MAnalyse(super, isb = true, delta = 2, overlap=4)
backward_vec1 = MAnalyse(super, isb = true, delta = 1, overlap=4)
forward_vec1 = MAnalyse(super, isb = false, delta = 1, overlap=4)
forward_vec2 = MAnalyse(super, isb = false, delta = 2, overlap=4)
MDegrain2(super, backward_vec1,forward_vec1,backward_vec2,forward_vec2,thSAD=400)
LoadPlugin(“C:\Program Files (x86)\AviSynth 2.5\plugins\SSEToolsS.dll”)
Interleaved2Planar() # convert clip to planar
super = MSuper(planar=true)
bv1 = MAnalyse(super, isb = true, delta = 1, overlap=4)
fv1 = MAnalyse(super, isb = false, delta = 1, overlap=4)
bv2 = MAnalyse(super, isb = true, delta = 2, overlap=4)
fv2 = MAnalyse(super, isb = false, delta = 2, overlap=4)
bv3 = MAnalyse(super, isb = true, delta = 3, overlap=4)
fv3 = MAnalyse(super, isb = false, delta = 3, overlap=4)
MDegrain3(super,bv1,fv1,bv2,fv2,bv3,fv3,thSAD=400,planar=true)
Planar2Interleaved() # convert back to normal interleave YUY2
The ability to denoise with the level of quality I’ve seen right after the deinterlacing step in the script on the final render is great – no more pre-processing problem clips.