https://github.com/haileys/mixlab
Digital audio/video workstation
https://github.com/haileys/mixlab
audio livestream rust video
Last synced: 3 months ago
JSON representation
Digital audio/video workstation
- Host: GitHub
- URL: https://github.com/haileys/mixlab
- Owner: haileys
- License: agpl-3.0
- Created: 2020-03-31T05:43:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-01T11:52:18.000Z (about 4 years ago)
- Last Synced: 2025-07-14T06:43:08.521Z (3 months ago)
- Topics: audio, livestream, rust, video
- Language: Rust
- Homepage:
- Size: 4.72 MB
- Stars: 123
- Watchers: 17
- Forks: 13
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mixlab
Digital audio/video workstation. AGPLv3.

## Building
Make sure you have wasm-pack installed first: `cargo install wasm-pack`
### Unices
``` sh-session
$ make [build] # build frontend and backend
$ make release # build frontend and backend in release mode
$ make check # check frontend and backend
$ make run # build frontend and run backend
```### Windows
1. Install Microsoft Visual C++
2. Install LLVM as per [the rust-bindgen documentation](https://rust-lang.github.io/rust-bindgen/print.html#windows). Do not install the Mingw64 version from MSYS2's `pacman`.
2. Install MSYS2 - a distribution of core GNU utilities for Windows. Required for dependencies that have unixy build systems with configure scripts and such.
https://www.msys2.org/
Mixlab also requires a few additional packages from pacman, MSYS2's package manager. In an MSYS2 bash session, run:
```sh-session
$ pacman -S make nasm
```3. Open "x64 Native Tools Command Prompt" from the Start Menu, and type:
```
> C:\msys64\msys2_shell.cmd -mingw64 -full-path
```A bash shell will appear. You will use this bash shell for the rest of the instructions and for building Mixlab.
4. Rename `/usr/bin/link.exe` to `/usr/bin/link2.exe`.
This is pretty gross but as far as I can tell seems to be required to prevent MSYS2's `link.exe` from clashing with MSVC's. See the "Gotchas" section of http://anadoxin.org/blog/bringing-visual-studio-compiler-into-msys2-environment.html for more information.
5. Set the `CC` environment variable to `cl`
```sh-session
$ export CC=cl
```Then run `make` as described in the Unices section above.
## Running
Running the `mixlab` binary starts an HTTP server on `localhost:8000` serving the web UI