chao faf16d266e update 1 mesiac pred
..
src faf16d266e update 1 mesiac pred
CHANGELOG.json faf16d266e update 1 mesiac pred
CHANGELOG.md faf16d266e update 1 mesiac pred
LICENSE faf16d266e update 1 mesiac pred
README.md faf16d266e update 1 mesiac pred
jest.config.js faf16d266e update 1 mesiac pred
package.json faf16d266e update 1 mesiac pred
tsconfig.build.json faf16d266e update 1 mesiac pred
tsconfig.json faf16d266e update 1 mesiac pred
tsconfig.test.json faf16d266e update 1 mesiac pred

README.md

@yume-chan/scrcpy-decoder-tinyh264

Decode and render H.264 streams using TinyH264, the old Android H.264 software decoder (now deprecated and removed), compiled into WebAssembly, and wrapped in Web Worker to prevent blocking the main thread.

The video stream will be decoded into YUV frames on CPU, then converted to RGB using a WebGL shader (using GPU). It's slow, but works on most browsers.

WARNING: The public API is UNSTABLE. If you have any questions, please open an issue.

Compatibility

Chrome Firefox Safari Performance Supported H.264 profile/level
57 52 11 Poor Baseline level 4

Usage

The bundler you use must support the new Worker(new URL('./worker.js', import.meta.url)) syntax. It's known that Webpack 5 works.

Limit profile/level

Because it only supports Baseline level 4 codec, but many newer devices default to higher profiles/levels, you can limit it by using the codecOptions option:

new ScrcpyOptions1_24({
    codecOptions: new CodecOptions({
        profile: TinyH264Decoder.maxProfile,
        level: TinyH264Decoder.maxLevel,
    })
})

However, it can fail on some very old devices that doesn't support even Baseline level 4 codec. You can retry without the codecOptions option if that happens.

Render the video

It draws frames onto decoder.element (a <canvas> element), you can insert it anywhere you want to display the video.

const decoder = new TinyH264Decoder();
document.body.appendChild(decoder.element);

videoPacketStream // from `@yume-chan/scrcpy`
    .pipeTo(decoder.writable)
    .catch(() => { });