Getting Started
Installation
Install and initialize SDKs for Node.js and Python projects.
Getting Started
Install and initialize SDKs for Node.js and Python projects.
Requires Node.js 18+.
Use ESM or TypeScript for best DX.
GitHub: https://github.com/JsonChao/removebgvideo-node
npm install removebgvideo-nodeRequires Python 3.9+.
Recommended to install in a virtualenv.
GitHub: https://github.com/JsonChao/removebgvideo-python
pip install removebgvideo| Runtime | Snippet |
|---|---|
| Node.js | new RemoveBGVideoClient(process.env.REMOVEBGVIDEO_API_KEY) |
| Python | RemoveBGVideoClient(api_key=os.environ['REMOVEBGVIDEO_API_KEY']) |
import { RemoveBGVideoClient } from 'removebgvideo-node';
const client = new RemoveBGVideoClient(process.env.REMOVEBGVIDEO_API_KEY!);
# Python
from removebgvideo import RemoveBGVideoClient
client = RemoveBGVideoClient(api_key='YOUR_API_KEY')