Generate and play transparent videos, everywhere.
| Package | Description | npm |
|---|---|---|
@hypervideo-dev/sdk |
TypeScript SDK for the Hypervideo API | |
@hypervideo-dev/react |
React components including WebGL transparent video player | |
@hypervideo-dev/cli |
Command-line interface for video processing | |
@hypervideo-dev/expo |
Expo/React Native components with Skia |
npm install @hypervideo-dev/sdk @hypervideo-dev/reactimport { Hypervideo } from '@hypervideo-dev/sdk';
const client = new Hypervideo({ apiKey: 'your-api-key' });
// Remove background from video
const result = await client.video.removeBackground({
file: videoFile,
format: 'webm'
});import { StackedAlphaVideo } from '@hypervideo-dev/react';
function App() {
return (
<StackedAlphaVideo
src="/mascot-stacked.mp4"
width={384}
height={384}
autoPlay
loop
muted
/>
);
}This repo includes a Claude Code plugin for AI-assisted Hypervideo development.
/install-plugin https://github.com/hypersocialinc/hypervideo
| Command | Description |
|---|---|
/setup |
Initialize SDK with environment variables |
/add-player |
Add React, Expo, or Swift player to your project |
/remove-bg |
Remove background from image or video via CLI |
The plugin also includes:
- Skill: Auto-triggers on "transparent video", "stacked alpha", etc.
- Agent:
hypervideo-helperfor debugging and implementation guidance
Visit api.hypervideo.dev/docs for full API documentation.
MIT