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

Fibo Video Background Remover

bria /

Bria Video Background Remover removes the background from videos with support for transparency and custom background colors. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.

ai-remover
Input

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

Whether to preserve audio in the output video.

Idle

$0.14per run·~71 / $10

ExamplesView all

Related Models

README

Bria Fibo Video Background Remover

Bria Fibo Video Background Remover is an AI-powered video processing model that removes backgrounds from videos. Upload your video and choose a replacement background color — the model cleanly separates subjects from their surroundings with frame-by-frame consistency.

Why Choose This?

  • Clean background removal Precisely separates subjects from backgrounds across all video frames.

  • Multiple background colors Replace with transparent, solid colors (black, white, gray, red, green, blue, etc.).

  • Temporal consistency Maintains smooth, flicker-free results throughout the video.

  • Audio preservation Option to keep original audio track in the output.

  • Flexible output formats Export as WebM VP9 or other container/codec combinations.

Parameters

ParameterRequiredDescription
videoYesSource video for background removal (URL or upload)
background_colorNoReplacement color: Transparent, Black, White, Gray, Red, Green, Blue, Yellow, Cyan, Magenta
output_container_and_codecNoOutput format (see table below, default: webm_vp9)
preserve_audioNoKeep original audio in output video (default: enabled)

Output Format Options

OptionContainerCodecAlpha Support
webm_vp9WebMVP9Yes
mp4_h264MP4H.264No
mp4_h265MP4H.265/HEVCNo
mov_h265MOVH.265/HEVCPartial
mov_proresksMOVProRes 4444Yes
mkv_h264MKVH.264No
mkv_h265MKVH.265/HEVCNo
mkv_vp9MKVVP9Yes
gifGIF-Yes

Important: If you select "Transparent" as background_color, you must use a format that supports Alpha channel (webm_vp9, mov_proresks, mkv_vp9, or gif). Otherwise, the API will return a 422 error.

How to Use

  1. Upload your video — provide the video you want to process.
  2. Select background color — choose transparent or a solid color.
  3. Choose output format — select your preferred container and codec.
  4. Set audio preference — enable to keep original audio.
  5. Run — submit and download your processed video.

Pricing

DurationCost
Per second$0.14

Examples

  • 5s video → $0.70
  • 10s video → $1.40
  • 30s video → $4.20

Best Use Cases

  • Green Screen Replacement — Remove backgrounds for compositing in video editors.
  • Social Media Content — Create clean, distraction-free videos.
  • Product Videos — Isolate products on clean backgrounds.
  • Presentations — Extract subjects for professional video overlays.
  • Content Creation — Prepare footage for further editing and effects.

Pro Tips

  • For transparent background compositing, use webm_vp9 (web), mov_proresks (professional editing), or mkv_vp9.
  • Use gif for short clips with transparency that need wide compatibility.
  • mp4_h264 offers best compatibility but doesn't support transparency — use with solid colors only.
  • mov_proresks provides highest quality for professional video editing workflows.
  • Enable preserve_audio to keep voiceovers and sound effects.
  • High contrast between subject and background improves removal quality.

Notes

  • Only video is required; other parameters have defaults.
  • Transparent background requires Alpha-supported formats (webm_vp9, mov_proresks, mkv_vp9, gif).
  • Using Transparent with non-Alpha formats will result in API error.

Related Models

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

Fibo Video Background Remover API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/bria/fibo/video-background-remover 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 Background Remover below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/bria/fibo/video-background-remover" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "video": "https://example.com/your-input.mp4",
    "background_color": "Transparent",
    "output_container_and_codec": "webm_vp9",
    "preserve_audio": true
}'

# 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-background-remover", {
        "video": "https://example.com/your-input.mp4",
        "background_color": "Transparent",
        "output_container_and_codec": "webm_vp9",
        "preserve_audio": true
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "bria/fibo/video-background-remover",
    {
    "video": "https://example.com/your-input.mp4",
    "background_color": "Transparent",
    "output_container_and_codec": "webm_vp9",
    "preserve_audio": true
}
)

print(output["outputs"][0])  # → URL of the generated output

Fibo Video Background Remover API — Frequently asked questions

What is the Fibo Video Background Remover API?

Fibo Video Background Remover is a Bria model for object / watermark removal, exposed as a REST API on WaveSpeedAI. Bria Video Background Remover removes the background from videos with support for transparency and custom background colors. 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 Background Remover 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-background-remover.

How much does Fibo Video Background Remover cost per run?

Fibo Video Background Remover 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 Background Remover accept?

Key inputs: `video`, `background_color`, `output_container_and_codec`, `preserve_audio`. 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-background-remover.

How long does Fibo Video Background Remover take to generate?

Average end-to-end generation time on WaveSpeedAI is around 41 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 Background Remover 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.