Skip to main content

Images To Slideshow Ken Burns

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEffmpeg.images_to_slideshow_ken_burns
  • Contract tier: agent_ready
  • Risk: write
  • Catalog version: 2026-07-12.3
  • Descriptor hash: 4efb833b122674001cf0e81e97e972ffaa01a133c1f091acd90ac8df5498b7ed

Use this to create a slideshow with bounded Ken Burns pan-and-zoom motion from ordered staged images. It queues a new video asset and preserves inputs.

Request Body

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

Arguments Schema

{
"type": "object",
"required": [
"asset_ids"
],
"properties": {
"fps": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "Optional positive output frame rate in frames per second."
},
"width": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "Optional positive output width in pixels."
},
"height": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "Optional positive output height in pixels."
},
"priority": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Optional queue priority configured by the server, such as urgent or batch."
},
"asset_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Ordered stable IDs of staged FFmpeg media assets."
},
"durations": {
"anyOf": [
{
"type": "array",
"items": {
"type": "number"
}
},
{
"type": "null"
}
],
"description": "Optional per-image durations in seconds, ordered to match asset_ids."
},
"background_color": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "FFmpeg-compatible safe color name or value for unused canvas space."
},
"duration_per_image": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"description": "Optional seconds to display each slideshow image."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"job_id",
"cache_hit"
],
"properties": {
"job_id": {
"type": "string",
"description": "Stable ID used with the job readback tools."
},
"cache_hit": {
"type": "boolean",
"description": "Whether a matching completed result was reused."
},
"output_asset_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Completed output asset IDs when immediately available from cache."
}
},
"additionalProperties": false
}

Code Examples

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

Example Responses

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