A multi-channel audio mixer desktop application for the JACK Audio Connection Kit.
Go to file
Christopher Arndt 5f99220275 fix: Cython compile error with Cython 3
Declare MIDI change callback as 'noexcept' as it needs the GIL

Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2023-11-09 15:57:46 +01:00
data Replace PyXDG module with appdirs (#150) 2021-10-22 12:23:53 -05:00
docs Small typo fix and formatting change in man page 2021-04-14 17:50:02 +02:00
jack_mixer Prefix all log messages in C and Python with [jack_mixer] and unify/add newlines after log messages 2022-12-04 12:14:51 -06:00
src fix: Cython compile error with Cython 3 2023-11-09 15:57:46 +01: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 Another version 17 Changelog update 2021-10-12 12:46:27 -05:00
COPYING Move license to COPYING, to match what most tarballs have 2009-12-13 22:18:49 +01:00
INSTALL.md Replace PyXDG module with appdirs (#150) 2021-10-22 12:23:53 -05:00
README.md fix: Cython compile error with Cython 3 2023-11-09 15:57:46 +01:00
meson.build Replace PyXDG module with appdirs (#150) 2021-10-22 12:23:53 -05:00
meson_options.txt Check for required Python modules by default 2021-02-22 02:41:16 +01:00
meson_postinstall.py Use Cython for jack_mixer C extension and add meson build setup 2021-02-18 17:54:29 +01:00
pyproject.toml Replace PyXDG module with appdirs (#150) 2021-10-22 12:23:53 -05: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.