Home

Awesome

<h1 align="center"> <img alt="Icon" width="75" src="https://github.com/Audio4Linux/JDSP4Linux/blob/master/resources/icons/icon.png?raw=true"> <br> JamesDSP for Linux <br> </h1> <h4 align="center">Open-source sound effects for PipeWire and PulseAudio</h4> <p align="center"> <a href="https://github.com/Audio4Linux/JDSP4Linux/releases"> <img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/Audio4Linux/JDSP4Linux"> </a> <a href="https://github.com/Audio4Linux/JDSP4Linux/blob/master/LICENSE"> <img alt="License" src="https://img.shields.io/github/license/Audio4Linux/JDSP4Linux"> </a> <a href="https://github.com/Audio4Linux/JDSP4Linux/"> <img alt="Windows build" src="https://img.shields.io/github/repo-size/Audio4Linux/JDSP4Linux"> </a> </p> <p align="center"> <a href="#features">Features</a> • <a href="#installation">Installation</a> • <a href="#scripting--ipc-apis">Scripting/API</a> • <a href="#contributors">Contributors</a> • <a href="#license">License</a> </p> <p align="center"> <img alt="Screenshot" width="702" src="https://github.com/Audio4Linux/JDSP4Linux/blob/master/meta/screenshot.png?raw=true"> </p> <p align="center"> Linux port developed by <a href="https://github.com/thepbone">Tim Schneeberger (@thepbone)</a> <p/><p align="center"> <a href="https://github.com/james34602/JamesDSPManager">JamesDSP</a> was initially published as an audio effects processor<br>for Android devices and is written by <a href="https://github.com/james34602">James Fung (@james34602)</a>. </p> <p align="center"> Feel free to join our <a href="https://t.me/joinchat/FTKC2A2bolHkFAyO-fuPjw">Telegram group</a> for support and updates </p>
<p align="center"> <a href="https://crowdin.com/project/jdsp4linux" rel="nofollow"><img style="width:140;height:40px" src="https://badges.crowdin.net/badge/light/crowdin-on-dark.png" srcset="https://badges.crowdin.net/badge/light/crowdin-on-dark.png 1x,https://badges.crowdin.net/badge/light/crowdin-on-dark@2x.png 2x" alt="Crowdin" /></a> <br/> Please help us to <a href="https://crowdin.com/project/jdsp4linux">translate this app</a> on <a href="https://crowdin.com/project/jdsp4linux">Crowdin</a>! </p>

Features

PipeWire vs PulseAudio

Designed for use with PipeWire. PulseAudio is only supported for backward compatibility.

PipeWire has a much lower latency compared to PulseAudio when injecting audio effects processors into the audio pipeline. I'm currently not planning to add more advanced support for PulseAudio clients. Features such as selective app exclusion, changing the target audio device, and similar features will only be available to PipeWire clients.

Which one am I using?

Follow the instructions below if you don't know which one your Linux distribution is using. If you already know, skip to the 'Install dependencies' section.

Run LC_ALL=C pactl info | grep "Server Name:" in your terminal.

If you are using Pipewire the output should look similar to this:

Server Name: PulseAudio (on PipeWire 0.3.35)

If you are using Pulseaudio the output should look exactly like this:

Server Name: pulseaudio

Installation

Decide whether you need to install the PipeWire or PulseAudio version of this app!

If you don't know which version fits your Linux setup, go to the PipeWire vs PulseAudio section above.

It is recommended to switch to PipeWire, if possible. JamesDSP's audio backend for PulseAudio is in maintenance-mode; however, it will continue to receive UI-related feature updates.

The installation instructions for the PulseAudio version have been moved to a separate file: INSTALL_PULSE.md.

Installation for PipeWire

This section is dedicated to systems using PipeWire as the audio server. If you are still using PulseAudio, please go here.

Flatpak

Universal binary packages for all distros.

The recommended Pipewire version is available for download on FlatHub: https://flathub.org/apps/me.timschneeberger.jdsp4linux

flatpak install me.timschneeberger.jdsp4linux

<a href='https://flathub.org/apps/me.timschneeberger.jdsp4linux'><img width='240' alt='Download on Flathub' src='https://dl.flathub.org/assets/badges/flathub-badge-en.png'/></a>

If you are still using PulseAudio, you need to download the legacy package from my personal repository:

sudo flatpak remote-add --if-not-exists thepbones-repo https://raw.githubusercontent.com/ThePBone/flatpak-repo/main/thepbone.flatpakrepo
flatpak install me.timschneeberger.jdsp4linux.pulse

[!IMPORTANT] Flatpaks are sandboxed. This application can only access ~/.var/app/me.timschneeberger.jdsp4linux/ by default.

Arch

AUR packages are available:

Fedora/openSUSE

Package maintained by @theAeon on Fedora COPR. Built for Fedora 34/35/Rawhide and OpenSUSE Tumbleweed.

yum copr enable arrobbins/JDSP4Linux && yum update && yum install JamesDSP

If you are still using PulseAudio with your Fedora/openSUSE installation, refer to the 'Build from sources' section below instead.

Build from sources

Build instructions are available in the BUILD.md file.

Scripting & IPC APIs

Since version 2.5.0, this app supports IPC via D-Bus and is also configurable via a CLI.

Remote control via CLI

You can list all supported commands using jamesdsp --help. Currently, these commands for remote-controlling JamesDSP's audio engine are available:

  --is-connected                           Check if JamesDSP service is active. Returns exit code 1 if not. (Remote)
  --list-keys                              List available audio configuration keys (Remote)
  --get <key>                              Get audio configuration value (Remote)
  --set <key=value>                        Set audio configuration value (format: key=value) (Remote)
  --load-preset <name>                     Load preset by name (Remote)
  --save-preset <name>                     Save current settings as preset (Remote)
  --delete-preset <name>                   Delete preset by name (Remote)
  --list-presets                           List presets (Remote)
  --status                                 Show status (Remote)
  --list-devices                           List audio devices (Remote)
  --list-preset-rules                      List preset rules (Remote)
  --set-preset-rule <deviceId=presetName>  Add/modify preset rule (Remote)
  --delete-preset-rule <deviceId>          Delete preset rule (Remote)

The options should be fairly self-explanatory. For example, jamesdsp --set reverb_enable=true would enable the reverberation setting. Have a look at the audio configuration file at ~/.config/jamesdsp/audio.conf to learn more about possible setting keys and their syntax.

[!NOTE] These commands try to connect to an active JamesDSP instance. If no instance is currently online, they will fall back to modifying the audio configuration file directly on disk. The --is-connected option can be used to check whether one is currently online.

D-Bus IPC

This app also exposes a D-Bus service on the session bus, which can be used by other developers or users:

Service name: me.timschneeberger.jdsp4linux

If you want to test it out, you can use an app like D-Feet to interact with the D-Bus services.

The D-Bus introspection XML is available here: https://github.com/Audio4Linux/JDSP4Linux/blob/master/src/utils/dbus/manifest.xml.

Troubleshooting

Screenshots

<p align="center"> <img alt="Screenshot" width="702" src="https://github.com/Audio4Linux/JDSP4Linux/blob/master/meta/screenshot_presets.png?raw=true"> <img alt="Screenshot" width="702" src="https://github.com/Audio4Linux/JDSP4Linux/blob/master/meta/screenshot_eel.png?raw=true"> <img alt="Screenshot" width="702" src="https://github.com/Audio4Linux/JDSP4Linux/blob/master/meta/screenshot_graphiceq.png?raw=true"> <img alt="Screenshot" width="702" src="https://github.com/Audio4Linux/JDSP4Linux/blob/master/meta/screenshot_ide.png?raw=true"> </p>

Contributors

Translators

<!-- CROWDIN-CONTRIBUTORS-START --> <table> <tr> <td align="center" valign="top"> <a href="https://crowdin.com/profile/ThePBone"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15683553/medium/d13428d1e0922bc2069500aef57d1459.png" /> <br /> <sub><b>Tim Schneeberger (ThePBone)</b></sub></a> <br /> <sub><b>7404 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/Kazevic"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15680393/medium/fd2c52453ee1d86f41406cff9346d74d.png" /> <br /> <sub><b>Kauã Azevedo da Silva Vicente (Kazevic)</b></sub></a> <br /> <sub><b>3173 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/Camellan"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/13410766/medium/b4019516b3323e817b7e77712961de69_default.png" /> <br /> <sub><b>Camellan</b></sub></a> <br /> <sub><b>3152 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/KatieFrogs"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/14450708/medium/bb568293d8b26daa3f7f323dbc9d69d0.png" /> <br /> <sub><b>Katie Frogs (KatieFrogs)</b></sub></a> <br /> <sub><b>2955 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/catvinyl"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15923209/medium/87c1ec8379dee277ba0bd42e1d8206f2.png" /> <br /> <sub><b>catvinyl</b></sub></a> <br /> <sub><b>2352 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/Gokwu"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15975377/medium/7be6218dc0f81f4f2dc8418ea983bd9e.png" /> <br /> <sub><b>Choi Jun Hyeong (Gokwu)</b></sub></a> <br /> <sub><b>2321 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/HoleHolo"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/14737398/medium/7d120eb168560837ca53bd0f189be716.png" /> <br /> <sub><b>HoleHolo</b></sub></a> <br /> <sub><b>814 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/mefsaal"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/13221907/medium/c0b751a37f076028f7271b00392736aa.jpg" /> <br /> <sub><b>Gabriel Cabrera Davila (mefsaal)</b></sub></a> <br /> <sub><b>652 words</b></sub> </td> </tr> <tr> <td align="center" valign="top"> <a href="https://crowdin.com/profile/seqfault"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15878639/medium/bf4af8eeefcd4c065fd867a7ad16994b.jpeg" /> <br /> <sub><b>NullPointerException (seqfault)</b></sub></a> <br /> <sub><b>1151 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/mariachini"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/13113640/medium/99ff648dd8f28efebdce9713cee1b9c3.png" /> <br /> <sub><b>mariachini</b></sub></a> <br /> <sub><b>373 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/tachyglossues"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/16138360/medium/4d6a2b47f6bc03515132a7310e27d4d6_default.png" /> <br /> <sub><b>tachyglossues</b></sub></a> <br /> <sub><b>358 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/gkpiccoli"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15512952/medium/57e54eba4de46714593f1d0dcbcdfa3a.jpeg" /> <br /> <sub><b>Gustavo Kureck Piccoli (gkpiccoli)</b></sub></a> <br /> <sub><b>280 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/zhanghua000"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15906451/medium/db06f53e9b83801ec99389ab759b1e48.png" /> <br /> <sub><b>Noob Zhang (zhanghua000)</b></sub></a> <br /> <sub><b>240 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/kzsuser"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/16189758/medium/b0b9640e2be596e641f458345859f5dd_default.png" /> <br /> <sub><b>kzsuser</b></sub></a> <br /> <sub><b>221 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/kanium"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/16501577/medium/c73db838b312ee88a0f455b96be1301c.jpeg" /> <br /> <sub><b>kanium</b></sub></a> <br /> <sub><b>200 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/AnClark"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15932859/medium/621b49aa22122e6ca25fc819eac5e96f.jpeg" /> <br /> <sub><b>AnClark Liu (AnClark)</b></sub></a> <br /> <sub><b>173 words</b></sub> </td> </tr> <tr> <td align="center" valign="top"> <a href="https://crowdin.com/profile/deproocho"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/14966313/medium/71b861af9d1e455f743c1002b4d24622.jpeg" /> <br /> <sub><b>Bruh (deproocho)</b></sub></a> <br /> <sub><b>171 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/so1ar"><img alt="logo" style="width: 64px" src="https://i2.wp.com/crowdin.com/images/user-picture.png?ssl=1" /> <br /> <sub><b>so1ar</b></sub></a> <br /> <sub><b>126 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/coldified_"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/16382586/medium/27690602b0b2014444ad1346007a6734.png" /> <br /> <sub><b>Inche Hwang (coldified_)</b></sub></a> <br /> <sub><b>117 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/etiennec78"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15912311/medium/49bacd7fcfc807ea0c5f97127af5bb26.jpeg" /> <br /> <sub><b>etiennec79 (etiennec78)</b></sub></a> <br /> <sub><b>114 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/james34602"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15764811/medium/9c166ce647706bbfc568c13763b8a50d.jpeg" /> <br /> <sub><b>James Fung (james34602)</b></sub></a> <br /> <sub><b>72 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/theczechczech"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15271802/medium/850b88d0368fad2a99ee217e658235a1.png" /> <br /> <sub><b>theczechczech</b></sub></a> <br /> <sub><b>42 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/alex-pex"><img alt="logo" style="width: 64px" src="https://i2.wp.com/crowdin.com/images/user-picture.png?ssl=1" /> <br /> <sub><b>Alexandre PAIXAO (alex-pex)</b></sub></a> <br /> <sub><b>30 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/jaytau"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15142098/medium/010a2b64c5b06dd38710cf0c99776867.png" /> <br /> <sub><b>Joel Tony (jaytau)</b></sub></a> <br /> <sub><b>28 words</b></sub> </td> </tr> <tr> <td align="center" valign="top"> <a href="https://crowdin.com/profile/crisap94"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/14296216/medium/40edd01d8eb60877be593e043d2561e8_default.png" /> <br /> <sub><b>crisap94</b></sub></a> <br /> <sub><b>27 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/arifesat"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15670651/medium/46177c3d13c90ed767700bb49413107f.jpeg" /> <br /> <sub><b>Arif Esat Yılmaz (arifesat)</b></sub></a> <br /> <sub><b>24 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/kingconcentrer"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/16469555/medium/54ededcf7750147a59dd441e50fd4afb.png" /> <br /> <sub><b>thành thành (kingconcentrer)</b></sub></a> <br /> <sub><b>18 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/andmydignity"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/15821563/medium/cce9327c6cd8879f307495fab2077633.png" /> <br /> <sub><b>Semih Aslan (andmydignity)</b></sub></a> <br /> <sub><b>15 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/deathrobert2010"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/13559998/medium/429e149d92ed6c461f601e7d30d280df.jpg" /> <br /> <sub><b>Robert Abreu (deathrobert2010)</b></sub></a> <br /> <sub><b>13 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/ldepaulaf"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/16134798/medium/15b5baf47f32c5accb64ab632c4f8f98.png" /> <br /> <sub><b>Lucas De Paula (ldepaulaf)</b></sub></a> <br /> <sub><b>11 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/artemgrebennikov310"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/13820153/medium/d1565ef34bd253f67a995f1fd3811887.jpg" /> <br /> <sub><b>Mr.Positiv (artemgrebennikov310)</b></sub></a> <br /> <sub><b>4 words</b></sub> </td> <td align="center" valign="top"> <a href="https://crowdin.com/profile/qkxhdurkchus"><img alt="logo" style="width: 64px" src="https://crowdin-static.downloads.crowdin.com/avatar/16148718/medium/36208d4422f129e9d32ba0e7e675103e.jpeg" /> <br /> <sub><b>Rkchus Qkxhdu (qkxhdurkchus)</b></sub></a> <br /> <sub><b>3 words</b></sub> </td> </tr> </table><a href="https://crowdin.com/project/jdsp4linux" target="_blank">Translate in Crowdin 🚀</a> <!-- CROWDIN-CONTRIBUTORS-END -->

License

This project is licensed under GPLv3.

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.