Media
Convert SDR (Standard Dynamic Range) videos to HDR (High Dynamic Range) format with enhanced brightness and BT.2020 color space
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/video-sdr-to-hdr' \
-F 'file=@/path/to/videoFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/video-sdr-to-hdr' \
-F 'videoFile=/path/to/file.ext' \
-F 'hdrFormat=hdr10' \
-F 'brightnessEnhancement=30' \
-F 'saturationBoost=15' \
-F 'contrastEnhancement=10' \
-F 'crf=16' \
-F 'preset=slow' \
-F 'outputFormat=mp4'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/video-sdr-to-hdr| Name | Type | Required | Description |
|---|---|---|---|
| videoFile | fileupload required | Yes | — |
| hdrFormat | select | No | Target HDR format for conversion |
| brightnessEnhancement | range | No | Enhance brightness to simulate HDR (0-100) |
| saturationBoost | range | No | Increase color saturation (0-50) |
| contrastEnhancement | range |
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-video-sdr-to-hdr": {
"name": "video-sdr-to-hdr",
"description": "Convert SDR (Standard Dynamic Range) videos to HDR (High Dynamic Range) format with enhanced brightness and BT.2020 color space",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=video-sdr-to-hdr",
"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": "video-sdr-to-hdr",
"arguments": {
"videoFile": "https://example.com/file.ext",
"hdrFormat": "hdr10",
"brightnessEnhancement": 30,
"saturationBoost": 15,
"contrastEnhancement": 10,
"crf": 16,
"preset": "slow",
"outputFormat": "mp4"
}
}
}| Enhance contrast (0-50) |
| crf | range | No | Lower = better quality (16 recommended for HDR) |
| preset | select | No | — |
| outputFormat | select | No | — |
File result
{
"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)"
}Questions or issues? Contact [email protected]