The new native desktop client for yet another mediaserver stack.
- Entire UI written in Kotlin using Compose Multiplatform
With most of the code located in a common and a common-compose library - Material 3 Design
Loosely following official guidelines - No constant connection required
- Bundled mpv player (on windows) and a somewhat custom config
- Player controlled through json-ipc and reading stdout
So you can also use your own install with your own config if desired
Short answer
You don't.Long answer
There is no public instance for this.
You will have to build every part of the ecosystem yourself and run it on your own server.
Building is as simple as running one of these, assuming you have set your buildconfig correctly and whatnot.
# Windows
./gradlew clean packageReleaseMsi packageReleaseUberJarForCurrentOS
# Linux
./gradlew clean packageReleaseDeb packageReleaseRpm packageReleaseUberJarForCurrentOS
To my knowledge, compose-mp does not currently support cross compiling for desktop yet so you are going to have to run this on their respective OS.
You can also do so with github workflows. See the workflows directory in this repo.
Running is just ./gradlew run