Metadata-Version: 2.1
Name: watermark.py
Version: 0.0.2
Summary: A convinient python wrapper around ffmpeg to apply watermarks to images, gifs and videos.
Home-page: https://github.com/aahnik/watermark.py
License: MIT
Keywords: python,cli,watermark
Author: aahnik
Author-email: daw@aahnik.dev
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/aahnik/watermark.py
Description-Content-Type: text/markdown

# watermark.py

A convinient python wrapper around `ffmpeg` to apply
watermarks to images, gifs and videos.

## Installation

```shell
pip install watermark.py
```

You need to install  [`ffmpeg`](https://ffmpeg.org/) seperately.

## Usage

<!-- ### GUI

Visit watermark.py.aahnik.dev to experience the web app.

### CLI

You can use the command-line interface to easily apply watermark.

```shell
watermark --help
``` -->

<!-- ### Python -->

```python
from watermark import File, Watermark, apply_watermark

video = File("vid.mp4")
watermark = Watermark("im.png")

apply_watermark(video, watermark)
```

<!-- ## Used by

- tgcf
- telewater -->

