Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/knightpp/pwsb
Pipewire soundboard
https://github.com/knightpp/pwsb
audio pipewire rust soundboard
Last synced: about 1 month ago
JSON representation
Pipewire soundboard
- Host: GitHub
- URL: https://github.com/knightpp/pwsb
- Owner: knightpp
- License: apache-2.0
- Created: 2024-03-10T13:42:06.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-05-08T10:47:36.000Z (9 months ago)
- Last Synced: 2024-11-07T14:19:10.938Z (3 months ago)
- Topics: audio, pipewire, rust, soundboard
- Language: Rust
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# pwsb - pipewire sound board
I've never worked with audio before, so it was hard. But with some luck and persistence I managed
to finish this project 😮💨.## How it works
- create an output pipewire node
- if `target` is specified than set `target` property on the node
- depending on presence of the target node it will play sound to the default output device or
to the `target` node (for example discord).## How the progam is meant to be used
Run the CLI with two arguments: `file` and `target`. File is a path to some supported audio file.
Target is a name of a pipewire node, to get the name use Helvum, it is the label on top of every node.## Used resources
- [pipewire's examples folder](https://gitlab.freedesktop.org/pipewire/pipewire-rs/-/tree/main/pipewire/examples)
- [helvum](https://gitlab.freedesktop.org/pipewire/helvum) useful to see and rearrange nodes
- [pipewire tutorial](https://docs.pipewire.org/page_tutorial1.html). The tutorial is for C, but
some solutions are available in the examples folder in rust
- [symphonia](https://github.com/pdeljanov/Symphonia/blob/master/GETTING_STARTED.md)