Bria Video Upscaler increases video resolution up to 8K with 2x or 4x upscaling. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Idle
$0.14per run·~71 / $10
Bria Fibo Video Upscaler is an AI-powered video enhancement model that upscales videos to higher resolutions. Upload your video and select a target resolution — the model intelligently enhances detail and sharpness while maintaining temporal consistency across frames.
AI-powered upscaling Enhances resolution with intelligent detail reconstruction, not simple interpolation.
2K and 4K output Upscale to 2K or 4K resolution for crisp, high-quality results.
Temporal consistency Maintains smooth, flicker-free results throughout the video.
Multiple output formats Export as MP4, MOV, MKV, WebM, or GIF with various codec options.
Detail preservation Reconstructs fine textures and sharp edges without over-sharpening.
| Parameter | Required | Description |
|---|---|---|
| video | Yes | Source video to upscale (URL or upload) |
| target_resolution | No | Output resolution: 2k (default), 4k |
| output_container_and_codec | No | Output format (see table below, default: mp4_h264) |
| Option | Container | Codec |
|---|---|---|
| webm_vp9 | WebM | VP9 |
| mp4_h264 | MP4 | H.264 |
| mp4_h265 | MP4 | H.265/HEVC |
| mov_h265 | MOV | H.265/HEVC |
| mov_prores4s | MOV | ProRes 4444 |
| mkv_h264 | MKV | H.264 |
| mkv_h265 | MKV | H.265/HEVC |
| mkv_vp9 | MKV | VP9 |
| gif | GIF | - |
| Duration | Cost |
|---|---|
| Per second | $0.14 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/bria/fibo/video-upscaler with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Fibo Video Upscaler below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/bria/fibo/video-upscaler" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"video": "https://example.com/your-input.mp4",
"target_resolution": "2k",
"output_container_and_codec": "mp4_h264"
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("bria/fibo/video-upscaler", {
"video": "https://example.com/your-input.mp4",
"target_resolution": "2k",
"output_container_and_codec": "mp4_h264"
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"bria/fibo/video-upscaler",
{
"video": "https://example.com/your-input.mp4",
"target_resolution": "2k",
"output_container_and_codec": "mp4_h264"
}
)
print(output["outputs"][0]) # → URL of the generated outputFibo Video Upscaler is a Bria model for upscaling, exposed as a REST API on WaveSpeedAI. Bria Video Upscaler increases video resolution up to 8K with 2x or 4x upscaling. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/bria/bria-fibo-video-upscaler.
Fibo Video Upscaler starts at $0.14 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `video`, `output_container_and_codec`, `target_resolution`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/bria/bria-fibo-video-upscaler.
Average end-to-end generation time on WaveSpeedAI is around 219 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (Bria). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.