0.0.1 • Published 4 years ago

chromakey v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

chromakey

Minimum chroma key processing for your camera stream.

Install

npm i chromakey

Module is exported as ES Modules.

API

import { create } from "chromakey";

const ck = create($videoEl);

// getter
console.log(ck.targetColor, ck.targetThreshold);
document.body.append(ck.destination);

// setter
ck.setColor([50, 100, 150]);
ck.setColorByOffset(x, y);
ck.setThreshold(15);
ck.setBackgroundMedia($imgOrCanvasOrVideoEl);
ck.setBackgroundColor([100, 0, 100]);

ck.start();
ck.stop();

See also https://leader22.github.io/chromakey/