vsrife


Namevsrife JSON
Version 5.4.1 PyPI version JSON
download
home_pageNone
SummaryRIFE function for VapourSynth
upload_time2024-10-28 15:59:55
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords pytorch rife tensorrt vapoursynth
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # RIFE
Real-Time Intermediate Flow Estimation for Video Frame Interpolation, based on https://github.com/hzwer/Practical-RIFE.


## Dependencies
- [PyTorch](https://pytorch.org/get-started/) 2.6.0.dev20241023 or later
- [VapourSynth](http://www.vapoursynth.com/) R66 or later
- [vs-miscfilters-obsolete](https://github.com/vapoursynth/vs-miscfilters-obsolete) (only needed for scene change detection)

`trt` requires additional packages:
- [TensorRT](https://developer.nvidia.com/tensorrt) 10.4.0 or later
- [Torch-TensorRT](https://pytorch.org/TensorRT/) 2.6.0.dev20241023 or later

To install the latest nightly build of PyTorch and Torch-TensorRT, run:
```
pip install -U packaging setuptools wheel
pip install --pre -U torch torchvision torch_tensorrt --index-url https://download.pytorch.org/whl/nightly/cu124 --extra-index-url https://pypi.nvidia.com
pip install -U tensorrt-cu12 tensorrt-cu12_bindings tensorrt-cu12_libs --extra-index-url https://pypi.nvidia.com
```


## Installation
```
pip install -U vsrife
python -m vsrife
```


## Usage
```python
from vsrife import rife

ret = rife(clip)
```

See `__init__.py` for the description of the parameters.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "vsrife",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "PyTorch, RIFE, TensorRT, VapourSynth",
    "author": null,
    "author_email": "HolyWu <holywu@gmail.com>",
    "download_url": null,
    "platform": null,
    "description": "# RIFE\nReal-Time Intermediate Flow Estimation for Video Frame Interpolation, based on https://github.com/hzwer/Practical-RIFE.\n\n\n## Dependencies\n- [PyTorch](https://pytorch.org/get-started/) 2.6.0.dev20241023 or later\n- [VapourSynth](http://www.vapoursynth.com/) R66 or later\n- [vs-miscfilters-obsolete](https://github.com/vapoursynth/vs-miscfilters-obsolete) (only needed for scene change detection)\n\n`trt` requires additional packages:\n- [TensorRT](https://developer.nvidia.com/tensorrt) 10.4.0 or later\n- [Torch-TensorRT](https://pytorch.org/TensorRT/) 2.6.0.dev20241023 or later\n\nTo install the latest nightly build of PyTorch and Torch-TensorRT, run:\n```\npip install -U packaging setuptools wheel\npip install --pre -U torch torchvision torch_tensorrt --index-url https://download.pytorch.org/whl/nightly/cu124 --extra-index-url https://pypi.nvidia.com\npip install -U tensorrt-cu12 tensorrt-cu12_bindings tensorrt-cu12_libs --extra-index-url https://pypi.nvidia.com\n```\n\n\n## Installation\n```\npip install -U vsrife\npython -m vsrife\n```\n\n\n## Usage\n```python\nfrom vsrife import rife\n\nret = rife(clip)\n```\n\nSee `__init__.py` for the description of the parameters.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "RIFE function for VapourSynth",
    "version": "5.4.1",
    "project_urls": {
        "Homepage": "https://github.com/HolyWu/vs-rife",
        "Issues": "https://github.com/HolyWu/vs-rife/issues"
    },
    "split_keywords": [
        "pytorch",
        " rife",
        " tensorrt",
        " vapoursynth"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d03dd672838d50b6cec9e733e23db8f0db2320185aa69bc445857018a870e741",
                "md5": "dda33ab3d00e77920b7f4a2f7aab7986",
                "sha256": "b91e8b73cc3d93fae9c98bb1c6d2ec8e8d3c40af3d6e74e603bd3b0db35c2014"
            },
            "downloads": -1,
            "filename": "vsrife-5.4.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dda33ab3d00e77920b7f4a2f7aab7986",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 61325,
            "upload_time": "2024-10-28T15:59:55",
            "upload_time_iso_8601": "2024-10-28T15:59:55.377608Z",
            "url": "https://files.pythonhosted.org/packages/d0/3d/d672838d50b6cec9e733e23db8f0db2320185aa69bc445857018a870e741/vsrife-5.4.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-28 15:59:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "HolyWu",
    "github_project": "vs-rife",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "vsrife"
}
        
Elapsed time: 0.47848s