Powered by WebAssembly
Add Watermark to Video via API
Protect your video content with image or text watermarks. Position anywhere on the frame with adjustable opacity, size, and padding.
Try it in your browser
Loading FFmpeg engine... (~31 MB)
Use the API
curl -X POST https://renderio.dev/v1/commands \
-H "X-API-KEY: ffsk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"ffmpeg_command": "-i {in_video} -i {in_video} -filter_complex \"overlay=W-w-10:H-h-10\" {out_video}",
"input_files": {
"in_video": "https://example.com/input.mp4"
},
"output_files": {
"out_video": "output.mp4"
}
}'Need an API key? Get your free API key to start processing files programmatically.
Common Variations
Top-left corner
-i input.mp4 -i watermark.png -filter_complex "overlay=10:10" output.mp4Center with opacity
-i input.mp4 -i watermark.png -filter_complex "[1:v]format=rgba,colorchannelmixer=aa=0.3[wm];[0:v][wm]overlay=(W-w)/2:(H-h)/2" output.mp4Text watermark
-i input.mp4 -vf "drawtext=text='RenderIO':fontsize=24:fontcolor=white@0.5:x=W-tw-10:y=H-th-10" output.mp4Scaled watermark (20% of video width)
-i input.mp4 -i watermark.png -filter_complex "[1:v]scale=iw*0.2:-1[wm];[0:v][wm]overlay=W-w-10:H-h-10" output.mp4Related Operations
Need to process at scale?
Automate this with the RenderIO FFmpeg API. Process thousands of files programmatically or through no-code video automation.