Skip to content

Instantly share code, notes, and snippets.

@NISH1001
Created January 26, 2019 23:45
Show Gist options
  • Save NISH1001/006975930a7ab23b9c0219c6c819de14 to your computer and use it in GitHub Desktop.
Save NISH1001/006975930a7ab23b9c0219c6c819de14 to your computer and use it in GitHub Desktop.
add watermark to video
# add watermark
ffmpeg -y -i demo.mp4 -i logo.png -filter_complex \
"[1]lut=a=val*0.3[a];[0][a]overlay=5:600" \
-c:v libx264 -an output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment