Skip to main content

Asyncio interface to the Pulseaudio and Pipewire pulse library.

Project description

Asyncio interface to the Pulseaudio and Pipewire pulse library.

libpulse is a Python project based on asyncio, that uses ctypes to interface with the pulse library of the PulseAudio and PipeWire sound servers. The interface is meant to be complete. That is, all the constants, structures, plain functions and async functions are made available by importing the libpulse module of the libpulse package.

It includes the pactl.py module, a Python implementation of the pactl command that runs both on Pulseaudio and Pipewire. The output of most pactl.py subcommands can be parsed by Python and when redirected to a file, the file can be imported as a Python module. For example start an interactive Python session and inspect the cards object with all its nested sructures and dereferenced pointers with:

$ ./pactl.py list cards > cards.py && python -i cards.py

Calling an async function is simple:

 import asyncio
 from libpulse.libpulse import LibPulse

 async def main():
     async with LibPulse('my libpulse') as lib_pulse:
         sink = await lib_pulse.pa_context_get_sink_info_by_index(0)
         print('sample_spec rate:', sink.sample_spec.rate)
         print('proplist names:', list(sink.proplist.keys()))

asyncio.run(main())

Another example processing sink-input events:

import asyncio
from libpulse.libpulse import LibPulse, PA_SUBSCRIPTION_MASK_SINK_INPUT

async def main():
    async with LibPulse('my libpulse') as lib_pulse:
        await lib_pulse.pa_context_subscribe(
                                        PA_SUBSCRIPTION_MASK_SINK_INPUT)
        iterator = lib_pulse.get_events_iterator()
        async for event in iterator:
            # 'event' is an instance of PulseEvent.
            some_function_to_process_the_event(event)

asyncio.run(main())

See the libpulse documentation.

Requirements

Python version 3.8 or more recent.

Installation

Install libpulse with pip:

$ python -m pip install libpulse

Project details


Download files

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

Source Distribution

libpulse-0.5.tar.gz (53.5 kB view details)

Uploaded Source

Built Distribution

libpulse-0.5-py3-none-any.whl (43.6 kB view details)

Uploaded Python 3

File details

Details for the file libpulse-0.5.tar.gz.

File metadata

  • Download URL: libpulse-0.5.tar.gz
  • Upload date:
  • Size: 53.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.3

File hashes

Hashes for libpulse-0.5.tar.gz
Algorithm Hash digest
SHA256 7d5a511473eb9738da828f5f39108878cbfce675d44bfd5cb1c10c2a90d45f41
MD5 0c28e48667b15f1a856934035287cbf8
BLAKE2b-256 24ee41fab371e89b5ffff5dcc9aa1f24d18b70b2a8f478048c47eb358ebfcab2

See more details on using hashes here.

File details

Details for the file libpulse-0.5-py3-none-any.whl.

File metadata

  • Download URL: libpulse-0.5-py3-none-any.whl
  • Upload date:
  • Size: 43.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.3

File hashes

Hashes for libpulse-0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 61fa4c7d64fb798df5db572ed28039801d5f59e347b309ec99c1e1e8bbf87657
MD5 f9ce9c6a6c99b309311925ed4d495127
BLAKE2b-256 b6683631a18bf40bdc266a45d2b2a871a7fb23246f28f92e862ffc309bdfb29e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page