Skip to main content

Images To Slideshow

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

POSTffmpeg.images_to_slideshow

Execute ffmpeg.images_to_slideshow through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-images-to-slideshow-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.images_to_slideshow",
"arguments": {
"asset_ids": [],
"duration_per_image": "",
"durations": "",
"width": "",
"height": "",
"fps": "",
"background_color": "",
"priority": ""
}
}
}

Arguments Schema

{
"properties": {
"asset_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"duration_per_image": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"durations": {
"anyOf": [
{
"items": {
"type": "number"
},
"type": "array"
},
{
"type": "null"
}
]
},
"width": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"height": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"fps": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"background_color": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"priority": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"asset_ids"
],
"type": "object"
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "ffmpeg-images-to-slideshow-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.images_to_slideshow",
"arguments": {
"asset_ids": [],
"duration_per_image": "",
"durations": "",
"width": "",
"height": "",
"fps": "",
"background_color": "",
"priority": ""
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool ffmpeg.images_to_slideshow executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}