-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ea9f45
commit ab52803
Showing
7 changed files
with
155 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
# vs-deband, a collection of wrappers and functions for debanding | ||
|
||
For further support, drop by `#vsdeband` in the [IEW Discord server](https://discord.gg/qxTxVJGtst). | ||
|
||
## How to install | ||
|
||
Install `vsdeband` with the following command: | ||
|
||
```sh | ||
pip install vsdeband | ||
``` | ||
|
||
Or if you want the latest git version, install it with this command: | ||
|
||
```sh | ||
pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-deband.git | ||
``` | ||
<br> | ||
# vs-deband, a collection of wrappers and functions for debanding | ||
|
||
For support you can check out the [JET Discord server](https://discord.gg/XTpc6Fa9eB). <br><br> | ||
|
||
## How to install | ||
|
||
Install `vsdeband` with the following command: | ||
|
||
```sh | ||
pip install vsdeband | ||
``` | ||
|
||
Or if you want the latest git version, install it with this command: | ||
|
||
```sh | ||
pip install git+https://github.com/Jaded-Encoding-Thaumaturgy/vs-deband.git | ||
``` | ||
|
||
<br> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Changelogs | ||
========== | ||
|
||
.. image:: https://img.shields.io/github/commits-since/Irrational-Encoding-Wizardry/vs-deband/latest | ||
:target: https://github.com/Irrational-Encoding-Wizardry/vs-deband/commits/master | ||
|
||
Check the `Github releases page <https://github.com/Irrational-Encoding-Wizardry/vs-deband/releases>`_ | ||
for a full changelog. | ||
Changelogs | ||
========== | ||
|
||
.. image:: https://img.shields.io/github/commits-since/Jaded-Encoding-Thaumaturgy/vs-deband/latest | ||
:target: https://github.com/Jaded-Encoding-Thaumaturgy/vs-deband/commits/master | ||
|
||
Check the `Github releases page <https://github.com/Jaded-Encoding-Thaumaturgy/vs-deband/releases>`_ | ||
for a full changelog. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
========= | ||
Community | ||
========= | ||
|
||
Where to find support | ||
===================== | ||
|
||
If you're looking for vsdeband support, there's a couple option: | ||
|
||
* Read the official `documentation <_home>` | ||
* Check out the official Irrational Encoding Wizardry `Discord server <https://discord.gg/qxTxVJGtst>`_ | ||
|
||
.. warning:: | ||
|
||
The vsdeband issue tracker is **NOT** a support forum! | ||
|
||
Contributing | ||
============ | ||
|
||
.. _contribute: | ||
|
||
The easiest way to contribute is to simply send in a `pull request <https://github.com/Irrational-Encoding-Wizardry/vs-deband/pulls>`_! | ||
Please keep your changes to a minimum. The following contributions will be automatically rejected: | ||
|
||
PRs that | ||
|
||
* drastically alter the codebase without prior approval | ||
* make minimal changes and are motivated by having one's name in the contributor list | ||
|
||
========= | ||
Community | ||
========= | ||
|
||
Where to find support | ||
===================== | ||
|
||
If you're looking for vsdeband support, there's a couple option: | ||
|
||
* Read the official `documentation <_home>` | ||
* Check out the JET `Discord server <https://discord.gg/XTpc6Fa9eB>`_ | ||
|
||
.. warning:: | ||
|
||
The vsdeband issue tracker is **NOT** a support forum! | ||
|
||
Contributing | ||
============ | ||
|
||
.. _contribute: | ||
|
||
The easiest way to contribute is to simply send in a `pull request <https://github.com/Jaded-Encoding-Thaumaturgy/vs-deband/pulls>`_! | ||
Please keep your changes to a minimum. The following contributions will be automatically rejected: | ||
|
||
PRs that | ||
|
||
* drastically alter the codebase without prior approval | ||
* make minimal changes and are motivated by having one's name in the contributor list | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
============ | ||
Installation | ||
============ | ||
|
||
.. _install: | ||
|
||
There are two common ways to install vsdeband. | ||
|
||
The first is to install the latest release build through `pypi <https://pypi.org/project/vsdeband/>`_. | ||
You can use pip to do this, as demonstrated below: | ||
|
||
|
||
.. code-block:: console | ||
pip3 install vsdeband --no-cache-dir -U | ||
This ensures that any previous versions will be overwritten | ||
and vsdeband will be upgraded if you had already previously installed it. | ||
|
||
The second method is to build the latest version from git. | ||
This will be less stable, | ||
but will feature the most up-to-date features, | ||
as well as accurately reflect the documentation. | ||
|
||
.. code-block:: console | ||
pip3 install git+https://github.com/Irrational-Encoding-Wizardry/vs-deband.git --no-cache-dir -U | ||
It's recommended you use a release version over building from git | ||
unless you require new functionality only available upstream. | ||
============ | ||
Installation | ||
============ | ||
|
||
.. _install: | ||
|
||
There are two common ways to install vsdeband. | ||
|
||
The first is to install the latest release build through `pypi <https://pypi.org/project/vsdeband/>`_. | ||
You can use pip to do this, as demonstrated below: | ||
|
||
|
||
.. code-block:: console | ||
pip install vsdeband --no-cache-dir -U | ||
This ensures that any previous versions will be overwritten | ||
and vsdeband will be upgraded if you had already previously installed it. | ||
|
||
The second method is to build the latest version from git. | ||
This will be less stable, | ||
but will feature the most up-to-date features, | ||
as well as accurately reflect the documentation. | ||
|
||
.. code-block:: console | ||
pip install git+https://github.com/Jaded-Encoding-Thaumaturgy/vs-deband.git --no-cache-dir -U | ||
It's recommended you use a release version over building from git | ||
unless you require new functionality only available upstream. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,66 @@ | ||
======================= | ||
vsdeband Documentation | ||
======================= | ||
|
||
.. _home: | ||
|
||
|
||
.. image:: https://img.shields.io/pypi/pyversions/vsdeband | ||
|
||
.. image:: https://img.shields.io/pypi/v/vsdeband | ||
:target: https://pypi.org/project/vsdeband/ | ||
|
||
.. image:: https://img.shields.io/github/commits-since/Setsugennoao/vs-deband/latest | ||
:target: https://github.com/Irrational-Encoding-Wizardry/vs-deband/commits/master | ||
|
||
.. image:: https://img.shields.io/pypi/l/vsdeband | ||
:target: https://github.com/Irrational-Encoding-Wizardry/vs-deband/blob/master/LICENSE | ||
|
||
.. image:: https://img.shields.io/discord/856381934052704266?label=discord | ||
:target: https://discord.gg/qxTxVJGtst | ||
|
||
.. image:: https://static.pepy.tech/personalized-badge/vsdeband?period=total&units=international_system&left_color=grey&right_color=blue&left_text=downloads | ||
:target: https://pepy.tech/project/vsdeband | ||
|
||
|
||
Denoising functions and wrappers for VapourSynth. | ||
|
||
This module is a collection of functions, utils, plugin wrappers to help | ||
users deband and \*func devs to easily write functions. | ||
|
||
Want to contribute to vsdeband? | ||
Check out the `how to contribute <contribute>` section! | ||
|
||
.. automodule:: vsdeband | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Getting started | ||
|
||
getting_started/install | ||
getting_started/community | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Functions | ||
:titlesonly: | ||
|
||
submodules/funcs | ||
submodules/f3kdb | ||
submodules/placebo | ||
|
||
|
||
Special Credits | ||
--------------- | ||
| A special thanks to every contributor who has contributed to vsdeband. | ||
| `A comprehensive list of contributors can be found here. <https://github.com/Irrational-Encoding-Wizardry/vs-deband/graphs/contributors>`_ | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Changelogs | ||
|
||
changelogs/changelogs | ||
======================= | ||
vsdeband Documentation | ||
======================= | ||
|
||
.. _home: | ||
|
||
|
||
.. image:: https://img.shields.io/pypi/pyversions/vsdeband | ||
|
||
.. image:: https://img.shields.io/pypi/v/vsdeband | ||
:target: https://pypi.org/project/vsdeband/ | ||
|
||
.. image:: https://img.shields.io/github/commits-since/Jaded-Encoding-Thaumaturgy/vs-deband/latest | ||
:target: https://github.com/Jaded-Encoding-Thaumaturgy/vs-deband/commits/master | ||
|
||
.. image:: https://img.shields.io/pypi/l/vsdeband | ||
:target: https://github.com/Jaded-Encoding-Thaumaturgy/vs-deband/blob/master/LICENSE | ||
|
||
.. image:: https://img.shields.io/discord/856381934052704266?label=discord | ||
:target: https://discord.gg/XTpc6Fa9eB | ||
|
||
.. image:: https://static.pepy.tech/personalized-badge/vsdeband?period=total&units=international_system&left_color=grey&right_color=blue&left_text=downloads | ||
:target: https://pepy.tech/project/vsdeband | ||
|
||
|
||
Denoising functions and wrappers for VapourSynth. | ||
|
||
This module is a collection of functions, utils, plugin wrappers to help | ||
users deband and \*func devs to easily write functions. | ||
|
||
Want to contribute to vsdeband? | ||
Check out the `how to contribute <contribute>` section! | ||
|
||
.. automodule:: vsdeband | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Getting started | ||
|
||
getting_started/install | ||
getting_started/community | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Functions | ||
:titlesonly: | ||
|
||
submodules/funcs | ||
submodules/f3kdb | ||
submodules/placebo | ||
|
||
|
||
Special Credits | ||
--------------- | ||
| A special thanks to every contributor who has contributed to vsdeband. | ||
| `A comprehensive list of contributors can be found here. <https://github.com/Jaded-Encoding-Thaumaturgy/vs-deband/graphs/contributors>`_ | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Changelogs | ||
|
||
changelogs/changelogs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
__version__ = '1.0.2' | ||
|
||
__author_name__, __author_email__ = 'Irrational Encoding Wizardry', '[email protected]' | ||
__maintainer_name__, __maintainer_email__ = __author_name__, __author_email__ | ||
__maintainer_name__, __maintainer_email__ = 'Setsugen no ao', '[email protected]' | ||
|
||
__author__ = f'{__author_name__} <{__author_email__}>' | ||
__maintainer__ = __author__ | ||
|