Media
Проверяет SRT, WebVTT и ASS по CPS, длительности, длине строк, перекрытиям и риску расширения перевода.
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/subtitle-reading-speed-localization-auditor' \
-H 'Content-Type: application/json' \
-d '{"filename":"subtitleFile.ext","contentType":"application/octet-stream","size":12345}'
# 2) PUT the file bytes directly to the presigned uploadUrl
curl -X PUT '<presigned uploadUrl>' \
--data-binary @/path/to/file.ext
# 3) Call the tool, passing the returned storageKey for each file field
curl -X POST 'https://api.elysiatools.com/ru/api/tools/subtitle-reading-speed-localization-auditor' \
-F 'subtitleText=1
00:00:00,000 --> 00:00:02,000
Welcome to the lesson
2
00:00:02,000 --> 00:00:03,000
This sentence is intentionally too fast.' \
-F 'subtitleFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'inputFormat=srt' \
-F 'preset=netflix-adult' \
-F 'maxCps=20' \
-F 'maxLineLength=42' \
-F 'maxLines=2' \
-F 'translationExpansionPercent=20'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/subtitle-reading-speed-localization-auditor| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| subtitleText | textarea | Нет | — |
| subtitleFile | fileнужна загрузка | Нет | — |
| inputFormat | select | Нет | — |
| preset | select | Нет | — |
| maxCps | number | Нет | — |
| maxLineLength | number | Нет | — |
| maxLines | number | Нет | — |
| translationExpansionPercent | number | Нет | — |
HTML-результат
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-subtitle-reading-speed-localization-auditor": {
"name": "subtitle-reading-speed-localization-auditor",
"description": "Проверяет SRT, WebVTT и ASS по CPS, длительности, длине строк, перекрытиям и риску расширения перевода.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=subtitle-reading-speed-localization-auditor",
"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": "subtitle-reading-speed-localization-auditor",
"arguments": {
"subtitleText": "1\n00:00:00,000 --> 00:00:02,000\nWelcome to the lesson\n\n2\n00:00:02,000 --> 00:00:03,000\nThis sentence is intentionally too fast.",
"subtitleFile": "https://example.com/file.ext",
"inputFormat": "srt",
"preset": "netflix-adult",
"maxCps": 20,
"maxLineLength": 42,
"maxLines": 2,
"translationExpansionPercent": 20
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]