Re: New RIFE filter - 3x faster AI interpolation possible in SVP!!!
Thanks. I've tried various combinations
I think it's easier to test if u go to line 222 from generate.js and delete the following:
if(profile.rife)
{
if(profile.rife_sc==6) rife_sc_algo = 1;
else if(profile.rife_sc==8) rife_sc_algo = 2;
else rife_sc_algo = 0;
}
else rife_sc_algo = -1;
then replace with following line for "scene change based on SVP's motion vectors"
rife_sc_algo = 1;
or replace with following line for "scene change based on Nvidia Optical Flow's motion vectors"
rife_sc_algo = 2;
or replace with following line for "scene change based on dumb frame comparison"
rife_sc_algo = 0;
how is this easier than choosing "6%" in the gui?
(manually editing the file this way allows u to use your own rife_sc value therefore removing that slight difference between rife_sc 6 and 8, thus making it easier for u to see the changes xD )