-
Notifications
You must be signed in to change notification settings - Fork 14
/
watermark.sh
executable file
·17 lines (16 loc) · 1.15 KB
/
watermark.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
#########################################################################
# Video Watermarker #
# #
# Easily embed your own image watermark onto videos (via ffmpeg). #
# #
# Part of HopeSeekr's BashScripts Collection #
# https://github.com/hopeseekr/BashScripts/ #
# #
# Copyright © 2020 Theodore R. Smith <[email protected]> #
# GPG Fingerprint: 4BF8 2613 1C34 87AC D28F 2AD8 EB24 A91D D612 5690 #
# #
# License: Creative Commons Attribution v4.0 International #
#########################################################################
# @FIXME: This *really* needs to be abstracted out.
ffmpeg -i "$1" -i /code/SurviveCorona.how/src/assets/transparent_hopeseekr_twitter.png -filter_complex "overlay=10:10" -codec:a copy "$2"