Media
Конвертируйте субтитры между WebVTT, TTML (с SMPTE-кадровым таймингом и стилями), YouTube SBV и SRT — кадрово-точные оси времени (23.976/24/25/29.97 drop-frame/30/50/59.94 DF/60), стили tts из TTML в ::cue CSS WebVTT, уникальность cue-id и проверки IMSC 1.0.1.
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'http://127.0.0.1:3003/api/upload/presign/webvtt-ttml-sbv-subtitle-time-axis-and-cue-style-converter' \
-H 'Content-Type: application/json' \
-d '{"filename":"sourceFile.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 'http://127.0.0.1:3003/ru/api/tools/webvtt-ttml-sbv-subtitle-time-axis-and-cue-style-converter' \
-F 'source=1
00:00:01,000 --> 00:00:04,000
Hello <i>world</i>!
2
00:00:05,500 --> 00:00:06,000
Second & <b>bold</b> cue' \
-F 'sourceFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'sourceFormat=auto' \
-F 'targetFormat=webvtt' \
-F 'fps=auto' \
-F 'smpteTimes=false' \
-F 'validateImsc=true' \
-F 'outputLang=en'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST http://127.0.0.1:3003/ru/api/tools/webvtt-ttml-sbv-subtitle-time-axis-and-cue-style-converter| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| source | textarea | Нет | — |
| sourceFile | fileнужна загрузка | Нет | — |
| sourceFormat | select | Да | — |
| targetFormat | select | Да | — |
| fps | select | Да | — |
| smpteTimes | checkbox | Нет | — |
| validateImsc | checkbox | Нет | — |
| outputLang | text | Нет | — |
Текстовый результат
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-webvtt-ttml-sbv-subtitle-time-axis-and-cue-style-converter": {
"name": "webvtt-ttml-sbv-subtitle-time-axis-and-cue-style-converter",
"description": "Конвертируйте субтитры между WebVTT, TTML (с SMPTE-кадровым таймингом и стилями), YouTube SBV и SRT — кадрово-точные оси времени (23.976/24/25/29.97 drop-frame/30/50/59.94 DF/60), стили tts из TTML в ::cue CSS WebVTT, уникальность cue-id и проверки IMSC 1.0.1.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=webvtt-ttml-sbv-subtitle-time-axis-and-cue-style-converter",
"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": "webvtt-ttml-sbv-subtitle-time-axis-and-cue-style-converter",
"arguments": {
"source": "1\n00:00:01,000 --> 00:00:04,000\nHello <i>world</i>!\n\n2\n00:00:05,500 --> 00:00:06,000\nSecond & <b>bold</b> cue",
"sourceFile": "https://example.com/file.ext",
"sourceFormat": "auto",
"targetFormat": "webvtt",
"fps": "auto",
"smpteTimes": false,
"validateImsc": true,
"outputLang": "en"
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]