An open API service indexing awesome lists of open source software.

https://github.com/replicate/green-screen-creator

Track an object in a video and add a green screen to the background.
https://github.com/replicate/green-screen-creator

Last synced: 11 months ago
JSON representation

Track an object in a video and add a green screen to the background.

Awesome Lists containing this project

README

          

# Green Screen Creator

Track objects in videos and add a green screen to the background.

Powered by Meta's [Segment Anything Model (SAM)](https://replicate.com/meta/sam-2-video) on Replicate.

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```