oseg library for rendering live streams. Built for SeasonCast Studio
npm install oseg
This is a rendering engine for live broadcast
- Takes in inputs and outputs of mutiple video & graphic feeds
- Outputs a master video feed with rendered graphics
```
yarn install oseg
2. Get started by creating a new OSEG instance:
`
import OSEG from 'oseg';
const apiToken = 'YOUR_API_TOKEN';
const oseg = new OSEG(1920,1080, apiToken);
oseg.setupCanvas(canvas); // canvas is a HTMLCanvasElement that will display the output
``