Media
Add an image watermark to videos with customizable position, size, opacity, and timing
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/video-watermark-image' \
-F 'file=@/path/to/videoFile.ext'
curl -X POST 'https://api.elysiatools.com/upload/video-watermark-image' \
-F 'file=@/path/to/watermarkImageFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/video-watermark-image' \
-F 'videoFile=/path/to/file.ext' \
-F 'watermarkImageFile=/path/to/file.ext' \
-F 'position=bottom-right' \
-F 'scale=15' \
-F 'opacity=0.7' \
-F 'margin=20' \
-F 'animationMode=static' \
-F 'animationSpeed=50' \
-F 'startTime=0' \
-F 'endTime=-1' \
-F 'outputFormat=mp4'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/video-watermark-image| Name | Type | Required | Description |
|---|---|---|---|
| videoFile | fileupload required | Yes | — |
| watermarkImageFile | fileupload required | Yes | — |
| position | select | No | — |
| scale | range | No | Size of watermark relative to video width (1-100%) |
| opacity | range | No | Watermark opacity (0.1 = transparent, 1 = opaque) |
| margin | range | No | Distance from video edges (0-200 pixels) |
| animationMode | select | No | — |
| animationSpeed | range | No | Movement speed in pixels per second (10-500) |
| startTime | number | No | When to start showing the watermark (0 = from beginning) |
| endTime | number | No | When to stop showing the watermark (-1 = until end) |
| outputFormat | select | No | — |
File result
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-video-watermark-image": {
"name": "video-watermark-image",
"description": "Add an image watermark to videos with customizable position, size, opacity, and timing",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=video-watermark-image",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "video-watermark-image",
"arguments": {
"videoFile": "https://example.com/file.ext",
"watermarkImageFile": "https://example.com/file.ext",
"position": "bottom-right",
"scale": 15,
"opacity": 0.7,
"margin": 20,
"animationMode": "static",
"animationSpeed": 50,
"startTime": 0,
"endTime": -1,
"outputFormat": "mp4"
}
}
}Questions or issues? Contact [email protected]