Skip to main content

qt_liquid_pool

Manages port connections for instances of LiquidSFZ using JackConnectionManager.

Purpose

I found myself using the same blocks of code in several projects, and decided to break these out into a new project which could be generally reused.

This library:

  1. Instantiates any number of instances of LiquidSFZ from the "liquiphy" package.

  2. Creates a connection to the JACK audio connection kit and monitors changes in clients and ports for the purpose of managing the ports created by the above-mentioned LiquidSFZ instances.

  3. Optionally fills and updates two instances of QComboBox, which may be used in your project for allowing a user to select input and output devices to connect to the LiquidSFZ instance(s).

Here's a screenshot of the test window, showing two combo boxes for source/sink selection, and a table displaying instantiated synth ports and their connections:

test-window

Installation

Install from the pypi repository:

$ pip install qt_liquid_pool

You'll need both JACK audio connection kit and liquidsfz.

To install JACK:

$ sudo apt install jackd

...or...

$ sudo dnf install jackd

To install liquidsfz:

$ git clone https://github.com/swesterfeld/liquidsfz.git

... and follow the instructions found in the liquidsfz README to install it.

Usage:

Import

from qt_liquid_pool import LiquidPool

Here's an excerpt from the test window shown above, demonstrating some basic usage:

class Dialog(QDialog):

	def __init__(self):
		super().__init__()
		self.liquid_pool = LiquidPool()
		self.midi_in_combo = self.liquid_pool.midi_in_combo_box(self)
		self.audio_out_combo = self.liquid_pool.audio_out_combo_box(self)
		[...]
		hlo.addWidget(self.midi_in_combo)
		hlo.addWidget(self.audio_out_combo)
		[...]
		self.liquid_pool.sig_jack_ready.connect(self.slot_jack_ready)
		self.liquid_pool.sig_connections_changed.connect(self.slot_connections_changed)
		QTimer.singleShot(0, self.liquid_pool.connect)

	@pyqtSlot(bool)
	def slot_jack_ready(self, state):
		self.connection_status_label.setText(CONNECTED if state else NOT_CONNECTED)

	@pyqtSlot()
	def slot_connections_changed(self):
		[...]

Extending for custom features

You can write your own class which inherits from LiquidPool in order to provide additional features. In particular, the "connect_midi_source" and "connect_audio_sinks" methods have been broken out for the specific purpose of making them extensible. The same goes for the "get/set_preferred_midi_source" and "get/set_preferred_audio_sink" methods.

The following two examples show how these methods can be overriden to provide new capabilities:

Additional devices

The following class connects and disconnects a soundfile player alongside the built-in instances of LiquidSFZ:

class Audio(LiquidPool):

	def __init__(self):
		super().__init__()
		self.audio_player = None

	def slot_jack_ready(self, state):
		if state:
			self.audio_player = JackAudioPlayer('my-audio-player')

	def disconnect_audio_sinks(self, ports):
		"""
		Disconnects the currently connected audio sink ports from all synths.
		"ports" is a list of currently connected audio sink ports, (usually two).
		"""
		super().disconnect_audio_sinks(ports)
		for src, tgt in zip(self.audio_player.output_ports, ports):
			self.conn_man.disconnect(src, tgt)

	def connect_audio_sinks(self, ports):
		"""
		Connects all synths to the given audio sink ports.
		"ports" is a list of audio sink ports to connect to, (usually two).
		"""
		super().connect_audio_sinks(ports)
		for src, tgt in zip(self.audio_player.output_ports, ports):
			self.conn_man.connect(src, tgt)

	def play_soundfile(self, soundfile):
		soundfile.seek(0)
		self.audio_player.play_python_soundfile(soundfile)

	def stop_playing(self):
		self.audio_player.stop()

Saving preferred connections

There is no persistent storage mechanism built in which can save and restore your preferred midi input and audio output devices. The following example shows you you can save and restore these values to a QSettings settings object:

class Audio(LiquidPool):

	def __init__(self):
		super().__init__()
		self.settings = QSettings('developer', 'app')

	def get_preferred_midi_source(self):
		"""
		Returns (str) the name of the port you prefer to connect to.
		"""
		return settings.value('MIDISource')

	def set_preferred_midi_source(self, value):
		"""
		Sets (str) the name of the port you prefer to connect to.
		"""
		settings.setValue('MIDISource', value)
		super().set_preferred_midi_source(value)

	def get_preferred_audio_sink(self):
		"""
		Returns (str) the name of the client you prefer to connect to.
		"""
		return settings.value('AudioSink')

	def set_preferred_audio_sink(self, value):
		"""
		Sets (str) the name of the client you prefer to connect to.
		"""
		settings.setValue('AudioSink', value)
		super().set_preferred_audio_sink(value)

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qt_liquid_pool-1.4.2.tar.gz (19.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qt_liquid_pool-1.4.2-py2.py3-none-any.whl (18.6 kB view details)

Uploaded Python 2Python 3

File details

Details for the file qt_liquid_pool-1.4.2.tar.gz.

File metadata

  • Download URL: qt_liquid_pool-1.4.2.tar.gz
  • Upload date:
  • Size: 19.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for qt_liquid_pool-1.4.2.tar.gz
Algorithm Hash digest
SHA256 08880476d042e205014a8fd46f09b2f56907e8971bf252b308825c76f6a523e1
MD5 c1b8bd74c5c30f8fc79353e8318774d3
BLAKE2b-256 f5d6ded7d96eaccb913e776e1e61d6a0c44294b03c67ae274b51b06d28cf0594

See more details on using hashes here.

File details

Details for the file qt_liquid_pool-1.4.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for qt_liquid_pool-1.4.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 85dff9a25da5c3c7d8a8054d073292ec4eb4141d17c234ae20d948a75302ac01
MD5 4a686f869ecd844b6486c7a49ee88b75
BLAKE2b-256 db9917b8ea2b7e8ec5f203f3d6fdd0f6fe021a23692be918733278681cd7b765

See more details on using hashes here.

Release history Release notifications | RSS feed

1.5.0

2 files

This release

1.4.2 This release

2 files

1.4.1

2 files

1.4.0

2 files

1.3.1

2 files

1.3.0

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page