A multi-channel audio mixer desktop application for the JACK Audio Connection Kit.
Go to file
Nedko Arnaudov 4c8155edd1 CHANGELOG.md: Adjust for LADIOS jack_mixer 2024-01-04 01:33:22 +02:00
data feat: replace 'mesonpep517' with 'meson-python' (#179) 2023-11-09 22:11:25 +01:00
docs fix: correct spelling errors in comments (#181) 2023-11-23 13:59:51 +01:00
jack_mixer Merge commit release-18 2023-12-13 15:38:04 +02:00
src Merge latest non-ladi main branch 2023-12-13 15:38:34 +02:00
tests Use Cython for jack_mixer C extension and add meson build setup 2021-02-18 17:54:29 +01:00
tools Use python3 by default in wrapper script 2021-04-16 16:01:26 +02:00
.flake8 Add i18n support (#116) 2021-03-20 15:19:16 +01:00
.gitignore Add i18n support (#116) 2021-03-20 15:19:16 +01:00
AUTHORS Add Mark Knoop 2021-10-22 16:49:01 -05:00
CHANGELOG.md CHANGELOG.md: Adjust for LADIOS jack_mixer 2024-01-04 01:33:22 +02:00
COPYING Move license to COPYING, to match what most tarballs have 2009-12-13 22:18:49 +01:00
INSTALL.md feat: replace 'mesonpep517' with 'meson-python' (#179) 2023-11-09 22:11:25 +01:00
README.md fix: Cython compile error with Cython 3 2023-11-09 15:57:46 +01:00
meson.build Bump version to 18 2023-11-09 22:12:28 +01:00
meson_options.txt Check for required Python modules by default 2021-02-22 02:41:16 +01:00
meson_postinstall.py fix: strip DESTDIR when compiling Python modules on installation 2023-11-09 16:34:47 +01:00
pyproject.toml feat: replace 'mesonpep517' with 'meson-python' (#179) 2023-11-09 22:11:25 +01:00

README.md

jack_mixer -- Jack Audio Mixer

jack_mixer is a GTK+ JACK audio mixer app with a look & handling similar to hardware mixing desks. It has lot of useful features, apart from being able to mix multiple JACK audio streams.

It is licensed under GPL version 2 (or later), check the file COPYING for more information.

Please visit the project's homepage at https://rdio.space/jackmixer/ for more information.

Installation

To build and install jack_mixer run:

meson setup builddir --prefix=/usr --buildtype=release
meson compile -C builddir
[sudo] meson install -C builddir

Please read the file INSTALL.md for more information and requirements.

Using MIDI CCs to control jack_mixer

MIDI Control Change messages (CCs) can be used to control volume, balance/panorama, mute, and solo of input and output channels.

The default controllers for added channels are chosen using a predefined algorithm: the first free controller starting from #11, first for volume, next for balance/panorama, then mute and finally solo.

So, if you don't delete channels, CC#11 will control the first channel's volume, CC#12 the balance/panorama, CC#13 the mute and CC#14 the solo switch. CC#15 will control the second channel' volume, CC#16 it's balance/panorama, and so on.

It is also possible to set other CCs when creating a channel, or afterwards from the channel properties dialog (accessible from the menu or by double clicking on the channel name).

MIDI CC values (0-127) are mapped to dBFS using the current slider scale for the corresponding channel.

Authors and Acknowledgements

jack_mixer was initially written and supported by Nedko Arnaudov, it is now maintained by Frédéric Péters. For a list of contributors see the file AUTHORS.

K-meter implementation taken from jkmeter, licensed under the GPL 2, by Fons Adriaensen.

Feedback and Contributing

If you have trouble getting jack_mixer working, find a bug or you miss some feature, please create an issue on GitHub or contact the maintainer by email.

You can reach Frédéric at fpeters (a.t) 0d (dot) be, and Nedko at nedko (a.t) arnaudov (dot) name. Most recently, the primary developers are Daniel Sheeler at dsheeler (a.t) pobox (dot) com and Christopher Arndt at chris (a.t) chrisarndt (dot) de, and you can also usually find these folks in #jack_mixer or #lad on Libera.Chat (as fpeters, nedko, dsheeler and strogon14).

If you want to get involved with jack_mixer's development, documentation or translation, please read the contributing guide.