Skip to content

Commit

Permalink
scripts/vsmlrt.py: relax restriction on frame rate multiplier of RIFE
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframRhodium authored and Mr-Z-2697 committed Dec 9, 2023
1 parent ee032a3 commit ed9d581
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions scripts/vsmlrt.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.18.18"
__version__ = "3.18.19"

__all__ = [
"Backend", "BackendV2",
Expand Down Expand Up @@ -1069,9 +1069,6 @@ def RIFE(
if not isinstance(multi, (int, float, Fraction)):
raise TypeError(f'{func_name}: "multi" must be an integer, a float or a fractions.Fraction!')

if multi < 2:
raise ValueError(f'{func_name}: RIFE: multi must be at least 2')

if tiles is not None or tilesize is not None or overlap is not None:
raise ValueError(f'{func_name}: tiling is not supported')

Expand Down

0 comments on commit ed9d581

Please sign in to comment.