├── .gitignore ├── Anime4K.py ├── Anime4KGui.py ├── LICENSE ├── README.md ├── consts.py ├── demo.gif ├── encode.py ├── example.profile.json ├── extract_audio.py ├── extract_subs.py ├── mux.py ├── requirements.txt ├── shader.py ├── splitter.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/.gitignore -------------------------------------------------------------------------------- /Anime4K.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/Anime4K.py -------------------------------------------------------------------------------- /Anime4KGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/Anime4KGui.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/README.md -------------------------------------------------------------------------------- /consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/consts.py -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/demo.gif -------------------------------------------------------------------------------- /encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/encode.py -------------------------------------------------------------------------------- /example.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/example.profile.json -------------------------------------------------------------------------------- /extract_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/extract_audio.py -------------------------------------------------------------------------------- /extract_subs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/extract_subs.py -------------------------------------------------------------------------------- /mux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/mux.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/requirements.txt -------------------------------------------------------------------------------- /shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/shader.py -------------------------------------------------------------------------------- /splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/splitter.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/Anime4K/HEAD/utils.py --------------------------------------------------------------------------------