Skip to content

AviSynth Add Watermark

Anime4000 edited this page Aug 8, 2017 · 1 revision

Watermark

Add logo or watermark on your video by using AviSynth+

Install

If you don't have AviSynth+ installed, please follow this instruction before proceed.

Example Scripts

Open AvsPmod script editor and paste this example code

DirectShowSource("MyVideo.mp4")

Image=ImageSource("MyImage.png",pixel_type="RGB32")
Overlay(last, Image, mask=Image.ShowAlpha(), x=10, y=10)

You simply change MyVideo.mp4 to any video you like, same with MyImage.png

You may need to change overlay position: x=10, x=10

Save scripts, import into IFME, and start encode

Notice

Make sure you use PNG image for transparency support

Clone this wiki locally