|
|
1 éve | |
|---|---|---|
| .. | ||
| src | 1 éve | |
| CHANGELOG.json | 1 éve | |
| CHANGELOG.md | 1 éve | |
| LICENSE | 1 éve | |
| README.md | 1 éve | |
| jest.config.js | 1 éve | |
| package.json | 1 éve | |
| tsconfig.build.json | 1 éve | |
| tsconfig.json | 1 éve | |
| tsconfig.test.json | 1 éve | |
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(() => { });