k7sfunc 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
k7sfunc/__init__.py ADDED
@@ -0,0 +1,28 @@
1
+
2
+ from .version import __version__
3
+ from ._internal import vs_t_dft, LooseVersion
4
+
5
+ from .mod_helper import *
6
+ from .mod_fmt import *
7
+ from .mod_scale import *
8
+ from .mod_memc import *
9
+ from .mod_dbdn import *
10
+ from .mod_etc import *
11
+ from .mod_mix import *
12
+
13
+ from . import mod_helper, mod_fmt, mod_scale, mod_memc, mod_dbdn, mod_mix, mod_etc
14
+
15
+ __all__ = (
16
+ [
17
+ "__version__",
18
+ "vs_t_dft",
19
+ "LooseVersion",
20
+ ]
21
+ + mod_helper.__all__
22
+ + mod_fmt.__all__
23
+ + mod_scale.__all__
24
+ + mod_memc.__all__
25
+ + mod_dbdn.__all__
26
+ + mod_mix.__all__
27
+ + mod_etc.__all__
28
+ )
k7sfunc/__main__.py ADDED
@@ -0,0 +1,19 @@
1
+
2
+ import sys
3
+ from .version import __version__
4
+
5
+ def main():
6
+
7
+ print(f"K7sfunc v{__version__}")
8
+ print("\nK7的VapourSynth视频处理的预设工具集")
9
+ print("=" * 50)
10
+ print("\n使用方法:")
11
+ print(" 在 Python 脚本中导入:")
12
+ print(" import k7sfunc as k7f")
13
+ print(" clip = k7f.RIFE_NV(input=clip, ...)")
14
+ print("\n文档: https://github.com/hooke007/mpv_PlayKit/wiki/3_K7sfunc")
15
+ print("=" * 50)
16
+
17
+ if __name__ == "__main__":
18
+ sys.exit(main())
19
+
@@ -0,0 +1,13 @@
1
+ """Forks of upstream VapourSynth scripts used by K7sfunc.
2
+
3
+ Each module is bundled verbatim (with local tweaks when necessary) to give the
4
+ package a consistent dependency set. Please refer to the upstream projects for
5
+ original authorship, changelogs, and license terms:
6
+
7
+ - ``vsmlrt``: https://github.com/AmusementClub/vs-mlrt (GPL-3.0)
8
+ - ``dfttest2``: https://github.com/AmusementClub/VapourSynth-DFTTest2 (GPL-3.0)
9
+ - ``qtgmc``: based on QTGMC 3.33 by Vit (GPL)
10
+ - ``nnedi3_resample``: https://github.com/HomeOfVapourSynthEvolution/nnedi3_resample (see upstream license)
11
+ - ``mvsfunc``: https://github.com/HomeOfVapourSynthEvolution/mvsfunc (see upstream license)
12
+
13
+ """