Media
Project SVT-AV1 output size, bitrate, and approximate VMAF for preset/CRF/resolution, and compare against libaom and libx265
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/av1-svt-av1-preset-quality-tuner' \
-H 'Content-Type: application/json' \
-d '{"resolution":"1080p","framerate":24,"crf":30,"preset":6,"durationSec":600,"compare":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/av1-svt-av1-preset-quality-tuner| Name | Type | Required | Description |
|---|---|---|---|
| resolution | select | No | — |
| framerate | number | No | — |
| crf | number | No | — |
| preset | number | No | — |
| durationSec | number | No | — |
| compare |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-av1-svt-av1-preset-quality-tuner": {
"name": "av1-svt-av1-preset-quality-tuner",
"description": "Project SVT-AV1 output size, bitrate, and approximate VMAF for preset/CRF/resolution, and compare against libaom and libx265",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=av1-svt-av1-preset-quality-tuner",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "av1-svt-av1-preset-quality-tuner",
"arguments": {
"resolution": "1080p",
"framerate": 24,
"crf": 30,
"preset": 6,
"durationSec": 600,
"compare": true
}
}
}Questions or issues? Contact [email protected]
| checkbox |
| No |
| — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}