Posted by: hsei
« on: June 05, 2020, 10:56:28 »As far as I can see the listed script file does not help.
The two ifs under first priority cover all pairs with different rating.
Only those with identical rating get examined by the second priority checks.
Third priority is in the same manner only examined when clips are identical.
For the problem stated either the priority order has to be interchanged or some rating tolerance has to be introduced:
if (item1.analysis.rating > item2.analysis.rating+tolerance) ...
if (item1.analysis.rating < item2.analysis.rating-tolerance) ...
The two ifs under first priority cover all pairs with different rating.
Only those with identical rating get examined by the second priority checks.
Third priority is in the same manner only examined when clips are identical.
For the problem stated either the priority order has to be interchanged or some rating tolerance has to be introduced:
if (item1.analysis.rating > item2.analysis.rating+tolerance) ...
if (item1.analysis.rating < item2.analysis.rating-tolerance) ...