Any ideas on how I can compare the compressibility of convolution3d'd movies vs. non-convolution3d'd? I'd like to do this in GordianKnot using as much of its built-in features as possible. Suggestions please? Thank you. :)
@JohnMK To use/test convolution3d, you have to edit your avs script and load convolution3d.dll first. You can use "trim" in your avs script to select a short part of the movie and run your tests with and without convolution3d (just like you would do with any other external filter). regards, iago just for example (all the paths and parameters should be changed of course ;)): script1 ------- LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll") LoadPlugin("C:\PROGRA~1\GORDIA~1\convolution3d.dll") mpeg2source("D:\MOVIE\MOVIE.d2v") Trim(15000,18000) crop(2,5,716,467) convolution3d(0,4,4,4,4,3,0) LanczosResize(640,352) script2 ------- LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll") #LoadPlugin("C:\PROGRA~1\GORDIA~1\convolution3d.dll") mpeg2source("D:\MOVIE\MOVIE.d2v") Trim(15000,18000) crop(2,5,716,467) #convolution3d(0,4,4,4,4,3,0) LanczosResize(640,352) If you gonna use constant quantizers, file sizes will give you an idea about compressibility. If you wanna test using two-pass, run debugview and then analyze/compare the quantizers.
I'm aware of that. What I'm unaware of is how to make it easy to use, considering I'm very used to the standard 'Now' compress check in Gordian Knot. I found a LastCompCheck.avs file in C:\program files\GordianKnot. If I edit that and add in my convolution3d parameters, how can I have it use that for the compress check, and not overwrite it with a new one?
@iago: When you crop in odd numbers: - The worst that can happen is you get artifacts. - Even if all filters can handle it perfectly they will still interpolate information (which is also not a good thing). To avoid both, always crop in even numbers.
------------------------------- Search PelicanParts.com: Available Now - "101 Projects for Your 3-Series BMW." Focusing on the E30 and E36 cars, this book has performance projects along with restoration and appearance upgrades. Click Here to Order
Hiya, just add this line to the bottoms of your avs: SelectRangeEvery(280,14) And encode the avs with Vdub or something. Then, open GordianKnot and press the Load button on the Bits/Pixel*Frame box and load your stats file. Oh, and I think this method only works for Divx3.11 and XviD.