|
|
hai 1 ano | |
|---|---|---|
| .. | ||
| src | hai 1 ano | |
| CHANGELOG.json | hai 1 ano | |
| CHANGELOG.md | hai 1 ano | |
| LICENSE | hai 1 ano | |
| README.md | hai 1 ano | |
| jest.config.js | hai 1 ano | |
| package.json | hai 1 ano | |
| tsconfig.build.json | hai 1 ano | |
| tsconfig.json | hai 1 ano | |
| tsconfig.test.json | hai 1 ano | |
Decode and render H.264 streams using the WebCodecs API.
It has no dependencies and high performance, but is only available on recent versions of Chrome.
WARNING: The public API is UNSTABLE. If you have any questions, please open an issue.
| Chrome | Firefox | Safari | Performance | Supported H.264 profile/level |
|---|---|---|---|---|
| 94 | No | No | High with hardware acceleration | High level 5 |
It draws frames onto decoder.element (a <canvas> element), you can insert it anywhere you want to display the video.
const decoder = new WebCodecsDecoder();
document.body.appendChild(decoder.element);
videoPacketStream // from `@yume-chan/scrcpy`
.pipeTo(decoder.writable)
.catch(() => { });