mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-09-20 14:13:32 +00:00
Compare commits
100
Commits
3ca6ba8f48
..
v1.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
adfc0f25c4 | ||
|
|
572aa33c95 | ||
|
|
3850a9ce10 | ||
|
|
b7dc54c2cb | ||
|
|
0357c239d5 | ||
|
|
cb1bd42f83 | ||
|
|
113eb38767 | ||
|
|
ab68648ef6 | ||
|
|
e10b6f1449 | ||
|
|
ede5028d35 | ||
|
|
f721e4612a | ||
|
|
ef9125024c | ||
|
|
12c70f0edb | ||
|
|
eae455f0b8 | ||
|
|
e0a55dffa6 | ||
|
|
6a755ad068 | ||
|
|
7809a8c9ff | ||
|
|
76a5f069ab | ||
|
|
ae84b345a4 | ||
|
|
cdd58a04ed | ||
|
|
271955c777 | ||
|
|
5b475d1f07 | ||
|
|
5509b80f3e | ||
|
|
2a31865822 | ||
|
|
258467d5bc | ||
|
|
51ab5eacbc | ||
|
|
1957a5e2fd | ||
|
|
5f852343da | ||
|
|
aee48c8f8d | ||
|
|
c63b220d92 | ||
|
|
a4708f1812 | ||
|
|
3754121ab5 | ||
|
|
a665939137 | ||
|
|
974fdc9411 | ||
|
|
9a1107fb41 | ||
|
|
ad2c15f9e3 | ||
|
|
6d66b57d1b | ||
|
|
869b67738c | ||
|
|
af3e19d794 | ||
|
|
b42498d188 | ||
|
|
60975110da | ||
|
|
05f243b322 | ||
|
|
0188cac476 | ||
|
|
3e93ba14e1 | ||
|
|
939dbea12b | ||
|
|
a4d3111c6d | ||
|
|
9053056dfa | ||
|
|
e9e3f67735 | ||
|
|
9238e6563b | ||
|
|
939b01b587 | ||
|
|
489878c813 | ||
|
|
c1c1bfd487 | ||
|
|
2028a728e0 | ||
|
|
e627e71cf6 | ||
|
|
dfe7a7e971 | ||
|
|
0535744b30 | ||
|
|
3170e9f30a | ||
|
|
7ddd2c0dab | ||
|
|
8590dcceae | ||
|
|
fb6714aeee | ||
|
|
34886e44a6 | ||
|
|
ede04dd3f8 | ||
|
|
ad892dda29 | ||
|
|
3a02e9991c | ||
|
|
5d9d20417b | ||
|
|
d1994d7226 | ||
|
|
b526d67d2f | ||
|
|
c641ec4f31 | ||
|
|
5bce45c97f | ||
|
|
adfdf7db69 | ||
|
|
7a7e0f741a | ||
|
|
d86cd6c5d3 | ||
|
|
61ba71d38e | ||
|
|
7116ccf487 | ||
|
|
654ef0d973 | ||
|
|
e9756b0681 | ||
|
|
f72fe588e3 | ||
|
|
53533c35ef | ||
|
|
382ddb0ff2 | ||
|
|
714f81ab34 | ||
|
|
3c028972fe | ||
|
|
7e3ff23156 | ||
|
|
09cec44a5b | ||
|
|
ead17d26a9 | ||
|
|
dfa1cfbb15 | ||
|
|
a70c991711 | ||
|
|
8c0704ce57 | ||
|
|
00196bfe7f | ||
|
|
428fb4064d | ||
|
|
e2b003be31 | ||
|
|
79176432de | ||
|
|
9e0a307106 | ||
|
|
428565594d | ||
|
|
1d0e3036e9 | ||
|
|
b31f4c8c45 | ||
|
|
84b6f8ce20 | ||
|
|
c797b204a2 | ||
|
|
529d73aa83 | ||
|
|
faa29d8805 | ||
|
|
c98bc997c3 |
@@ -0,0 +1,140 @@
|
||||
name: Release archive
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag:
|
||||
description: 'Tag to attach assets to (e.g. v1.0.0)'
|
||||
required: false
|
||||
|
||||
jobs:
|
||||
build-and-release:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Install apt deps (jq/zip + dev-libs)
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y \
|
||||
zip jq \
|
||||
libpipewire-0.3-dev \
|
||||
libclang-dev \
|
||||
libasound2-dev
|
||||
|
||||
- name: Determine tag to use
|
||||
id: tag
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
# приоритет 1: входной параметр workflow_dispatch
|
||||
INPUT_TAG="${{ github.event.inputs.tag || '' }}"
|
||||
if [ -n "$INPUT_TAG" ]; then
|
||||
echo "Using input tag: $INPUT_TAG"
|
||||
echo "tag=$INPUT_TAG" >> $GITHUB_OUTPUT
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# приоритет 2: если запущено событием release
|
||||
EVENT_TAG="${{ github.event.release.tag_name || '' }}"
|
||||
if [ -n "$EVENT_TAG" ]; then
|
||||
echo "Using event tag: $EVENT_TAG"
|
||||
echo "tag=$EVENT_TAG" >> $GITHUB_OUTPUT
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# приоритет 3: если GITHUB_REF — refs/tags/...
|
||||
if [[ "${GITHUB_REF:-}" =~ ^refs/tags/(.+)$ ]]; then
|
||||
echo "Using GITHUB_REF tag: ${BASH_REMATCH[1]}"
|
||||
echo "tag=${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# приоритет 4: пробуем получить последний релиз через API
|
||||
echo "No tag in input/event/GITHUB_REF — querying latest release via API..."
|
||||
LATEST_JSON=$(curl -sSf -H "Authorization: Bearer $GITHUB_TOKEN" -H "Accept: application/vnd.github+json" "https://api.github.com/repos/${{ github.repository }}/releases/latest" || true)
|
||||
TAG_NAME=$(echo "$LATEST_JSON" | jq -r '.tag_name // empty')
|
||||
if [ -n "$TAG_NAME" ]; then
|
||||
echo "Found latest release tag: $TAG_NAME"
|
||||
echo "tag=$TAG_NAME" >> $GITHUB_OUTPUT
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "No tag found"
|
||||
echo "tag=" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Fail if no tag determined
|
||||
if: ${{ steps.tag.outputs.tag == '' }}
|
||||
run: |
|
||||
echo "ERROR: No tag determined. Provide a tag when running manually or ensure a release exists."
|
||||
exit 1
|
||||
|
||||
- name: Checkout code at tag
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ steps.tag.outputs.tag || github.ref }}
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Rust toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: Extract all binary names
|
||||
id: cargo-meta
|
||||
run: |
|
||||
set -euo pipefail
|
||||
BIN_NAMES=$(cargo metadata --no-deps --format-version 1 \
|
||||
| jq -r '.packages[0].targets[] | select(.kind[] | contains("bin")) | .name')
|
||||
# сохраним построчно в выход
|
||||
echo "bin_names<<EOF" >> $GITHUB_OUTPUT
|
||||
echo "$BIN_NAMES" >> $GITHUB_OUTPUT
|
||||
echo "EOF" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Build all release binaries
|
||||
run: cargo build --release --locked
|
||||
|
||||
- name: Package all binaries into one archive
|
||||
shell: bash
|
||||
run: |
|
||||
set -euo pipefail
|
||||
TAG="${{ steps.tag.outputs.tag }}"
|
||||
ARCHIVE_NAME="pwsp-${TAG}-linux-x64.zip"
|
||||
echo "Creating archive: $ARCHIVE_NAME"
|
||||
|
||||
# читаем построчно список бинарников и формируем массив файлов
|
||||
FILES=()
|
||||
while IFS= read -r BIN; do
|
||||
[ -z "$BIN" ] && continue
|
||||
FILES+=("target/release/$BIN")
|
||||
done <<< "${{ steps.cargo-meta.outputs.bin_names }}"
|
||||
|
||||
if [ "${#FILES[@]}" -eq 0 ]; then
|
||||
echo "Error: no binaries were discovered via cargo metadata." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# проверим, что все бинарники действительно есть
|
||||
for f in "${FILES[@]}"; do
|
||||
if [ ! -f "$f" ]; then
|
||||
echo "Error: expected binary not found: $f" >&2
|
||||
exit 1
|
||||
fi
|
||||
echo "Will add: $f"
|
||||
done
|
||||
|
||||
# создаём архив с бинарниками внутри как просто pwsp-gui, pwsp-daemon, pwsp-cli
|
||||
zip -j "$ARCHIVE_NAME" "${FILES[@]}"
|
||||
|
||||
- name: Upload release archive
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
tag_name: ${{ steps.tag.outputs.tag }}
|
||||
files: |
|
||||
pwsp-*.zip
|
||||
@@ -0,0 +1,102 @@
|
||||
name: Release deb
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag:
|
||||
description: 'Tag to attach assets to (e.g. v1.0.0)'
|
||||
required: false
|
||||
|
||||
jobs:
|
||||
build-and-release:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Install apt deps (jq/zip + dev-libs)
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y \
|
||||
zip jq \
|
||||
libpipewire-0.3-dev \
|
||||
libclang-dev \
|
||||
libasound2-dev
|
||||
|
||||
- name: Determine tag to use
|
||||
id: tag
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
INPUT_TAG="${{ github.event.inputs.tag || '' }}"
|
||||
if [ -n "$INPUT_TAG" ]; then
|
||||
echo "Using input tag: $INPUT_TAG"
|
||||
echo "tag=$INPUT_TAG" >> $GITHUB_OUTPUT
|
||||
exit 0
|
||||
fi
|
||||
|
||||
EVENT_TAG="${{ github.event.release.tag_name || '' }}"
|
||||
if [ -n "$EVENT_TAG" ]; then
|
||||
echo "Using event tag: $EVENT_TAG"
|
||||
echo "tag=$EVENT_TAG" >> $GITHUB_OUTPUT
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ "${GITHUB_REF:-}" =~ ^refs/tags/(.+)$ ]]; then
|
||||
echo "Using GITHUB_REF tag: ${BASH_REMATCH[1]}"
|
||||
echo "tag=${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "No tag in input/event/GITHUB_REF — querying latest release via API..."
|
||||
LATEST_JSON=$(curl -sSf -H "Authorization: Bearer $GITHUB_TOKEN" -H "Accept: application/vnd.github+json" "https://api.github.com/repos/${{ github.repository }}/releases/latest" || true)
|
||||
TAG_NAME=$(echo "$LATEST_JSON" | jq -r '.tag_name // empty')
|
||||
if [ -n "$TAG_NAME" ]; then
|
||||
echo "Found latest release tag: $TAG_NAME"
|
||||
echo "tag=$TAG_NAME" >> $GITHUB_OUTPUT
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "No tag found"
|
||||
echo "tag=" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Fail if no tag determined
|
||||
if: ${{ steps.tag.outputs.tag == '' }}
|
||||
run: |
|
||||
echo "ERROR: No tag determined. Provide a tag when running manually or ensure a release exists."
|
||||
exit 1
|
||||
|
||||
- name: Checkout code at tag
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ steps.tag.outputs.tag || github.ref }}
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Rust toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: Build all release binaries
|
||||
run: cargo build --release --locked
|
||||
|
||||
- name: Install cargo-deb and create .deb
|
||||
shell: bash
|
||||
run: |
|
||||
set -euo pipefail
|
||||
cargo install --locked cargo-deb
|
||||
export PATH="$HOME/.cargo/bin:$PATH"
|
||||
|
||||
cargo-deb
|
||||
|
||||
- name: Upload .deb(s) to release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
tag_name: ${{ steps.tag.outputs.tag }}
|
||||
files: |
|
||||
target/debian/*.deb
|
||||
@@ -0,0 +1,2 @@
|
||||
/target
|
||||
.idea
|
||||
Generated
+4606
File diff suppressed because it is too large
Load Diff
+60
@@ -0,0 +1,60 @@
|
||||
[package]
|
||||
name = "pwsp"
|
||||
version = "1.1.1"
|
||||
edition = "2024"
|
||||
authors = ["arabian"]
|
||||
description = "PWSP lets you play audio files through your microphone. Has both CLI and GUI clients."
|
||||
readme = "README.md"
|
||||
homepage = "https://pwsp.arabianq.ru"
|
||||
repository = "https://github.com/arabianq/pipewire-soundpad"
|
||||
license = "MIT"
|
||||
keywords = ["soundpad", "pipewire", "linux", "cli", "gui"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.48.0", features = ["full"] }
|
||||
futures = { version = "0.3.31", features = ["thread-pool"] }
|
||||
async-trait = "0.1.89"
|
||||
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.145"
|
||||
|
||||
clap = { version = "4.5.51", default-features = false, features = ["std", "suggestions", "help", "usage", "error-context", "derive"] }
|
||||
dirs = "6.0.0"
|
||||
|
||||
rodio = { version = "0.21.1", default-features = false, features = ["symphonia-all", "playback"] }
|
||||
pipewire = "0.9.2"
|
||||
rfd = "0.15.4"
|
||||
|
||||
egui = { version = "0.33.0", default-features = false, features = ["default_fonts", "rayon"] }
|
||||
eframe = { version = "0.33.0", default-features = false, features = ["default_fonts", "glow", "x11", "wayland"] }
|
||||
egui_material_icons = "0.5.0"
|
||||
|
||||
[[bin]]
|
||||
name = "pwsp-daemon"
|
||||
path = "src/bin/daemon.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "pwsp-cli"
|
||||
path = "src/bin/cli.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "pwsp-gui"
|
||||
path = "src/main.rs"
|
||||
|
||||
[profile.release]
|
||||
strip = true
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
opt-level = "z"
|
||||
panic = "abort"
|
||||
|
||||
[package.metadata.deb]
|
||||
assets = [
|
||||
["target/release/pwsp-daemon", "usr/bin/", "755"],
|
||||
["target/release/pwsp-cli", "usr/bin/", "755"],
|
||||
["target/release/pwsp-gui", "usr/bin/", "755"],
|
||||
["assets/pwsp-gui.desktop", "usr/share/applications/pwsp.desktop", "644"],
|
||||
["assets/icon.png", "usr/share/icons/hicolor/256x256/apps/pwsp.png", "644"],
|
||||
["assets/pwsp-daemon.service", "usr/lib/systemd/user/pwsp-daemon.service", "644"],
|
||||
]
|
||||
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 Tarasov Alexander
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -0,0 +1,185 @@
|
||||
# **🎵 Pipewire Soundpad (PWSP)**
|
||||
|
||||
**PipeWire Soundpad (PWSP)** is a simple yet powerful **soundboard application** written in **Rust**. It provides a
|
||||
user-friendly graphical interface for **managing and playing audio files, directing their output directly to the virtual
|
||||
microphone.** This makes it an ideal tool for gamers, streamers, and anyone looking to inject sound effects into voice
|
||||
chats on platforms like **Discord, Zoom, or Teamspeak**.
|
||||
|
||||

|
||||
|
||||
# **🌟 Key Features**
|
||||
|
||||
* **Multi-Format Support**: Play audio files in popular formats, including _**mp3**_, _**wav**_, _**ogg**_, _**flac**_,
|
||||
_**mp4**_, and _**aac**_.
|
||||
* **Virtual Microphone Output**: The application routes audio through a virtual device created by PipeWire, allowing
|
||||
other users to hear the sounds as if you were speaking into your microphone.
|
||||
* **Modern and Clean GUI**: The interface is built with the [egui](https://egui.rs) library, ensuring an intuitive and
|
||||
responsive user experience.
|
||||
* **Sound Collection Management**: Easily add and remove directories containing your audio files. The application scans
|
||||
these folders and displays all supported files for quick access.
|
||||
* **Quick Search**: Use the built-in search bar to instantly find any sound file within your library.
|
||||
* **Detailed Playback Controls**:
|
||||
* **Play/Pause button**.
|
||||
* **Volume slider** for individual sound adjustment.
|
||||
* **Position slider** to fast-forward or rewind the audio.
|
||||
* **Persistent Configuration**: The list of added directories and your selected audio output device are saved
|
||||
automatically, so you won't need to reconfigure them every time you launch the application.
|
||||
|
||||
# **⚙️ How It Works**
|
||||
|
||||
PWSP is designed with a clear separation of concerns, operating through a client-server architecture. It consists of
|
||||
three main components:
|
||||
|
||||
* **pwsp-daemon**: This is the core of the application. It runs silently in the background, managing all the
|
||||
heavy-lifting tasks. The daemon is responsible for:
|
||||
* Creating and managing virtual audio devices.
|
||||
* Linking these devices within the PipeWire graph.
|
||||
* Handling all audio playback.
|
||||
* **pwsp-gui**: This is the graphical user interface. It acts as a client that communicates with pwsp-daemon via a *
|
||||
*UnixSocket**. This is how you interact with your sound collection, control playback, and configure settings.
|
||||
* **pwsp-cli**: This is the command-line interface, also acting as a client. It provides a way to control the daemon
|
||||
without a GUI, allowing for scripting or quick command-based actions.
|
||||
|
||||
# **🚀 Installation**
|
||||
|
||||
## **Pre-built Packages**
|
||||
|
||||
You can download pre-built binaries, .deb and .rpm packages from
|
||||
the [releases page](https://github.com/arabianq/pipewire-soundpad/releases).
|
||||
|
||||
## **Fedora Linux**
|
||||
|
||||
If you're using Fedora, you can install PWSP from a dedicated repository using DNF.
|
||||
|
||||
Add the repository:
|
||||
|
||||
```bash
|
||||
sudo dnf copr enable arabianq/pwsp
|
||||
```
|
||||
|
||||
Update cache:
|
||||
|
||||
```bash
|
||||
sudo dnf makecache
|
||||
```
|
||||
|
||||
Install PWSP:
|
||||
|
||||
```bash
|
||||
sudo dnf install pwsp
|
||||
```
|
||||
|
||||
## **Arch Linux**
|
||||
There is pwsp package in AUR.
|
||||
You can install it using yay, paru or any other AUR helper.
|
||||
```bash
|
||||
paru pwsp
|
||||
```
|
||||
|
||||
## **Installing using cargo**
|
||||
|
||||
```bash
|
||||
cargo install pwsp
|
||||
```
|
||||
|
||||
## **Building from source**
|
||||
|
||||
#### **Requirements**
|
||||
|
||||
* **Rust**: Install [Rust](https://www.rust-lang.org/tools/install) (using rustup is recommended).
|
||||
* **PipeWire**: Ensure that [PipeWire](https://pipewire.org/) is installed and running on your system.
|
||||
|
||||
#### **Build Instructions**
|
||||
|
||||
Clone the repository:
|
||||
|
||||
```bash
|
||||
git clone https://github.com/arabianq/pipewire-soundpad.git
|
||||
cd pipewire-soundpad
|
||||
```
|
||||
|
||||
Build the project:
|
||||
|
||||
```bash
|
||||
cargo build --release
|
||||
```
|
||||
|
||||
Now you have three binary files inside ./target/release/:
|
||||
|
||||
- **pwsp-gui**
|
||||
- **pwsp-cli**
|
||||
- **pwsp-daemon**
|
||||
|
||||
# **🎮 Usage**
|
||||
|
||||
Before using pwsp-gui or pwsp-cli, you **must** first run the pwsp-daemon in the background.
|
||||
|
||||
### **Running the Daemon**
|
||||
|
||||
You can start the daemon from the terminal or enable the systemd service for automatic startup.
|
||||
|
||||
* **Manual Start:**
|
||||
|
||||
```bash
|
||||
/path/to/your/pwsp-daemon &
|
||||
```
|
||||
|
||||
* **Using systemd (recommended):**
|
||||
If you installed PWSP using prebuilt packages, the systemd service is added automatically.
|
||||
1. **Start the service:**
|
||||
```bash
|
||||
systemctl --user start pwsp-daemon
|
||||
```
|
||||
2. **Enable autostart (starts on login):**
|
||||
```bash
|
||||
systemctl --user enable --now pwsp-daemon
|
||||
```
|
||||
|
||||
### **Using the GUI**
|
||||
|
||||
1. **Add Sounds**: Click the **"Add Directory"** button and select a folder containing your audio files. The application
|
||||
will automatically list all supported files.
|
||||
2. **Select Microphone**: In the main application window, select your **physical microphone**. PWSP will automatically
|
||||
create a virtual microphone and feed it sound from two sources: **your microphone** and the **audio files**.
|
||||
3. **Playback**: Click on a file in the list to load it, then use the **"Play"** and **"Pause"** buttons to control
|
||||
playback.
|
||||
|
||||
### **Using the CLI**
|
||||
|
||||
The pwsp-cli tool allows you to control the daemon from the command line.
|
||||
|
||||
* **General Help**: To see a list of all available commands, run:
|
||||
|
||||
```bash
|
||||
pwsp-cli --help
|
||||
```
|
||||
|
||||
* **Example Commands**:
|
||||
* **Play a file**:
|
||||
|
||||
```bash
|
||||
pwsp-cli action play <file_path>
|
||||
```
|
||||
|
||||
* **Get the current volume**:
|
||||
|
||||
```bash
|
||||
pwsp-cli get volume
|
||||
```
|
||||
|
||||
* **Set playback position to 20 seconds**:
|
||||
|
||||
```bash
|
||||
pwsp-cli set position 20
|
||||
```
|
||||
|
||||
# **🤝 Contributing**
|
||||
|
||||
Contributions are welcome\! If you have ideas for improvements or find a bug, feel free to create
|
||||
an [issue](https://github.com/arabianq/pipewire-soundpad/issues) or submit
|
||||
a [pull request](https://github.com/arabianq/pipewire-soundpad/pulls).
|
||||
|
||||
# **📜 License**
|
||||
|
||||
This project is licensed under
|
||||
the [MIT License](https://github.com/arabianq/pipewire-soundpad/blob/main/LICENSE).
|
||||
@@ -1,15 +0,0 @@
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Codename: stable
|
||||
Architectures: amd64 arm64
|
||||
Components: main
|
||||
Description: APT Repository for PWSP
|
||||
SignWith: AAE3C56B1E2D3677108CF28083C9B0DB2C8F9D16
|
||||
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Codename: nightly
|
||||
Architectures: amd64 arm64
|
||||
Components: main
|
||||
Description: Nightly APT Repository for PWSP
|
||||
SignWith: AAE3C56B1E2D3677108CF28083C9B0DB2C8F9D16
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
5.3.1
|
||||
3.3.0
|
||||
bdb5.3.28
|
||||
bdb5.3.0
|
||||
@@ -1,38 +0,0 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Codename: nightly
|
||||
Date: Wed, 09 Sep 2026 08:41:16 UTC
|
||||
Architectures: amd64 arm64
|
||||
Components: main
|
||||
Description: Nightly APT Repository for PWSP
|
||||
MD5Sum:
|
||||
aceabb23e6e94eb36ba5cc0a7e44b40e 650 main/binary-amd64/Packages
|
||||
5f169fece0201f009648645877756a93 453 main/binary-amd64/Packages.gz
|
||||
facbb80485897bc6e0d67e37e5dd38e8 123 main/binary-amd64/Release
|
||||
c81041d0d917be60c02eac047ebd4f39 677 main/binary-arm64/Packages
|
||||
eb0f33462f77e02457cb13dee1d94f4a 461 main/binary-arm64/Packages.gz
|
||||
7418f9ee7493009aeaa4417f5d11ee62 123 main/binary-arm64/Release
|
||||
SHA1:
|
||||
6205409d12f13aceb4a8da9bd6f82d40fe50831d 650 main/binary-amd64/Packages
|
||||
f187727403fd3aad0214e60670d32cb39bbe7052 453 main/binary-amd64/Packages.gz
|
||||
66d8024fbaf66bb3aa03e04c8784ffc2d45d5e92 123 main/binary-amd64/Release
|
||||
5858a2d36739da6d77a8b6b5d3e70ee3338336bb 677 main/binary-arm64/Packages
|
||||
a968c640c849e8b90e1e3d8a8b7d600c3ca7a169 461 main/binary-arm64/Packages.gz
|
||||
f7984ac62248818b3d8a2c59250042d426414d8c 123 main/binary-arm64/Release
|
||||
SHA256:
|
||||
e4c30f136a2644fb47fd679ee9b0d73ec443e1551d6d651c4f7500552c2798c4 650 main/binary-amd64/Packages
|
||||
18e35d66b427184a1b249e86bc9f4bf04bcfeae9433d6ac3f6eca4d796cf2448 453 main/binary-amd64/Packages.gz
|
||||
b5a22f248703739051a84b584c2b0ea20a9b69b28e823c5a8b0aca5f33f90bba 123 main/binary-amd64/Release
|
||||
caec6bb3187042c9a56c9df5291f0cdd03371862b5fd97296d577db2c985500d 677 main/binary-arm64/Packages
|
||||
b5d4146612736ce92a80ba2652588b872acacbb680d5d0863dc4cc8b663aacc1 461 main/binary-arm64/Packages.gz
|
||||
a5e6d2298cf4bded7fd380a4bb06d97be39e9ea1a0b42acd5190a44aad619c92 123 main/binary-arm64/Release
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iHUEARYKAB0WIQSq48VrHi02dxCM8oCDybDbLI+dFgUCaqEbrQAKCRCDybDbLI+d
|
||||
FqbCAQD5kFf8o8rW/Df6pcb2SFKNtkZYA8rH/ZymlePBIGG//wEArRIhXsrGf7OU
|
||||
BCSv4iBGH0yPItVFvGy7LsZiTjezrg4=
|
||||
=dW48
|
||||
-----END PGP SIGNATURE-----
|
||||
@@ -1,28 +0,0 @@
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Codename: nightly
|
||||
Date: Wed, 09 Sep 2026 08:41:16 UTC
|
||||
Architectures: amd64 arm64
|
||||
Components: main
|
||||
Description: Nightly APT Repository for PWSP
|
||||
MD5Sum:
|
||||
aceabb23e6e94eb36ba5cc0a7e44b40e 650 main/binary-amd64/Packages
|
||||
5f169fece0201f009648645877756a93 453 main/binary-amd64/Packages.gz
|
||||
facbb80485897bc6e0d67e37e5dd38e8 123 main/binary-amd64/Release
|
||||
c81041d0d917be60c02eac047ebd4f39 677 main/binary-arm64/Packages
|
||||
eb0f33462f77e02457cb13dee1d94f4a 461 main/binary-arm64/Packages.gz
|
||||
7418f9ee7493009aeaa4417f5d11ee62 123 main/binary-arm64/Release
|
||||
SHA1:
|
||||
6205409d12f13aceb4a8da9bd6f82d40fe50831d 650 main/binary-amd64/Packages
|
||||
f187727403fd3aad0214e60670d32cb39bbe7052 453 main/binary-amd64/Packages.gz
|
||||
66d8024fbaf66bb3aa03e04c8784ffc2d45d5e92 123 main/binary-amd64/Release
|
||||
5858a2d36739da6d77a8b6b5d3e70ee3338336bb 677 main/binary-arm64/Packages
|
||||
a968c640c849e8b90e1e3d8a8b7d600c3ca7a169 461 main/binary-arm64/Packages.gz
|
||||
f7984ac62248818b3d8a2c59250042d426414d8c 123 main/binary-arm64/Release
|
||||
SHA256:
|
||||
e4c30f136a2644fb47fd679ee9b0d73ec443e1551d6d651c4f7500552c2798c4 650 main/binary-amd64/Packages
|
||||
18e35d66b427184a1b249e86bc9f4bf04bcfeae9433d6ac3f6eca4d796cf2448 453 main/binary-amd64/Packages.gz
|
||||
b5a22f248703739051a84b584c2b0ea20a9b69b28e823c5a8b0aca5f33f90bba 123 main/binary-amd64/Release
|
||||
caec6bb3187042c9a56c9df5291f0cdd03371862b5fd97296d577db2c985500d 677 main/binary-arm64/Packages
|
||||
b5d4146612736ce92a80ba2652588b872acacbb680d5d0863dc4cc8b663aacc1 461 main/binary-arm64/Packages.gz
|
||||
a5e6d2298cf4bded7fd380a4bb06d97be39e9ea1a0b42acd5190a44aad619c92 123 main/binary-arm64/Release
|
||||
@@ -1,7 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iHUEABYKAB0WIQSq48VrHi02dxCM8oCDybDbLI+dFgUCaqEbrAAKCRCDybDbLI+d
|
||||
Fjl1AP9Zd1sB7jY0uvaoFfrFL1gmh5aNrtpL0QY1uTgz8lxbgQEArbqzFUBqfMty
|
||||
HeUiUYBdOFeXp6GLQ8XGG5VXZi3GOQw=
|
||||
=G3QT
|
||||
-----END PGP SIGNATURE-----
|
||||
@@ -1,17 +0,0 @@
|
||||
Package: pwsp
|
||||
Version: 1.16.1+git20260909.dd13eee
|
||||
Architecture: amd64
|
||||
Homepage: https://pwsp.arabianq.ru
|
||||
Maintainer: arabian
|
||||
Installed-Size: 40203
|
||||
Depends: libasound2t64 (>= 1.1.0), libc6 (>= 2.34), libc6 (>= 2.39), libpipewire-0.3-0t64 (>= 0.3.1), libssl3t64 (>= 3.0.0)
|
||||
Priority: optional
|
||||
Section: sound
|
||||
Filename: pool/main/p/pwsp/pwsp_1.16.1+git20260909.dd13eee_amd64.deb
|
||||
Size: 8888868
|
||||
SHA256: a55d4dc9bc9ea3a6afb8d39b27ecbdd967e469967273c55847d3e3f9db0ab9e9
|
||||
SHA1: 6e8fc1b9066988bffd3180ad6c6ea5c986a52ec8
|
||||
MD5sum: fc58f09ffacb127b7f37e1609a98d157
|
||||
Description: PWSP lets you play audio files through your microphone. Has both CLI and GUI
|
||||
clients.
|
||||
|
||||
Binary file not shown.
@@ -1,5 +0,0 @@
|
||||
Component: main
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Architecture: amd64
|
||||
Description: Nightly APT Repository for PWSP
|
||||
@@ -1,17 +0,0 @@
|
||||
Package: pwsp
|
||||
Version: 1.16.1+git20260909.dd13eee
|
||||
Architecture: arm64
|
||||
Homepage: https://pwsp.arabianq.ru
|
||||
Maintainer: arabian
|
||||
Installed-Size: 37772
|
||||
Depends: libasound2t64 (>= 1.0.16), libasound2t64 (>= 1.1.0), libc6 (>= 2.34), libc6 (>= 2.39), libpipewire-0.3-0t64 (>= 0.3.1), libssl3t64 (>= 3.0.0)
|
||||
Priority: optional
|
||||
Section: sound
|
||||
Filename: pool/main/p/pwsp/pwsp_1.16.1+git20260909.dd13eee_arm64.deb
|
||||
Size: 7853780
|
||||
SHA256: 6ee76683f20fb398672409e6f0afb4b9e3646e19b349cd74851f8e84d7cc0a46
|
||||
SHA1: 90e928e63269a2ea95fd542950e8d9287eb0bffd
|
||||
MD5sum: c6f1b92e97df2eaaa18cfd371401cd5b
|
||||
Description: PWSP lets you play audio files through your microphone. Has both CLI and GUI
|
||||
clients.
|
||||
|
||||
Binary file not shown.
@@ -1,5 +0,0 @@
|
||||
Component: main
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Architecture: arm64
|
||||
Description: Nightly APT Repository for PWSP
|
||||
@@ -1,38 +0,0 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Codename: stable
|
||||
Date: Tue, 01 Sep 2026 18:08:06 UTC
|
||||
Architectures: amd64 arm64
|
||||
Components: main
|
||||
Description: APT Repository for PWSP
|
||||
MD5Sum:
|
||||
b3d0ba8d43b727d38ebd422d6d4aa48b 614 main/binary-amd64/Packages
|
||||
ffa5f214d1a862a3d39adc22a8e8ee68 439 main/binary-amd64/Packages.gz
|
||||
f82d685802fbb32fec3c9ba8e11e55b9 115 main/binary-amd64/Release
|
||||
b5c16177a59292c311a7957654efc05a 614 main/binary-arm64/Packages
|
||||
932956c987dcaf9789a4c9717e0c09ea 435 main/binary-arm64/Packages.gz
|
||||
113dd4f621500874592b2a2f1eeb45ae 115 main/binary-arm64/Release
|
||||
SHA1:
|
||||
59c745cc1f7d92df3d6184fff1d5f07e0c02a13a 614 main/binary-amd64/Packages
|
||||
7e0dab9b669453381e374f7d1dedb06c04a270ce 439 main/binary-amd64/Packages.gz
|
||||
1ff55a261c49c41f38e6da56f1f5d7136d38b08f 115 main/binary-amd64/Release
|
||||
f0fc3d57e98028b8b9df15ac5148ad2e021a15aa 614 main/binary-arm64/Packages
|
||||
235259b556d8b5b198cc3d828de83d2065ec252c 435 main/binary-arm64/Packages.gz
|
||||
be63fa980d70857efdc424c837cd54ab986a40cd 115 main/binary-arm64/Release
|
||||
SHA256:
|
||||
fc71c496468573b8879153db5124164fae6b0232cc8ffecac0578c780a246900 614 main/binary-amd64/Packages
|
||||
d986c76c6aa4916ac160f11a70fe4d24a156bb2122e04709b4fa16baeb8dcd76 439 main/binary-amd64/Packages.gz
|
||||
c670ad086ec5b85d17211cb15e8e4ac1fb49a6398d0c9672992c26a009229d8c 115 main/binary-amd64/Release
|
||||
6250ab0484b8b5306048a4c3716b853a7d0191e874fdbedd8d2c70997a04a669 614 main/binary-arm64/Packages
|
||||
cab25cf41ba3d628928f98109a3c7bfd27a2aefd53bc54c38c72fe9c5b787b3c 435 main/binary-arm64/Packages.gz
|
||||
4a90ce2395fbe57635b23de83540564c0917b2f419cd69ab2630fc1520bb5c11 115 main/binary-arm64/Release
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iHUEARYKAB0WIQSq48VrHi02dxCM8oCDybDbLI+dFgUCapcUhgAKCRCDybDbLI+d
|
||||
FjPoAQCb1dn4XciWCc6C5ZgKj2HSs5QNW4aCrBNxdKq43O83fgD7B7nSp0uqlOPM
|
||||
Fnpq7wsYd8z5A9YzdSN2M7lGJIBK6wc=
|
||||
=yXG+
|
||||
-----END PGP SIGNATURE-----
|
||||
@@ -1,28 +0,0 @@
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Codename: stable
|
||||
Date: Tue, 01 Sep 2026 18:08:06 UTC
|
||||
Architectures: amd64 arm64
|
||||
Components: main
|
||||
Description: APT Repository for PWSP
|
||||
MD5Sum:
|
||||
b3d0ba8d43b727d38ebd422d6d4aa48b 614 main/binary-amd64/Packages
|
||||
ffa5f214d1a862a3d39adc22a8e8ee68 439 main/binary-amd64/Packages.gz
|
||||
f82d685802fbb32fec3c9ba8e11e55b9 115 main/binary-amd64/Release
|
||||
b5c16177a59292c311a7957654efc05a 614 main/binary-arm64/Packages
|
||||
932956c987dcaf9789a4c9717e0c09ea 435 main/binary-arm64/Packages.gz
|
||||
113dd4f621500874592b2a2f1eeb45ae 115 main/binary-arm64/Release
|
||||
SHA1:
|
||||
59c745cc1f7d92df3d6184fff1d5f07e0c02a13a 614 main/binary-amd64/Packages
|
||||
7e0dab9b669453381e374f7d1dedb06c04a270ce 439 main/binary-amd64/Packages.gz
|
||||
1ff55a261c49c41f38e6da56f1f5d7136d38b08f 115 main/binary-amd64/Release
|
||||
f0fc3d57e98028b8b9df15ac5148ad2e021a15aa 614 main/binary-arm64/Packages
|
||||
235259b556d8b5b198cc3d828de83d2065ec252c 435 main/binary-arm64/Packages.gz
|
||||
be63fa980d70857efdc424c837cd54ab986a40cd 115 main/binary-arm64/Release
|
||||
SHA256:
|
||||
fc71c496468573b8879153db5124164fae6b0232cc8ffecac0578c780a246900 614 main/binary-amd64/Packages
|
||||
d986c76c6aa4916ac160f11a70fe4d24a156bb2122e04709b4fa16baeb8dcd76 439 main/binary-amd64/Packages.gz
|
||||
c670ad086ec5b85d17211cb15e8e4ac1fb49a6398d0c9672992c26a009229d8c 115 main/binary-amd64/Release
|
||||
6250ab0484b8b5306048a4c3716b853a7d0191e874fdbedd8d2c70997a04a669 614 main/binary-arm64/Packages
|
||||
cab25cf41ba3d628928f98109a3c7bfd27a2aefd53bc54c38c72fe9c5b787b3c 435 main/binary-arm64/Packages.gz
|
||||
4a90ce2395fbe57635b23de83540564c0917b2f419cd69ab2630fc1520bb5c11 115 main/binary-arm64/Release
|
||||
@@ -1,7 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iHUEABYKAB0WIQSq48VrHi02dxCM8oCDybDbLI+dFgUCapcUhgAKCRCDybDbLI+d
|
||||
FttwAQDoPJP+J5IsmFDxf3Xa4aanVmOs2kWmYquOh+odZnfRjAEA6ARP+uAWSWB9
|
||||
Ob4MLmTkB32mo5M1dLI0WIIKeIErfwM=
|
||||
=YErr
|
||||
-----END PGP SIGNATURE-----
|
||||
@@ -1,17 +0,0 @@
|
||||
Package: pwsp
|
||||
Version: 1.16.1-1
|
||||
Architecture: amd64
|
||||
Homepage: https://pwsp.arabianq.ru
|
||||
Maintainer: arabian
|
||||
Installed-Size: 14308
|
||||
Depends: libasound2t64 (>= 1.1.0), libc6 (>= 2.34), libc6 (>= 2.39), libpipewire-0.3-0t64 (>= 0.3.1), libssl3t64 (>= 3.0.0)
|
||||
Priority: optional
|
||||
Section: sound
|
||||
Filename: pool/main/p/pwsp/pwsp_1.16.1-1_amd64.deb
|
||||
Size: 4561948
|
||||
SHA256: 3dd5a5834d8d60d4b0c25c38a664b3bdcd9d06fa34579d0dd5adc89ac290c680
|
||||
SHA1: 1d209ca3cc2bc74dc4eb29e6ff1cf73846f22564
|
||||
MD5sum: ba7d70f9a30540f21713cb8006e5d0eb
|
||||
Description: PWSP lets you play audio files through your microphone. Has both CLI and GUI
|
||||
clients.
|
||||
|
||||
Binary file not shown.
@@ -1,5 +0,0 @@
|
||||
Component: main
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Architecture: amd64
|
||||
Description: APT Repository for PWSP
|
||||
@@ -1,17 +0,0 @@
|
||||
Package: pwsp
|
||||
Version: 1.16.1-1
|
||||
Architecture: arm64
|
||||
Homepage: https://pwsp.arabianq.ru
|
||||
Maintainer: arabian
|
||||
Installed-Size: 11646
|
||||
Depends: libasound2t64 (>= 1.1.0), libc6 (>= 2.34), libc6 (>= 2.39), libpipewire-0.3-0t64 (>= 0.3.1), libssl3t64 (>= 3.0.0)
|
||||
Priority: optional
|
||||
Section: sound
|
||||
Filename: pool/main/p/pwsp/pwsp_1.16.1-1_arm64.deb
|
||||
Size: 4037540
|
||||
SHA256: 63d90e6cab8afa9ed1ba19f2ad5d22dde4efb96022c363e736d65d7b47f2afa6
|
||||
SHA1: 5d1026f3c49d55aa22938a8710aa85a61aa4a3cd
|
||||
MD5sum: f64449a3ed05eabb8d553c15335ea360
|
||||
Description: PWSP lets you play audio files through your microphone. Has both CLI and GUI
|
||||
clients.
|
||||
|
||||
Binary file not shown.
@@ -1,5 +0,0 @@
|
||||
Component: main
|
||||
Origin: arabianq
|
||||
Label: PipeWire Soundpad
|
||||
Architecture: arm64
|
||||
Description: APT Repository for PWSP
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user