Media
Извлечение отдельных кадров из изображений GIF с настраиваемыми опциями формата вывода и именования
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/gif-to-frames' \
-F 'file=@/path/to/gifFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/ru/api/tools/gif-to-frames' \
-F 'gifFile=/path/to/file.ext' \
-F 'outputFormat=png' \
-F 'frameRange=all' \
-F 'startFrame=1' \
-F 'endFrame=0' \
-F 'frameStep=1' \
-F 'quality=100' \
-F 'backgroundColor=transparent' \
-F 'customBackgroundColor=#ffffff' \
-F 'customWidth=0' \
-F 'customHeight=0' \
-F 'maintainAspectRatio=true' \
-F 'namingPattern=frame' \
-F 'paddingLength=3'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/gif-to-frames| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| gifFile | fileнужна загрузка | Да | — |
| outputFormat | select | Нет | — |
| frameRange | select | Нет | — |
| startFrame | number | Нет | — |
| endFrame | number | Нет | — |
| frameStep | number | Нет | — |
| quality | number | Нет | — |
| backgroundColor | select | Нет | — |
| customBackgroundColor | color | Нет | — |
| customWidth | number | Нет | — |
| customHeight | number | Нет | — |
| maintainAspectRatio | checkbox | Нет | — |
| namingPattern | select | Нет | — |
| paddingLength | number | Нет | — |
Файловый результат
{
"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)"
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-gif-to-frames": {
"name": "gif-to-frames",
"description": "Извлечение отдельных кадров из изображений GIF с настраиваемыми опциями формата вывода и именования",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=gif-to-frames",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "gif-to-frames",
"arguments": {
"gifFile": "https://example.com/file.ext",
"outputFormat": "png",
"frameRange": "all",
"startFrame": 1,
"endFrame": 0,
"frameStep": 1,
"quality": 100,
"backgroundColor": "transparent",
"customBackgroundColor": "#ffffff",
"customWidth": 0,
"customHeight": 0,
"maintainAspectRatio": true,
"namingPattern": "frame",
"paddingLength": 3
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]