hi, do you use convolution3d before or after resize? and why? i've been using it after resize for awhile (for DVD rips), but saw quite many examples, where it has been used before resize. so i made a test and as i expected the encoding took about 50% longer when putting it before resize and the compressibility was a bit worse: flick: LOTR bonus: Quest for the Ring (21:27) DivX: 2-pass with 1200kbps script: LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll") LoadPlugin("C:\PROGRA~1\GORDIA~1\decomb.dll") LoadPlugin("C:\PROGRA~1\GORDIA~1\convolution3d.dll") mpeg2source("C:\FELLOWSHIP_BONUS\VIDEO_TS\1_2.d2v") Telecide() crop(8,0,706,480) BicubicResize(544,416,0,0.5) Convolution3d(0,4,4,8,8,3,0) this gave me av quant 4.407760 and filesize 192849920 when i moved convolution3d before bicubicersize, i got av quant 4.448165 and filesize was 192993280 i know that the filesize means nothing, because i was using 1200 kbps and the diff in quant is quite small, but the diff in encoding time was huge, because c3d had to process so much more pixels. regards t :)