# Sbv To Srt — REST API endpoint `sbv-to-srt`

Convert a YouTube SubViewer (.sbv) caption export to SubRip (.srt), or back again. YouTube Studio still hands out .sbv, which most editors and players will not open: its timing line is `0:00:01.000,0:00:04.000` where SubRip wants `00:00:01,000 --> 00:00:04,000`, and it carries no cue numbers, so simply renaming the file does not work. Going to SRT pads the hours, swaps the separators and numbers the cues from 1; going back to SBV strips the numbers and restores the SubViewer timing. Cue text and order are preserved exactly. Direction is detected from the input by default.

- Category: media
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/sbv-to-srt/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/sbv-to-srt/
- Same tool on the other surface: https://findutils.com/mcp/sbv-to-srt/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/sbv-to-srt/execute \
  -H "Content-Type: application/json" \
  -d '{
    "input": "0:00:01.000,0:00:04.000\nGood morning.\n\n0:00:05.500,0:00:08.250\nTwo lines\nin one cue.\n"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/sbv-to-srt
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `input` | string | yes | Caption file contents, either SubViewer (.sbv) or SubRip (.srt). |
| `direction` | string (auto \| sbv-to-srt \| srt-to-sbv) | no | auto reads the input and picks the direction. Default auto. Default: `"auto"`. |

Example arguments (verified):

```json
{
  "input": "0:00:01.000,0:00:04.000\nGood morning.\n\n0:00:05.500,0:00:08.250\nTwo lines\nin one cue.\n"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:sbv_to_srt`. Full MCP reference: https://findutils.com/mcp/sbv-to-srt/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
