Metadata-Version: 2.1
Name: anime4k-python
Version: 1.1.0
Summary: Python wrapper of Anime4K GLSL shaders achieved with FFmpeg and libplacebo
Author: K4YT3X
Author-email: i@k4yt3x.com
License: MIT
Keywords: anime4k,ffmpeg,upscaling
Classifier: Environment :: Console
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ffmpeg >=0.2.0
Requires-Dist: pillow >=9.1.0

# Anime4K Python

Python wrapper of Anime4K GLSL shaders achieved with FFmpeg and libplacebo.

## Usages

```
from anime4k_python import Anime4K

anime4k = Anime4K(backend="mpv", mode="A")
anime4k.process_video(
    "input.mp4",
    "output.mp4",
    1280,
    720,
    scale=2,
)
```
