Metadata-Version: 2.1
Name: watermark.py
Version: 0.0.3.post1
Summary: A convenient 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

![PyPI](https://img.shields.io/pypi/v/watermark.py)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/watermark.py)

A convenient 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

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

video = File("vid.mp4")
watermark = Watermark(File("im.png"), pos=Position.bottom_right)

apply_watermark(video, watermark)
```

## Used by

- [telewater](https://github.com/aahnik/telewater)
A telegram bot that applies watermark on images, gifs, and videos.

