Media
Overlay one video on top of another video
Call this tool from your code in three languages.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/video-overlay' \
-H 'Content-Type: application/json' \
-d '{"filename":"baseVideo.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/video-overlay' \
-H 'Content-Type: application/json' \
-d '{"filename":"overlayVideo.ext","contentType":"application/octet-stream","size":12345}'
# 2) PUT the file bytes directly to the presigned uploadUrl
curl -X PUT '<presigned uploadUrl>' \
--data-binary @/path/to/file.ext
# 3) Call the tool, passing the returned storageKey for each file field
curl -X POST 'https://api.elysiatools.com/en/api/tools/video-overlay' \
-F 'baseVideo=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'overlayVideo=uploads/2026/01/01/your-tool-1700000000000-abc123.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]