Media
Convert a sequence of images into a video file with customizable frame rate and encoding settings
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/image-sequence-to-video' \
-F 'file=@/path/to/imageFiles.ext'
curl -X POST 'https://api.elysiatools.com/upload/image-sequence-to-video' \
-F 'file=@/path/to/audioFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/image-sequence-to-video' \
-F 'imageFiles=/path/to/file.ext' \
-F 'fps=30' \
-F 'codec=libx264' \
-F 'bitrate=5M' \
-F 'width=0' \
-F 'height=0' \
-F 'loop=1' \
-F 'audioFile=/path/to/file.ext'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/image-sequence-to-video| Name | Type | Required | Description |
|---|---|---|---|
| imageFiles | fileupload required | Yes | — |
| fps | number | No | Video frame rate |
| codec | select | No | — |
| bitrate | text | No | Target bitrate (e.g., 5M = 5 Mbps) |
| width | number | No | Leave empty for original |
| height | number | No | Leave empty for original |
| loop | number | No | Repeat the sequence N times |
| audioFile | fileupload required | 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-image-sequence-to-video": {
"name": "image-sequence-to-video",
"description": "Convert a sequence of images into a video file with customizable frame rate and encoding settings",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-sequence-to-video",
"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": "image-sequence-to-video",
"arguments": {
"imageFiles": "https://example.com/file.ext",
"fps": 30,
"codec": "libx264",
"bitrate": "5M",
"width": 0,
"height": 0,
"loop": 1,
"audioFile": "https://example.com/file.ext"
}
}
}Questions or issues? Contact [email protected]