├── .github └── workflows │ ├── autotag.yml │ ├── lint.yml │ ├── matchers │ └── mypy.json │ └── pypipublish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── changelogs │ └── changelogs.rst ├── conf.py ├── getting_started │ ├── community.rst │ └── install.rst ├── index.rst ├── requirements.txt └── submodules │ ├── f3kdb.rst │ ├── funcs.rst │ └── placebo.rst ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── vsdeband ├── __init__.py ├── _metadata.py ├── abstract.py ├── f3kdb.py ├── filters.py ├── funcs.py ├── mask.py ├── noise.py ├── placebo.py ├── py.typed └── types.py /.github/workflows/autotag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/.github/workflows/autotag.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/matchers/mypy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/.github/workflows/matchers/mypy.json -------------------------------------------------------------------------------- /.github/workflows/pypipublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/.github/workflows/pypipublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/README.md -------------------------------------------------------------------------------- /docs/changelogs/changelogs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/docs/changelogs/changelogs.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_started/community.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/docs/getting_started/community.rst -------------------------------------------------------------------------------- /docs/getting_started/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/docs/getting_started/install.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/submodules/f3kdb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/docs/submodules/f3kdb.rst -------------------------------------------------------------------------------- /docs/submodules/funcs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/docs/submodules/funcs.rst -------------------------------------------------------------------------------- /docs/submodules/placebo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/docs/submodules/placebo.rst -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | packaging>=24.0 2 | pycodestyle>=2.11.1 3 | ruff>=0.6.5 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | vsjetpack 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/setup.py -------------------------------------------------------------------------------- /vsdeband/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/__init__.py -------------------------------------------------------------------------------- /vsdeband/_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/_metadata.py -------------------------------------------------------------------------------- /vsdeband/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/abstract.py -------------------------------------------------------------------------------- /vsdeband/f3kdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/f3kdb.py -------------------------------------------------------------------------------- /vsdeband/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/filters.py -------------------------------------------------------------------------------- /vsdeband/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/funcs.py -------------------------------------------------------------------------------- /vsdeband/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/mask.py -------------------------------------------------------------------------------- /vsdeband/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/noise.py -------------------------------------------------------------------------------- /vsdeband/placebo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/placebo.py -------------------------------------------------------------------------------- /vsdeband/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vsdeband/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaded-Encoding-Thaumaturgy/vs-deband/HEAD/vsdeband/types.py --------------------------------------------------------------------------------