Media
Overlay one video on top of another video
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-overlay' \
-F 'file=@/path/to/baseVideo.ext'
curl -X POST 'https://api.elysiatools.com/upload/video-overlay' \
-F 'file=@/path/to/overlayVideo.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/video-overlay' \
-F 'baseVideo=/path/to/file.ext' \
-F 'overlayVideo=/path/to/file.ext' \
-F 'position=top-right' \
-F 'scale=25' \
-F 'opacity=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-overlay| Name | Type | Required | Description |
|---|---|---|---|
| baseVideo | fileupload required | Yes | — |
| overlayVideo | fileupload required | Yes | — |
| position | select | No | — |
| scale | range | No | Size of overlay video relative to base (5-100%) |
| opacity | range | No | Overlay opacity (0.1 = transparent, 1 = opaque) |
| 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-overlay": {
"name": "video-overlay",
"description": "Overlay one video on top of another video",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=video-overlay",
"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-overlay",
"arguments": {
"baseVideo": "https://example.com/file.ext",
"overlayVideo": "https://example.com/file.ext",
"position": "top-right",
"scale": 25,
"opacity": 1,
"outputFormat": "mp4"
}
}
}Questions or issues? Contact [email protected]