Bria Fibo Video Upscaler
Playground
Try it 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.
Features
Bria Fibo Video Upscaler
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.
Why Choose This?
-
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.
Parameters
| 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) |
Output Format Options
| 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 | - |
How to Use
- Upload your video — provide the video you want to upscale.
- Select target resolution — choose 2K or 4K output.
- Choose output format — select your preferred container and codec.
- Run — submit and download your upscaled video.
Pricing
| Duration | Cost |
|---|---|
| Per second | $0.14 |
Examples
- 5s video → $0.70
- 10s video → $1.40
- 30s video → $4.20
Best Use Cases
- Content Remastering — Upscale old or low-resolution footage for modern displays.
- Social Media — Enhance video quality for higher engagement.
- Professional Production — Prepare footage for 4K delivery requirements.
- Archival Restoration — Improve quality of legacy video content.
- Marketing Materials — Create crisp, high-resolution promotional videos.
Pro Tips
- Upload the highest quality source available for best upscaling results.
- Use 2K for moderate enhancement with faster processing.
- Choose 4K for maximum detail on large displays or professional delivery.
- mp4_h264 offers best compatibility across devices and platforms.
- mov_prores4s provides highest quality for professional editing workflows.
- Avoid upscaling already heavily compressed videos — artifacts may be amplified.
Notes
- Only video is required; other parameters have defaults.
- Upscaling works best on clean source footage with minimal compression artifacts.
- Ensure uploaded video URLs are publicly accessible.
- Processing time depends on video length and target resolution.
Related Models
- Bria Fibo Video Background Remover — Remove video backgrounds.
- Bria Fibo Colorize — Apply color styles to images.
- Bria Fibo Restore — Restore old or damaged photos.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/bria/fibo/video-upscaler" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"target_resolution": "2k",
"output_container_and_codec": "mp4_h264"
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| video | string | Yes | - | Publicly accessible URL of the input video. Max duration 60 seconds. | |
| target_resolution | string | No | 2k | 2k, 4k | Target resolution: 2k = 2x upscaling, 4k = 4x upscaling. |
| output_container_and_codec | string | No | mp4_h264 | mp4_h264, mp4_h265, webm_vp9, mov_h265, mov_prores4s, mkv_h264, mkv_h265, mkv_vp9, gif | Output container and codec preset. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content. |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |