├── .gitignore ├── .readthedocs.yaml ├── LICENSE.txt ├── README.md ├── docs ├── Makefile ├── _static │ └── css │ │ └── piccolo_overrides.css ├── changelog.rst ├── conf.py ├── index.rst ├── make.bat ├── scan_interlaced_deep_dive.rst └── usage.rst ├── pyproject.toml ├── requirements.ci.txt ├── requirements.docs.txt ├── setup.cfg └── vsfieldkit ├── __init__.py ├── deinterlacing.py ├── interlacing.py ├── kernels.py ├── output.py ├── py.typed ├── repair.py ├── scanning.py ├── types.py ├── util.py └── vapoursynth.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/piccolo_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/docs/_static/css/piccolo_overrides.css -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/scan_interlaced_deep_dive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/docs/scan_interlaced_deep_dive.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/requirements.ci.txt -------------------------------------------------------------------------------- /requirements.docs.txt: -------------------------------------------------------------------------------- 1 | Sphinx==6.1.3 2 | piccolo-theme==0.14.0 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/setup.cfg -------------------------------------------------------------------------------- /vsfieldkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/__init__.py -------------------------------------------------------------------------------- /vsfieldkit/deinterlacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/deinterlacing.py -------------------------------------------------------------------------------- /vsfieldkit/interlacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/interlacing.py -------------------------------------------------------------------------------- /vsfieldkit/kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/kernels.py -------------------------------------------------------------------------------- /vsfieldkit/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/output.py -------------------------------------------------------------------------------- /vsfieldkit/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsfieldkit/repair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/repair.py -------------------------------------------------------------------------------- /vsfieldkit/scanning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/scanning.py -------------------------------------------------------------------------------- /vsfieldkit/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/types.py -------------------------------------------------------------------------------- /vsfieldkit/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/util.py -------------------------------------------------------------------------------- /vsfieldkit/vapoursynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinTArthur/vsfieldkit/HEAD/vsfieldkit/vapoursynth.py --------------------------------------------------------------------------------