Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.15 KB

File metadata and controls

37 lines (26 loc) · 1.15 KB

RIFE

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

Dependencies

trt requires additional packages:

To install the latest stable version of PyTorch and Torch-TensorRT, run:

pip install -U packaging setuptools wheel
pip install -U torch torchvision torch_tensorrt --extra-index-url https://download.pytorch.org/whl/cu130 --extra-index-url https://pypi.nvidia.com

Installation

pip install -U vsrife

If you want to download all models at once, run python -m vsrife. If you prefer to only download the model you specified at first run, set auto_download=True in rife().

Usage

from vsrife import rife

ret = rife(clip)

See __init__.py for the description of the parameters.