Skip to content

HolyWu/vs-rife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RIFE

Real-Time Intermediate Flow Estimation for Video Frame Interpolation, based on https://github.com/hzwer/Practical-RIFE.

Dependencies

trt requires additional Python packages:

To install TensorRT, run pip install tensorrt==10.0.1 tensorrt-cu12_bindings==10.0.1 tensorrt-cu12_libs==10.0.1 --extra-index-url https://pypi.nvidia.com

To install Torch-TensorRT, Windows users can pip install the whl file on Releases. Linux users can run pip install --pre torch_tensorrt --index-url https://download.pytorch.org/whl/nightly/cu121 (requires PyTorch nightly build).

Installation

pip install -U vsrife
python -m vsrife

Usage

from vsrife import rife

ret = rife(clip)

See __init__.py for the description of the parameters.