Skip to main content

Video Add Logo

Snapshot Catalog Entry

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

POSTffmpeg.video_add_logo

Execute ffmpeg.video_add_logo through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-video-add-logo-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.video_add_logo",
"arguments": {
"asset_id": "asset_id_123",
"logo_asset_id": "",
"logo_key": "",
"position": "",
"scale_pct": "",
"opacity": "",
"priority": ""
}
}
}

Arguments Schema

{
"properties": {
"asset_id": {
"type": "string"
},
"logo_asset_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"logo_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"position": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"scale_pct": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"opacity": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"priority": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"asset_id"
],
"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-video-add-logo-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.video_add_logo",
"arguments": {
"asset_id": "asset_id_123",
"logo_asset_id": "",
"logo_key": "",
"position": "",
"scale_pct": "",
"opacity": "",
"priority": ""
}
}
}'

Example Responses

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