-
Notifications
You must be signed in to change notification settings - Fork 3
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
4f6e083
commit 51bc9e5
Showing
4 changed files
with
12 additions
and
12 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
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,20 +1,21 @@ | ||
# vs-deinterlace | ||
|
||
### VapourSynth deinterlacing and interlaced/telecined content helper functions | ||
|
||
<br> | ||
|
||
You can find support in the [IEW Discord server](https://discord.gg/qxTxVJGtst). | ||
<br><br> | ||
For support you can check out the [JET Discord server](https://discord.gg/XTpc6Fa9eB). <br><br> | ||
|
||
## How to install | ||
|
||
Install `vsdeinterlace` with the following command: | ||
|
||
```sh | ||
$ pip install vsdeinterlace | ||
pip install vsdeinterlace | ||
``` | ||
|
||
Or if you want the latest git version, install it with this command: | ||
|
||
```sh | ||
$ pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-deinterlace.git | ||
pip install git+https://github.com/Jaded-Encoding-Thaumaturgy/vs-deinterlace.git | ||
``` |
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 |
---|---|---|
|
@@ -2,11 +2,11 @@ | |
|
||
__version__ = '0.5.1' | ||
|
||
__author__ = 'Setsugen no ao <[email protected]>' | ||
__maintainer__ = __author__ | ||
__author_name__, __author_email__ = 'Setsugen no ao', '[email protected]' | ||
__maintainer_name__, __maintainer_email__ = __author_name__, __author_email__ | ||
|
||
__author_name__, __author_email__ = [x[:-1] for x in __author__.split('<')] | ||
__maintainer_name__, __maintainer_email__ = [x[:-1] for x in __maintainer__.split('<')] | ||
__author__ = f'{__author_name__} <{__author_email__}>' | ||
__maintainer__ = __author__ | ||
|
||
if __name__ == '__github__': | ||
print(__version__) |