Stremio shell using WebView2/mpv, written in Rust
Find a file
Vladimir Borisov 0a08fed2cb
Some checks failed
Continuous integration / test (push) Has been cancelled
Multi architecture descriptors
2025-12-05 15:44:01 +02:00
.github/workflows
bin
images
mpv-arm64
mpv-x64
setup
src Check for architecture specific updates 2025-11-27 16:35:40 +02:00
.gitignore
build.ps1
build.rs Check for architecture specific updates 2025-11-27 16:35:40 +02:00
Cargo.lock Bump version 5.0.15 2025-11-27 18:12:31 +02:00
Cargo.toml Bump version 5.0.15 2025-11-27 18:12:31 +02:00
generate_descriptor.js Multi architecture descriptors 2025-12-05 15:44:01 +02:00
libmpv-2_arm64.zip
libmpv-2_x64.zip Fix libmpv 2025-11-27 18:12:02 +02:00
README.md
rust-toolchain.toml
server.js Update server.js to v4.20.15 2025-11-27 15:50:34 +02:00
upload.ps1

Stremio shell: new gen

A Windows-only shell using WebView2 and MPV

Goals:

  • Performance
  • Reliability
  • Easy to ship

In all three, this architecture excels the Qt-based shell: it is about 2-5x more efficient depending on the use case, as it allows MPV to render directly in the window through it's optimal video output rather than using libmpv to integrate with Qt.

This is due to Qt having a complex rendering pipeline involving ANGLE and multiple levels of composing and drawing to textures, which inhibits full HW acceleration.

Meanwhile in this setup MPV uses whichever pipeline it considers to be optimal (like the mpv desktop app), which is normally d3d11, allowing full HW acceleration.

For web rendering, we use the native WebView2, which is Chromium based but shipped as a part of Windows 10: therefore we do not need to ship our own "distribution" of Chromium.

Finally, this should be a lot more reliable as it uses a much simpler and more native overall architecture.