A convenient python wrapper around FFmpeg to apply watermarks to images, gifs, and videos.
pip install watermark.py
You need to install ffmpeg
seperately.
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)
- telewater A telegram bot that applies watermark on images, gifs, and videos.