dawkinscm wrote: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;
Yes that's fine, but it's just a simple conditional so I didn't bother adding code. It was simple enough just to make changes and test.