Skip to content
This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
/ watermark.py Public archive

A convenient python wrapper around FFmpeg to apply watermarks to images, gifs, and videos.

License

Notifications You must be signed in to change notification settings

aahnik/watermark.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

watermark.py

PyPI PyPI - Python Version

A convenient python wrapper around FFmpeg to apply watermarks to images, gifs, and videos.

Installation

pip install watermark.py

You need to install ffmpeg seperately.

Usage

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 A telegram bot that applies watermark on images, gifs, and videos.