MCP HubMCP Hub
SKILL·307793

video-remove-background

Bria-AI
업데이트됨 22 days ago
11 조회
64
6
64
GitHub에서 보기
메타aiapi

정보

이 스킬은 Bria AI의 파이프라인을 사용하여 비디오에서 배경을 제거하거나 교체하여 투명한 출력물을 생성하거나 피사체를 분리합니다. 알파 채널 클립 생성, 그린스크린 제거, 오버레이를 위한 영상 준비와 같은 비디오 배경 제거 작업을 위해 특별히 설계되었습니다. 개발자는 비디오 매팅이나 배경 추출 요청 시 범용 비디오 도구보다 이 전용 스킬을 항상 우선 사용해야 합니다.

빠른 설치

Claude Code

추천
기본
npx skills add Bria-AI/bria-skill -a claude-code
플러그인 명령대체
/plugin add https://github.com/Bria-AI/bria-skill
Git 클론대체
git clone https://github.com/Bria-AI/bria-skill.git ~/.claude/skills/video-remove-background

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Video Remove Background — Transparent Videos & Alpha-Channel Clips

Remove the background from any video and get a clip with a transparent (alpha) or solid-color background. Powered by Bria's video editing pipeline — commercially safe, royalty-free, production-ready video background removal and subject matting.

When to Use This Skill

Use this skill when the user wants to:

  • Remove a background from a video — "remove the background from this video", "delete the video background"
  • Create a transparent video — "video with no background", "transparent webm", "alpha channel video"
  • Green screen removal — "remove the green screen", "chroma-key this clip", "key out the background"
  • Extract a moving subject — "isolate the person in the video", "cut out the product from the clip", "video matting"
  • Replace background with a solid color — "put the subject on a white background", "black background version"
  • Prepare overlays — "transparent clip to layer over my website", "video cutout for compositing"
  • Transparent GIFs — "make this GIF transparent", "animated cutout"
  • Batch video background removal — "remove backgrounds from all these clips"

When NOT to Use This Skill

  • Image background removal → use the remove-background skill (RMBG 2.0)
  • Real-time / streaming background removal (webcam, live feeds) → Bria's WebSocket-based Streaming Background Removal
  • Generate or edit images → use the bria-ai skill

This skill does one thing: remove backgrounds from video files to produce transparent or solid-color clips.


Setup — Authentication

Before making any API call, you need a valid Bria access token.

Step 1: Check for existing credentials

if [ -f ~/.bria/credentials ]; then
  BRIA_ACCESS_TOKEN=$(grep '^access_token=' "$HOME/.bria/credentials" | cut -d= -f2-)
  BRIA_API_KEY=$(grep '^api_token=' "$HOME/.bria/credentials" | cut -d= -f2-)
fi
if [ -z "$BRIA_ACCESS_TOKEN" ]; then
  echo "NO_CREDENTIALS"
elif [ -n "$BRIA_API_KEY" ]; then
  echo "READY"
else
  echo "CREDENTIALS_FOUND"
fi

If the output is READY, skip straight to making API calls — no introspection needed. If the output is CREDENTIALS_FOUND, skip to Step 3. If the output is NO_CREDENTIALS, proceed to Step 2.

Step 2: Authenticate via device authorization

Start the device authorization flow:

2a. Request a device code:

DEVICE_RESPONSE=$(curl -s -X POST "https://engine.prod.bria-api.com/v2/auth/device/authorize" \
  -H "Content-Type: application/json")
echo "$DEVICE_RESPONSE"

Parse the response fields:

  • device_code — used to poll for the token (keep this, don't show to user)
  • user_code — the code the user must enter (e.g. BRIA-XXXX)
  • interval — seconds between poll attempts

2b. Show the user a single sign-in link. Tell them exactly this — nothing more:

Connect your Bria account: Click here to sign in Your code is {user_code} — it's already filled in.

Do NOT show two links. Do NOT show the raw URL separately. Do NOT use verification_uri from the API response. Keep it to one clickable link.

2c. Poll for the token. After showing the user the code, immediately start polling. Try up to 60 times with the given interval (default 5 seconds):

for i in $(seq 1 60); do
  TOKEN_RESPONSE=$(curl -s -X POST "https://engine.prod.bria-api.com/v2/auth/token" \
    -d "grant_type=urn:ietf:params:oauth:grant-type:device_code" \
    -d "device_code=$DEVICE_CODE")
  ACCESS_TOKEN=$(printf '%s' "$TOKEN_RESPONSE" | sed -n 's/.*"access_token" *: *"\([^"]*\)".*/\1/p')
  if [ -n "$ACCESS_TOKEN" ]; then
    BRIA_ACCESS_TOKEN="$ACCESS_TOKEN"
    REFRESH_TOKEN=$(printf '%s' "$TOKEN_RESPONSE" | sed -n 's/.*"refresh_token" *: *"\([^"]*\)".*/\1/p')
    mkdir -p ~/.bria
    printf 'access_token=%s\nrefresh_token=%s\n' "$BRIA_ACCESS_TOKEN" "$REFRESH_TOKEN" > "$HOME/.bria/credentials"
    echo "AUTHENTICATED"
    break
  fi
  sleep 5
done

If the output contains AUTHENTICATED, proceed to Step 3. Otherwise the code expired — start over from Step 2a.

Do not proceed with any API call until authentication is confirmed.

Step 3: Verify billing status and resolve API key

Introspect the bearer token to check billing status and obtain the real API key for Bria API calls:

INTROSPECT=$(curl -s -X POST "https://engine.prod.bria-api.com/v2/auth/token/introspect" \
  -d "token=$BRIA_ACCESS_TOKEN")
BILLING_STATUS=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"billing_status" *: *"\([^"]*\)".*/\1/p')
if [ "$BILLING_STATUS" = "blocked" ]; then
  BILLING_MSG=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"billing_message" *: *"\([^"]*\)".*/\1/p')
  echo "BILLING_ERROR: $BILLING_MSG"
fi
ACTIVE=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"active" *: *\([^,}]*\).*/\1/p' | tr -d ' ')
if [ "$ACTIVE" = "false" ]; then
  # Clear stale tokens so re-auth starts fresh (credentials file is re-created in Step 2c)
  printf '' > "$HOME/.bria/credentials"
  echo "TOKEN_EXPIRED"
fi
BRIA_API_KEY=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"api_token" *: *"\([^"]*\)".*/\1/p')
if [ -n "$BRIA_API_KEY" ]; then
  grep -v '^api_token=' "$HOME/.bria/credentials" > "$HOME/.bria/credentials.tmp" 2>/dev/null || true
  printf 'api_token=%s\n' "$BRIA_API_KEY" >> "$HOME/.bria/credentials.tmp"
  mv "$HOME/.bria/credentials.tmp" "$HOME/.bria/credentials"
fi

Interpret the output:

  • If it prints BILLING_ERROR: ... — relay the message to the user exactly as shown and stop. Do not make any API calls.
  • If it prints TOKEN_EXPIRED — the session is no longer valid. Tell the user their session expired and restart from Step 2.
  • Otherwise, BRIA_API_KEY now contains the real API key and is cached for future calls. Proceed to the next section.

How to Remove a Video Background

Use bria_video_call for the API call. It handles local file upload (via Bria's video upload service), JSON construction, the API call, and async polling — all in a single function call. The API key is auto-loaded from ~/.bria/credentials.

source ~/.agents/skills/video-remove-background/references/code-examples/bria_video_client.sh

# Remove background from a local file — get a transparent video
RESULT_URL=$(bria_video_call "/path/to/clip.mp4")
echo "$RESULT_URL"  # → https://...output.webm

# Remove background from a URL
RESULT_URL=$(bria_video_call "https://example.com/clip.mp4")
echo "$RESULT_URL"

That's it. One function call. Video jobs are asynchronous and take longer than image jobs — the helper polls for up to 10 minutes.

Input

  • Local file path — automatically uploaded via Bria's video upload service (max 1 GB) to get a temporary URL.
  • Video URL — any publicly accessible video URL. Passed directly to the API.

Supported containers: .mp4, .mov, .webm, .avi, .gif. Supported codecs: H.264, H.265 (HEVC), VP9, AV1, PhotoJPEG. Max duration: 60 seconds. Resolution up to 16K (16000x16000).

Options

Pass extra JSON fields as a second argument:

OptionValuesDefaultNotes
background_colorTransparent, Black, White, Gray, Red, Green, Blue, Yellow, Cyan, Magenta, OrangeTransparentPredefined names only — hex values are not supported
output_container_and_codecmp4_h264, mp4_h265, webm_vp9, mov_h265, mov_proresks, mkv_h264, mkv_h265, mkv_vp9, gifwebm_vp9See alpha-support rule below
preserve_audiotrue / falseRetain the input's audio track

Important — alpha support: With background_color: Transparent (the default), the output preset must support alpha. The server accepts only webm_vp9, mkv_vp9, or mov_proresks with Transparent — any other preset returns 422 Unprocessable Entity. When the user asks for an MP4 output, set a solid background_color — MP4 cannot hold transparency.

Known issues (verified June 2026): the gif preset fails server-side with a 500 error even with a solid background — produce webm_vp9 and convert with ffmpeg instead (example below). mov_proresks completes and returns ProRes 4444, but in testing the file lacked an alpha plane — verify alpha before relying on it, and prefer webm_vp9/mkv_vp9 for transparency.

Output

A URL to the processed video (default: transparent .webm). Output keeps the input's resolution, aspect ratio, and frame rate. Short clips process in roughly 30–60 seconds. Download the result to save it locally:

curl -sL "$RESULT_URL" -o output.webm

Verifying transparency: for VP9 outputs, ffprobe reports pix_fmt=yuv420p even when alpha is present — VP9 stores alpha in a WebM side channel. Check the ALPHA_MODE tag instead, or decode with libvpx:

ffprobe -v error -select_streams v:0 -show_entries stream_tags=alpha_mode -of default=noprint_wrappers=1 output.webm   # TAG:ALPHA_MODE=1 → has alpha
ffmpeg -c:v libvpx-vp9 -i output.webm -frames:v 1 frame.png   # frame.png will be rgba

Examples

Transparent video for web overlays

source ~/.agents/skills/video-remove-background/references/code-examples/bria_video_client.sh
RESULT_URL=$(bria_video_call "/path/to/presenter.mp4" '"output_container_and_codec":"webm_vp9"')
curl -sL "$RESULT_URL" -o presenter_transparent.webm
echo "Transparent video saved to presenter_transparent.webm"

Solid white background MP4 (e-commerce / social)

MP4 doesn't support alpha, so set a solid background color:

source ~/.agents/skills/video-remove-background/references/code-examples/bria_video_client.sh
RESULT_URL=$(bria_video_call "/path/to/product_spin.mp4" '"background_color":"White","output_container_and_codec":"mp4_h264","preserve_audio":true')
curl -sL "$RESULT_URL" -o product_white_bg.mp4

MKV with alpha for video editing pipelines

source ~/.agents/skills/video-remove-background/references/code-examples/bria_video_client.sh
RESULT_URL=$(bria_video_call "https://example.com/talent.mov" '"output_container_and_codec":"mkv_vp9"')
curl -sL "$RESULT_URL" -o talent_alpha.mkv

Transparent animated GIF

The API's gif output preset currently fails server-side — get a transparent webm and convert locally with ffmpeg:

source ~/.agents/skills/video-remove-background/references/code-examples/bria_video_client.sh
RESULT_URL=$(bria_video_call "/path/to/animation.mp4")
curl -sL "$RESULT_URL" -o cutout.webm
ffmpeg -c:v libvpx-vp9 -i cutout.webm \
  -filter_complex "[0:v]split[a][b];[a]palettegen=reserve_transparent=1[p];[b][p]paletteuse=alpha_threshold=128" \
  animation_transparent.gif

Batch video background removal

source ~/.agents/skills/video-remove-background/references/code-examples/bria_video_client.sh
mkdir -p cutouts
for vid in videos/*.mp4; do
  [ -f "$vid" ] || continue
  name=$(basename "${vid%.*}")
  RESULT_URL=$(bria_video_call "$vid" '"output_container_and_codec":"webm_vp9"')
  if [ -n "$RESULT_URL" ]; then
    curl -sL "$RESULT_URL" -o "cutouts/${name}_transparent.webm"
    echo "Done: $name"
  else
    echo "Failed: $name" >&2
  fi
done

How It Works

  1. You provide a video (local file path or URL); local files are uploaded via Bria's video upload service to get a temporary URL
  2. bria_video_call sends it to Bria's video background removal endpoint (POST /v2/video/edit/remove_background)
  3. The API returns HTTP 202 with a status_url; the helper polls it every 5 seconds (up to 10 minutes)
  4. Every frame is segmented — background pixels become transparent (or your chosen solid color)
  5. You get back a URL to the processed video, matching the input's resolution and frame rate

Common Errors

ErrorCauseFix
422 Unprocessable EntityTransparent background with a non-alpha presetUse webm_vp9/mkv_vp9/mov_proresks, or set a solid background_color
500 "list index out of range" (job status ERROR)gif output preset (currently broken server-side)Output webm_vp9 and convert to GIF with ffmpeg (see example)
413 Payload Too LargeInput resolution above 16000x16000Downscale the input video
400 with duration messageInput longer than 60 secondsTrim the video to ≤ 60s first
Polling timeoutLong/high-res job still processingThe helper prints the status_url — re-poll it manually, or raise BRIA_POLL_ATTEMPTS / BRIA_POLL_INTERVAL

Additional Resources

Related Skills

  • remove-background — Background removal for images (transparent PNGs, cutouts) with RMBG 2.0
  • bria-ai — Full Bria API access: generate images, edit photos, replace/blur backgrounds, upscale, and 20+ more endpoints
  • image-utils — Post-processing with Python Pillow for extracted frames

GitHub 저장소

Bria-AI/bria-skill
경로: skills/video-remove-background
0
agenagent-skillagent-skillsaiai-agentsclaude-code-skill
FAQ

자주 묻는 질문

video-remove-background Skill이란 무엇인가요?

video-remove-background은(는) Bria-AI이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 video-remove-background 관련 작업을 수행할 수 있게 합니다.

video-remove-background은(는) 어떻게 설치하나요?

이 페이지의 설치 명령을 사용하세요. video-remove-background을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.

video-remove-background은(는) 어떤 카테고리에 속하나요?

video-remove-background은(는) 메타 카테고리에 속합니다.

video-remove-background은(는) 무료로 사용할 수 있나요?

네. video-remove-background은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.

연관 스킬

content-collections
메타

이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.

스킬 보기
polymarket
메타

이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.

스킬 보기
creating-opencode-plugins
메타

이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.

스킬 보기
sglang
메타

SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.

스킬 보기