diff --git a/LICENSE b/LICENSE index 61c0728..fafc675 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Irrational Encoding Wizardry +Copyright (c) 2023 Jaded Encoding Thaumaturgy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 39d7f28..30bcccc 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,31 @@ # vs-denoise ### VapourSynth denoising, regression, and motion-compensation functions +
Wrappers for denoising, regression, and motion-compensation-related plugins and functions. -You can find me in the [IEW Discord server](https://discord.gg/qxTxVJGtst), @Setsugennoao#6969. -

+For support you can check out the [JET Discord server](https://discord.gg/XTpc6Fa9eB).

+ ## How to install Install `vsdenoise` with the following command: ```sh -$ pip install vsdenoise +pip install vsdenoise ``` Or if you want the latest git version, install it with this command: ```sh -$ pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-denoise.git +pip install git+https://github.com/Jaded-Encoding-Thaumaturgy/vs-denoise.git ``` +

## Example usage + ```py from vsdenoise import MVTools, SADMode, MotionMode, Prefilter, BM3DCuda, Profile, nl_means diff --git a/docs/changelogs/changelogs.rst b/docs/changelogs/changelogs.rst index 131861a..b6c312d 100644 --- a/docs/changelogs/changelogs.rst +++ b/docs/changelogs/changelogs.rst @@ -1,8 +1,8 @@ Changelogs ========== -.. image:: https://img.shields.io/github/commits-since/Setsugennoao/vs-denoise/latest - :target: https://github.com/Irrational-Encoding-Wizardry/vs-denoise/commits/master +.. image:: https://img.shields.io/github/commits-since/Jaded-Encoding-Thaumaturgy/vs-denoise/latest + :target: https://github.com/Jaded-Encoding-Thaumaturgy/vs-denoise/commits/master -Check the `Github releases page `_ +Check the `Github releases page `_ for a full changelog. diff --git a/docs/getting_started/community.rst b/docs/getting_started/community.rst index fa88b49..8d6347e 100644 --- a/docs/getting_started/community.rst +++ b/docs/getting_started/community.rst @@ -8,7 +8,7 @@ Where to find support If you're looking for vsdenoise support, there's a couple option: * Read the official `documentation <_home>` -* Check out the official Irrational Encoding Wizardry `Discord server `_ +* Check out the JET `Discord server `_ .. warning:: @@ -19,7 +19,7 @@ Contributing .. _contribute: -The easiest way to contribute is to simply send in a `pull request `_! +The easiest way to contribute is to simply send in a `pull request `_! Please keep your changes to a minimum. The following contributions will be automatically rejected: PRs that diff --git a/docs/getting_started/install.rst b/docs/getting_started/install.rst index cf6e6b4..428eba3 100644 --- a/docs/getting_started/install.rst +++ b/docs/getting_started/install.rst @@ -12,7 +12,7 @@ You can use pip to do this, as demonstrated below: .. code-block:: console - pip3 install vsdenoise --no-cache-dir -U + pip install vsdenoise --no-cache-dir -U This ensures that any previous versions will be overwritten and vsdenoise will be upgraded if you had already previously installed it. @@ -24,7 +24,7 @@ as well as accurately reflect the documentation. .. code-block:: console - pip3 install git+https://github.com/Irrational-Encoding-Wizardry/vs-denoise.git --no-cache-dir -U + pip install git+https://github.com/Jaded-Encoding-Thaumaturgy/vs-denoise.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. diff --git a/docs/index.rst b/docs/index.rst index 347fb3e..44178d8 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -10,14 +10,14 @@ vsdenoise Documentation .. image:: https://img.shields.io/pypi/v/vsdenoise :target: https://pypi.org/project/vsdenoise/ -.. image:: https://img.shields.io/github/commits-since/Setsugennoao/vs-denoise/latest - :target: https://github.com/Irrational-Encoding-Wizardry/vs-denoise/commits/master +.. image:: https://img.shields.io/github/commits-since/Jaded-Encoding-Thaumaturgy/vs-denoise/latest + :target: https://github.com/Jaded-Encoding-Thaumaturgy/vs-denoise/commits/master .. image:: https://img.shields.io/pypi/l/vsdenoise - :target: https://github.com/Irrational-Encoding-Wizardry/vs-denoise/blob/master/LICENSE + :target: https://github.com/Jaded-Encoding-Thaumaturgy/vs-denoise/blob/master/LICENSE .. image:: https://img.shields.io/discord/856381934052704266?label=discord - :target: https://discord.gg/qxTxVJGtst + :target: https://discord.gg/XTpc6Fa9eB .. image:: https://static.pepy.tech/personalized-badge/vsdenoise?period=total&units=international_system&left_color=grey&right_color=blue&left_text=downloads :target: https://pepy.tech/project/vsdenoise @@ -61,7 +61,7 @@ Check out the `how to contribute ` section! Special Credits --------------- | A special thanks to every contributor who has contributed to vsdenoise. -| `A comprehensive list of contributors can be found here. `_ +| `A comprehensive list of contributors can be found here. `_ .. toctree:: diff --git a/setup.py b/setup.py index 5201e0b..8974f12 100755 --- a/setup.py +++ b/setup.py @@ -22,9 +22,8 @@ long_description=readme, long_description_content_type='text/markdown', project_urls={ - 'Source Code': 'https://github.com/Irrational-Encoding-Wizardry/vs-denoise', - 'Documentation': 'https://vsdenoise.encode.moe/en/latest/', - 'Contact': 'https://discord.gg/qxTxVJGtst', + 'Source Code': 'https://github.com/Jaded-Encoding-Thaumaturgy/vs-denoise', + 'Contact': 'https://discord.gg/XTpc6Fa9eB', }, install_requires=requirements, python_requires='>=3.11', diff --git a/vsdenoise/_metadata.py b/vsdenoise/_metadata.py index 226da94..b37b5cb 100644 --- a/vsdenoise/_metadata.py +++ b/vsdenoise/_metadata.py @@ -3,7 +3,7 @@ __version__ = '2.4.0' __author_name__, __author_email__ = 'Irrational Encoding Wizardry', 'wizards@encode.moe' -__maintainer_name__, __maintainer_email__ = __author_name__, __author_email__ +__maintainer_name__, __maintainer_email__ = 'Setsugen no ao', 'setsugen@setsugen.dev' __author__ = f'{__author_name__} <{__author_email__}>' __maintainer__ = __author__ diff --git a/vsdenoise/regress.py b/vsdenoise/regress.py index 15143d2..17aeeb0 100644 --- a/vsdenoise/regress.py +++ b/vsdenoise/regress.py @@ -415,7 +415,7 @@ class ChromaReconstruct(ABC): based on linear regression between luma-demangled luma and chroma-demangled chroma. The reconstruction depends on the following plugin: - - https://github.com/Irrational-Encoding-Wizardry/vapoursynth-reconstruct + - https://github.com/Jaded-Encoding-Thaumaturgy/vapoursynth-reconstruct """ kernel: KernelT = field(default=Catrom, kw_only=True)