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) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/video-sdr-to-hdr' \
-H 'Content-Type: application/json' \
-d '{"filename":"videoFile.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/en/api/tools/video-sdr-to-hdr' \
-F 'videoFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'hdrFormat=hdr10' \
-F 'brightnessEnhancement=30' \
-F 'saturationBoost=15' \
-F 'contrastEnhancement=10' \
-F 'crf=18' \
-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 | No | Enhance contrast (0-50) |
| crf | range | No | Lower = better quality (18 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)"
}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": 18,
"preset": "slow",
"outputFormat": "mp4"
}
}
}Questions or issues? Contact [email protected]