videostablevideoreferenceupscaleasync
Video Enhance
studio_video_enhanceIncrease resolution and sharpness on an existing video.
Overview
Runs the WM Studio video upscaler (Topaz-grade). Outputs a 2× or 4× clip with detail recovery and frame-rate-aware sharpening.
Auth
oauth-jwt
Returns
{ job_id, status, video?: { url, width, height, duration_seconds } }
Web client
src/app/[locale]/dashboard/creative-studio/tools/video-upscale/page.tsx
MCP handler
mcp-director/src/tools/studio.py
Quick start
Invoke the tool over Streamable HTTP at {MCP_BASE_URL}/mcp/. The request below assumes you already minted an MCP JWT via the OAuth flow.
{
"name": "studio_video_enhance",
"arguments": {
"video_url": "<video_url>"
}
}Parameters
| Name | Type | Default | Description |
|---|---|---|---|
| video_urlrequired | string | — | Public URL of the source video (mp4/mov). |
| scale | 2 | 4 | 2 | Upscale factor. |
Examples
2× enhance
json
{
"name": "studio_video_enhance",
"arguments": {
"video_url": "https://cdn.wm.studio/uploads/clip.mp4",
"scale": 2
}
}