Vidu Q3 और Q3 Pro मॉडल पर 50% छूट · केवल WaveSpeedAI | 20 मई – 2 जून
Home/Explore/Bria/Fibo/Video Upscaler

Fibo Video Upscaler

bria /

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.

upscaler
Input

Drag & drop करें या upload के लिए click करें

Idle

$0.14per run·~71 / $10

ExamplesView all

Related Models

README

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

ParameterRequiredDescription
videoYesSource video to upscale (URL or upload)
target_resolutionNoOutput resolution: 2k (default), 4k
output_container_and_codecNoOutput format (see table below, default: mp4_h264)

Output Format Options

OptionContainerCodec
webm_vp9WebMVP9
mp4_h264MP4H.264
mp4_h265MP4H.265/HEVC
mov_h265MOVH.265/HEVC
mov_prores4sMOVProRes 4444
mkv_h264MKVH.264
mkv_h265MKVH.265/HEVC
mkv_vp9MKVVP9
gifGIF-

How to Use

  1. Upload your video — provide the video you want to upscale.
  2. Select target resolution — choose 2K or 4K output.
  3. Choose output format — select your preferred container and codec.
  4. Run — submit and download your upscaled video.

Pricing

DurationCost
Per second$0.14

Billing Rules

  • Total cost = $0.14 × video duration (in seconds)

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

  • Maximum video length is 30 seconds. Longer videos will return an error.
  • 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

Accessibility:This website uses AI models provided by third parties.

Fibo Video Upscaler API — Quick start

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.

HTTP example
# 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].
Node.js example
// 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
Python example
# 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 output

Fibo Video Upscaler API — Frequently asked questions

What is the Fibo Video Upscaler API?

Fibo 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.

How do I call the Fibo Video Upscaler API?

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.

How much does Fibo Video Upscaler cost per run?

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.

What inputs does Fibo Video Upscaler accept?

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.

How long does Fibo Video Upscaler take to generate?

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.

Can I use Fibo Video Upscaler outputs commercially?

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.