pulsectl


Namepulsectl JSON
Version 24.4.0 PyPI version JSON
download
home_pagehttp://github.com/mk-fg/python-pulse-control
SummaryPython high-level interface and ctypes-based bindings for PulseAudio (libpulse)
upload_time2024-04-06 14:06:44
maintainerNone
docs_urlNone
authorGeorge Filipkin, Mike Kazantsev
requires_pythonNone
licenseMIT
keywords pulseaudio libpulse pulse pa bindings sound audio ctypes control mixer volume mute source sink
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            python-pulse-control (pulsectl module)
======================================

Python (3.x and 2.x) blocking high-level interface and ctypes-based bindings
for PulseAudio_ (libpulse), to use in a simple synchronous code.

Wrappers are mostly for mixer-like controls and introspection-related operations,
as opposed to e.g. submitting sound samples to play and player-like client.

For async version to use with asyncio_, see `pulsectl-asyncio`_ project instead.

Originally forked from pulsemixer_ project, which had this code bundled.

.. _PulseAudio: https://wiki.freedesktop.org/www/Software/PulseAudio/
.. _asyncio: https://docs.python.org/3/library/asyncio.html
.. _pulsectl-asyncio: https://pypi.org/project/pulsectl-asyncio/
.. _pulsemixer: https://github.com/GeorgeFilipkin/pulsemixer/

|

.. contents::
  :backlinks: none

Repository URLs:

- https://github.com/mk-fg/python-pulse-control
- https://codeberg.org/mk-fg/python-pulse-control
- https://fraggod.net/code/git/python-pulse-control



Usage
-----

Simple example::

  import pulsectl

  with pulsectl.Pulse('volume-increaser') as pulse:
    for sink in pulse.sink_list():
      # Volume is usually in 0-1.0 range, with >1.0 being soft-boosted
      pulse.volume_change_all_chans(sink, 0.1)

Listening for server state change events::

  import pulsectl

  with pulsectl.Pulse('event-printer') as pulse:
    # print('Event types:', pulsectl.PulseEventTypeEnum)
    # print('Event facilities:', pulsectl.PulseEventFacilityEnum)
    # print('Event masks:', pulsectl.PulseEventMaskEnum)

    def print_events(ev):
      print('Pulse event:', ev)
      ### Raise PulseLoopStop for event_listen() to return before timeout (if any)
      # raise pulsectl.PulseLoopStop

    pulse.event_mask_set('all')
    pulse.event_callback_set(print_events)
    pulse.event_listen(timeout=10)

Misc other tinkering::

  >>> import pulsectl
  >>> pulse = pulsectl.Pulse('my-client-name')

  >>> pulse.sink_list()
  [<PulseSinkInfo at 7f85cfd053d0 - desc='Built-in Audio', index=0L, mute=0, name='alsa-speakers', channels=2, volumes='44.0%, 44.0%'>]

  >>> pulse.sink_input_list()
  [<PulseSinkInputInfo at 7fa06562d3d0 - index=181L, mute=0, name='mpv Media Player', channels=2, volumes='25.0%, 25.0%'>]

  >>> pulse.sink_input_list()[0].proplist
  {'application.icon_name': 'mpv',
   'application.language': 'C',
   'application.name': 'mpv Media Player',
   ...
   'native-protocol.version': '30',
   'window.x11.display': ':1.0'}

  >>> pulse.source_list()
  [<PulseSourceInfo at 7fcb0615d8d0 - desc='Monitor of Built-in Audio', index=0L, mute=0, name='alsa-speakers.monitor', channels=2, volumes='100.0%, 100.0%'>,
   <PulseSourceInfo at 7fcb0615da10 - desc='Built-in Audio', index=1L, mute=0, name='alsa-mic', channels=2, volumes='100.0%, 100.0%'>]

  >>> sink = pulse.sink_list()[0]
  >>> pulse.volume_change_all_chans(sink, -0.1)
  >>> pulse.volume_set_all_chans(sink, 0.5)

  >>> pulse.server_info().default_sink_name
  'alsa_output.pci-0000_00_14.2.analog-stereo'
  >>> pulse.default_set(sink)

  >>> card = pulse.card_list()[0]
  >>> card.profile_list
  [<PulseCardProfileInfo at 7f02e7e88ac8 - description='Analog Stereo Input', n_sinks=0, n_sources=1, name='input:analog-stereo', priority=60>,
   <PulseCardProfileInfo at 7f02e7e88b70 - description='Analog Stereo Output', n_sinks=1, n_sources=0, name='output:analog-stereo', priority=6000>,
   ...
   <PulseCardProfileInfo at 7f02e7e9a4e0 - description='Off', n_sinks=0, n_sources=0, name='off', priority=0>]
  >>> pulse.card_profile_set(card, 'output:hdmi-stereo')

  >>> help(pulse)
  ...

  >>> pulse.close()

Current code logic is that all methods are invoked through the Pulse instance,
and everything returned from these are "Pulse-Something-Info" objects - thin
wrappers around C structs that describe the thing, without any methods attached.

Aside from a few added convenience methods, most of them should have similar
signature and do same thing as their C libpulse API counterparts, so see
`pulseaudio doxygen documentation`_ for more information on them.

Pulse client can be integrated into existing eventloop (e.g. asyncio, twisted,
etc) using ``Pulse.set_poll_func()`` or ``Pulse.event_listen()`` in a separate
thread.

Somewhat extended usage example can be found in `pulseaudio-mixer-cli`_ project
code, as well as tests here.

.. _pulseaudio doxygen documentation: https://freedesktop.org/software/pulseaudio/doxygen/introspect_8h.html
.. _pulseaudio-mixer-cli: https://github.com/mk-fg/pulseaudio-mixer-cli/blob/master/pa-mixer-mk3.py



Notes
-----

Some less obvious things are described in this section.


Things not yet wrapped/exposed in python
````````````````````````````````````````

There are plenty of information, methods and other things in libpulse not yet
wrapped/exposed by this module, as they weren't needed (yet) for author/devs
use-case(s).

Making them accessible from python code can be as simple as adding an attribute
name to the "c_struct_fields" value in PulseSomethingInfo objects.

See `github #3 <https://github.com/mk-fg/python-pulse-control/issues/3>`_
for a more concrete example of finding/adding such stuff.

For info and commands that are not available through libpulse introspection API,
it is possible to use ``pulsectl.connect_to_cli()`` fallback function, which
will open unix socket to server's "module-cli" (signaling to load it, if
necessary), which can be used in exactly same way as "pacmd" tool (not to be
confused with "pactl", which uses native protocol instead of module-cli) or
pulseaudio startup files (e.g. "default.pa").

Probably a bad idea to parse string output from commands there though, as these
are not only subject to change, but can also vary depending on system locale.


Volume
``````

In PulseAudio, "volume" for anything is not a flat number, but essentially a
list of numbers, one per channel (as in "left", "right", "front", "rear", etc),
which should correspond to channel map of the object it relates/is-applied to.

In this module, such lists are represented by PulseVolumeInfo objects.

I.e. ``sink.volume`` is a PulseVolumeInfo instance, and all thin/simple wrappers
that accept index of the object, expect such instance to be passed, e.g.
``pulse.sink_input_volume_set(sink.index, sink.volume)``.

There are convenience ``volume_get_all_chans``, ``volume_set_all_chans`` and
``volume_change_all_chans`` methods to get/set/adjust volume as/by a single
numeric value, which is also accessible on PulseVolumeInfo objects as a
``value_flat`` property.

PulseVolumeInfo can be constructed from a numeric volume value plus number of
channels, or a python list of per-channel numbers.

All per-channel volume values in PulseVolumeInfo (and flat values in the wrapper
funcs above), are float objects in 0-65536 range, with following meanings:

* 0.0 volume is "no sound" (corresponds to PA_VOLUME_MUTED).

* 1.0 value is "current sink volume level", 100% or PA_VOLUME_NORM.

* >1.0 and up to 65536.0 (PA_VOLUME_MAX / PA_VOLUME_NORM) - software-boosted
  sound volume (higher values will negatively affect sound quality).

Probably a good idea to set volume only in 0-1.0 range and boost volume in
hardware without quality loss, e.g. by tweaking sink volume (which corresponds
to ALSA/hardware volume), if that option is available.

Note that ``flat-volumes=yes`` option ("yes" by default on some distros, "no" in
e.g. Arch Linux) in pulseaudio daemon.conf already scales device-volume with the
volume of the "loudest" application, so already does what's suggested above.

Fractional volume values used in the module get translated (in a linear fashion)
to/from pa_volume_t integers for libpulse. See ``src/pulse/volume.h`` in
pulseaudio sources for all the gory details on the latter (e.g. how it relates
to sound level in dB).

Code example::

  from pulsectl import Pulse, PulseVolumeInfo

  with Pulse('volume-example') as pulse:
    sink_input = pulse.sink_input_list()[0] # first random sink-input stream

    volume = sink_input.volume
    print(volume.values) # list of per-channel values (floats)
    print(volume.value_flat) # average level across channels (float)

    time.sleep(1)

    volume.value_flat = 0.3 # sets all volume.values to 0.3
    pulse.volume_set(sink_input, volume) # applies the change

    time.sleep(1)

    n_channels = len(volume.values)
    new_volume = PulseVolumeInfo(0.5, n_channels) # 0.5 across all n_channels
    # new_volume = PulseVolumeInfo([0.15, 0.25]) # from a list of channel levels (stereo)
    pulse.volume_set(sink_input, new_volume)
    # pulse.sink_input_volume_set(sink_input.index, new_volume) # same as above

In most common cases, doing something like
``pulse.volume_set_all_chans(sink_input, 0.2)`` should do the trick though -
no need to bother with specific channels in PulseVolumeInfo there.


String values
`````````````

libpulse explicitly returns utf-8-encoded string values, which are always
decoded to "abstract string" type in both python-2 (where it's called "unicode")
and python-3 ("str"), for consistency.

It might be wise to avoid mixing these with encoded strings ("bytes") in the code,
especially in python-2, where "bytes" is often used as a default string type.


Enumerated/named values (enums)
```````````````````````````````

In place of C integers that correspond to some enum or constant (e.g. -1 for
PA_SINK_INVALID_STATE), module returns EnumValue objects, which are comparable
to strings ("str" type in py2/py3).

For example::

  >>> pulsectl.PulseEventTypeEnum.change == 'change'
  True
  >>> pulsectl.PulseEventTypeEnum.change
  <EnumValue event-type=change>
  >>> pulsectl.PulseEventTypeEnum
  <Enum event-type [change new remove]>

It might be preferrable to use enums instead of strings in the code so that
interpreter can signal error on any typos or unknown values specified, as
opposed to always silently failing checks with bogus strings.


Event-handling code, threads
````````````````````````````

libpulse clients always work as an event loop, though this module kinda hides
it, presenting a more old-style blocking interface.

So what happens on any call (e.g. ``pulse.mute(...)``) is:

* Make a call to libpulse, specifying callback for when operation will be completed.
* Run libpulse event loop until that callback gets called.
* Return result passed to that callback call, if any (for various "get" methods).

``event_callback_set()`` and ``event_listen()`` calls essentally do raw first
and second step here.

Which means that any pulse calls from callback function can't be used when
``event_listen()`` (or any other pulse call through this module, for that matter)
waits for return value and runs libpulse loop already.

One can raise PulseLoopStop exception there to make ``event_listen()`` return,
run whatever pulse calls after that, then re-start the ``event_listen()`` thing.

This will not miss any events, as all blocking calls do same thing as
``event_listen()`` does (second step above), and can cause callable passed to
``event_callback_set()`` to be called (when loop is running).

Also, same instance of libpulse eventloop can't be run from different threads,
naturally, so if threads are used, client can be initialized with
``threading_lock=True`` option (can also accept lock instance instead of True)
to create a mutex around step-2 (run event loop) from the list above, so
multiple threads won't do it at the same time.

For proper python eventloop integration (think twisted or asyncio),
use `pulsectl-asyncio`_ module instead.

There are also some tricks mentioned in `github #11
<https://github.com/mk-fg/python-pulse-control/issues/11>`_ to shoehorn this
module into async apps, but even with non-asyncio eventloop, starting from
pulsectl-asyncio would probably be much easier.


Tests
`````

Test code is packaged/installed with the module and can be useful to run when
changing module code, or to check if current python, module and pulseudio
versions all work fine together.

Commands to run tests from either checkout directory or installed module::

  % python2 -m unittest discover
  % python3 -m unittest discover

Note that if "pulsectl" module is available both in current directory
(e.g. checkout dir) and user/system python module path, former should always
take priority for commands above.

Add e.g. ``-k test_stream_move`` for commands above to match and run specific
test(s), and when isolating specific failure, it might also be useful to run
with PA_DEBUG=1 env-var to get full verbose pulseaudio log, for example::

  % PA_DEBUG=1 python -m unittest discover -k test_module_funcs

Test suite runs ad-hoc isolated pulseaudio instance with null-sinks (not
touching hardware), custom (non-default) startup script and environment,
and interacts only with that instance, terminating it afterwards.
Still uses system/user daemon.conf files though, so these can affect the tests.

Any test failures can indicate incompatibilities, bugs in the module code,
issues with pulseaudio (or its daemon.conf) and underlying dependencies.
There are no "expected" test case failures.

All tests can run for up to 10 seconds currently (v19.9.6), due to some
involving playback (using paplay from /dev/urandom) being time-sensitive.


Changelog and versioning scheme
```````````````````````````````

This package uses one-version-per-commit scheme (updated by pre-commit hook)
and pretty much one release per git commit, unless more immediate follow-up
commits are planned or too lazy to run ``py setup.py sdist bdist_wheel upload``
for some trivial README typo fix.

| Version scheme: ``{year}.{month}.{git-commit-count-this-month}``
| I.e. "16.9.10" is "11th commit on Sep 2016".
|

There is a `CHANGES.rst <CHANGES.rst>`_ file with the list of any intentional
breaking changes (should be exceptionally rare, if any) and new/added
non-trivial functionality.

| It can be a bit out of date though, as one has to remember to update it manually.
| "Last synced/updated:" line there might give a hint as to by how much.



Installation
------------

It's a regular package for Python (3.x or 2.x).

`If a package is available for your distribution`_,
using your package manager is the recommended way to install it.

Otherwise, using pip_ is the best way::

  % pip install pulsectl

(add --user option to install into $HOME for current user only)

Be sure to use python3/python2, pip3/pip2, easy_install-... commands
based on which python version you want to install the module for,
if you are still using python2 (and likely have python3 on the system as well).

If you don't have "pip" command::

  % python -m ensurepip
  % python -m pip install --upgrade pip
  % python -m pip install pulsectl

(same suggestion wrt "install --user" as above)

On a very old systems, one of these might work::

  % curl https://bootstrap.pypa.io/get-pip.py | python
  % pip install pulsectl

  % easy_install pulsectl

  % git clone --depth=1 https://github.com/mk-fg/python-pulse-control
  % cd python-pulse-control
  % python setup.py install

(all of install-commands here also have --user option)

Current-git version can be installed like this::

  % pip install 'git+https://github.com/mk-fg/python-pulse-control#egg=pulsectl'

Note that to install stuff to system-wide PATH and site-packages
(without --user), elevated privileges (i.e. root and su/sudo) are often required.

Use "...install --user", `~/.pydistutils.cfg`_ or virtualenv_
to do unprivileged installs into custom paths.

More info on python packaging can be found at `packaging.python.org`_.

.. _If a package is available for your distribution: https://repology.org/project/python:pulsectl/versions
.. _pip: http://pip-installer.org/
.. _~/.pydistutils.cfg: http://docs.python.org/install/index.html#distutils-configuration-files
.. _virtualenv: http://pypi.python.org/pypi/virtualenv
.. _packaging.python.org: https://packaging.python.org/installing/



Links
-----

* pulsemixer_ - initial source for this project (embedded in the tool).

* `pulsectl-asyncio`_ - similar libpulse wrapper to this one, but for async python code.

* `libpulseaudio <https://github.com/thelinuxdude/python-pulseaudio/>`_ -
  different libpulse bindings module, more low-level, auto-generated from
  pulseaudio header files.

  Branches there have bindings for different (newer) pulseaudio versions.

* `pypulseaudio <https://github.com/liamw9534/pypulseaudio/>`_ -
  high-level bindings module, rather similar to this one.

* `pulseaudio-mixer-cli`_ - alsamixer-like script built on top of this module.

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/mk-fg/python-pulse-control",
    "name": "pulsectl",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "pulseaudio, libpulse, pulse, pa, bindings, sound, audio, ctypes, control, mixer, volume, mute, source, sink",
    "author": "George Filipkin, Mike Kazantsev",
    "author_email": "mk.fraggod@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/9d/bf/c10b9ccdffbd4d5c1e7d0aef1874e3d9adb72524339e825728777898ff51/pulsectl-24.4.0.tar.gz",
    "platform": null,
    "description": "python-pulse-control (pulsectl module)\n======================================\n\nPython (3.x and 2.x) blocking high-level interface and ctypes-based bindings\nfor PulseAudio_ (libpulse), to use in a simple synchronous code.\n\nWrappers are mostly for mixer-like controls and introspection-related operations,\nas opposed to e.g. submitting sound samples to play and player-like client.\n\nFor async version to use with asyncio_, see `pulsectl-asyncio`_ project instead.\n\nOriginally forked from pulsemixer_ project, which had this code bundled.\n\n.. _PulseAudio: https://wiki.freedesktop.org/www/Software/PulseAudio/\n.. _asyncio: https://docs.python.org/3/library/asyncio.html\n.. _pulsectl-asyncio: https://pypi.org/project/pulsectl-asyncio/\n.. _pulsemixer: https://github.com/GeorgeFilipkin/pulsemixer/\n\n|\n\n.. contents::\n  :backlinks: none\n\nRepository URLs:\n\n- https://github.com/mk-fg/python-pulse-control\n- https://codeberg.org/mk-fg/python-pulse-control\n- https://fraggod.net/code/git/python-pulse-control\n\n\n\nUsage\n-----\n\nSimple example::\n\n  import pulsectl\n\n  with pulsectl.Pulse('volume-increaser') as pulse:\n    for sink in pulse.sink_list():\n      # Volume is usually in 0-1.0 range, with >1.0 being soft-boosted\n      pulse.volume_change_all_chans(sink, 0.1)\n\nListening for server state change events::\n\n  import pulsectl\n\n  with pulsectl.Pulse('event-printer') as pulse:\n    # print('Event types:', pulsectl.PulseEventTypeEnum)\n    # print('Event facilities:', pulsectl.PulseEventFacilityEnum)\n    # print('Event masks:', pulsectl.PulseEventMaskEnum)\n\n    def print_events(ev):\n      print('Pulse event:', ev)\n      ### Raise PulseLoopStop for event_listen() to return before timeout (if any)\n      # raise pulsectl.PulseLoopStop\n\n    pulse.event_mask_set('all')\n    pulse.event_callback_set(print_events)\n    pulse.event_listen(timeout=10)\n\nMisc other tinkering::\n\n  >>> import pulsectl\n  >>> pulse = pulsectl.Pulse('my-client-name')\n\n  >>> pulse.sink_list()\n  [<PulseSinkInfo at 7f85cfd053d0 - desc='Built-in Audio', index=0L, mute=0, name='alsa-speakers', channels=2, volumes='44.0%, 44.0%'>]\n\n  >>> pulse.sink_input_list()\n  [<PulseSinkInputInfo at 7fa06562d3d0 - index=181L, mute=0, name='mpv Media Player', channels=2, volumes='25.0%, 25.0%'>]\n\n  >>> pulse.sink_input_list()[0].proplist\n  {'application.icon_name': 'mpv',\n   'application.language': 'C',\n   'application.name': 'mpv Media Player',\n   ...\n   'native-protocol.version': '30',\n   'window.x11.display': ':1.0'}\n\n  >>> pulse.source_list()\n  [<PulseSourceInfo at 7fcb0615d8d0 - desc='Monitor of Built-in Audio', index=0L, mute=0, name='alsa-speakers.monitor', channels=2, volumes='100.0%, 100.0%'>,\n   <PulseSourceInfo at 7fcb0615da10 - desc='Built-in Audio', index=1L, mute=0, name='alsa-mic', channels=2, volumes='100.0%, 100.0%'>]\n\n  >>> sink = pulse.sink_list()[0]\n  >>> pulse.volume_change_all_chans(sink, -0.1)\n  >>> pulse.volume_set_all_chans(sink, 0.5)\n\n  >>> pulse.server_info().default_sink_name\n  'alsa_output.pci-0000_00_14.2.analog-stereo'\n  >>> pulse.default_set(sink)\n\n  >>> card = pulse.card_list()[0]\n  >>> card.profile_list\n  [<PulseCardProfileInfo at 7f02e7e88ac8 - description='Analog Stereo Input', n_sinks=0, n_sources=1, name='input:analog-stereo', priority=60>,\n   <PulseCardProfileInfo at 7f02e7e88b70 - description='Analog Stereo Output', n_sinks=1, n_sources=0, name='output:analog-stereo', priority=6000>,\n   ...\n   <PulseCardProfileInfo at 7f02e7e9a4e0 - description='Off', n_sinks=0, n_sources=0, name='off', priority=0>]\n  >>> pulse.card_profile_set(card, 'output:hdmi-stereo')\n\n  >>> help(pulse)\n  ...\n\n  >>> pulse.close()\n\nCurrent code logic is that all methods are invoked through the Pulse instance,\nand everything returned from these are \"Pulse-Something-Info\" objects - thin\nwrappers around C structs that describe the thing, without any methods attached.\n\nAside from a few added convenience methods, most of them should have similar\nsignature and do same thing as their C libpulse API counterparts, so see\n`pulseaudio doxygen documentation`_ for more information on them.\n\nPulse client can be integrated into existing eventloop (e.g. asyncio, twisted,\netc) using ``Pulse.set_poll_func()`` or ``Pulse.event_listen()`` in a separate\nthread.\n\nSomewhat extended usage example can be found in `pulseaudio-mixer-cli`_ project\ncode, as well as tests here.\n\n.. _pulseaudio doxygen documentation: https://freedesktop.org/software/pulseaudio/doxygen/introspect_8h.html\n.. _pulseaudio-mixer-cli: https://github.com/mk-fg/pulseaudio-mixer-cli/blob/master/pa-mixer-mk3.py\n\n\n\nNotes\n-----\n\nSome less obvious things are described in this section.\n\n\nThings not yet wrapped/exposed in python\n````````````````````````````````````````\n\nThere are plenty of information, methods and other things in libpulse not yet\nwrapped/exposed by this module, as they weren't needed (yet) for author/devs\nuse-case(s).\n\nMaking them accessible from python code can be as simple as adding an attribute\nname to the \"c_struct_fields\" value in PulseSomethingInfo objects.\n\nSee `github #3 <https://github.com/mk-fg/python-pulse-control/issues/3>`_\nfor a more concrete example of finding/adding such stuff.\n\nFor info and commands that are not available through libpulse introspection API,\nit is possible to use ``pulsectl.connect_to_cli()`` fallback function, which\nwill open unix socket to server's \"module-cli\" (signaling to load it, if\nnecessary), which can be used in exactly same way as \"pacmd\" tool (not to be\nconfused with \"pactl\", which uses native protocol instead of module-cli) or\npulseaudio startup files (e.g. \"default.pa\").\n\nProbably a bad idea to parse string output from commands there though, as these\nare not only subject to change, but can also vary depending on system locale.\n\n\nVolume\n``````\n\nIn PulseAudio, \"volume\" for anything is not a flat number, but essentially a\nlist of numbers, one per channel (as in \"left\", \"right\", \"front\", \"rear\", etc),\nwhich should correspond to channel map of the object it relates/is-applied to.\n\nIn this module, such lists are represented by PulseVolumeInfo objects.\n\nI.e. ``sink.volume`` is a PulseVolumeInfo instance, and all thin/simple wrappers\nthat accept index of the object, expect such instance to be passed, e.g.\n``pulse.sink_input_volume_set(sink.index, sink.volume)``.\n\nThere are convenience ``volume_get_all_chans``, ``volume_set_all_chans`` and\n``volume_change_all_chans`` methods to get/set/adjust volume as/by a single\nnumeric value, which is also accessible on PulseVolumeInfo objects as a\n``value_flat`` property.\n\nPulseVolumeInfo can be constructed from a numeric volume value plus number of\nchannels, or a python list of per-channel numbers.\n\nAll per-channel volume values in PulseVolumeInfo (and flat values in the wrapper\nfuncs above), are float objects in 0-65536 range, with following meanings:\n\n* 0.0 volume is \"no sound\" (corresponds to PA_VOLUME_MUTED).\n\n* 1.0 value is \"current sink volume level\", 100% or PA_VOLUME_NORM.\n\n* >1.0 and up to 65536.0 (PA_VOLUME_MAX / PA_VOLUME_NORM) - software-boosted\n  sound volume (higher values will negatively affect sound quality).\n\nProbably a good idea to set volume only in 0-1.0 range and boost volume in\nhardware without quality loss, e.g. by tweaking sink volume (which corresponds\nto ALSA/hardware volume), if that option is available.\n\nNote that ``flat-volumes=yes`` option (\"yes\" by default on some distros, \"no\" in\ne.g. Arch Linux) in pulseaudio daemon.conf already scales device-volume with the\nvolume of the \"loudest\" application, so already does what's suggested above.\n\nFractional volume values used in the module get translated (in a linear fashion)\nto/from pa_volume_t integers for libpulse. See ``src/pulse/volume.h`` in\npulseaudio sources for all the gory details on the latter (e.g. how it relates\nto sound level in dB).\n\nCode example::\n\n  from pulsectl import Pulse, PulseVolumeInfo\n\n  with Pulse('volume-example') as pulse:\n    sink_input = pulse.sink_input_list()[0] # first random sink-input stream\n\n    volume = sink_input.volume\n    print(volume.values) # list of per-channel values (floats)\n    print(volume.value_flat) # average level across channels (float)\n\n    time.sleep(1)\n\n    volume.value_flat = 0.3 # sets all volume.values to 0.3\n    pulse.volume_set(sink_input, volume) # applies the change\n\n    time.sleep(1)\n\n    n_channels = len(volume.values)\n    new_volume = PulseVolumeInfo(0.5, n_channels) # 0.5 across all n_channels\n    # new_volume = PulseVolumeInfo([0.15, 0.25]) # from a list of channel levels (stereo)\n    pulse.volume_set(sink_input, new_volume)\n    # pulse.sink_input_volume_set(sink_input.index, new_volume) # same as above\n\nIn most common cases, doing something like\n``pulse.volume_set_all_chans(sink_input, 0.2)`` should do the trick though -\nno need to bother with specific channels in PulseVolumeInfo there.\n\n\nString values\n`````````````\n\nlibpulse explicitly returns utf-8-encoded string values, which are always\ndecoded to \"abstract string\" type in both python-2 (where it's called \"unicode\")\nand python-3 (\"str\"), for consistency.\n\nIt might be wise to avoid mixing these with encoded strings (\"bytes\") in the code,\nespecially in python-2, where \"bytes\" is often used as a default string type.\n\n\nEnumerated/named values (enums)\n```````````````````````````````\n\nIn place of C integers that correspond to some enum or constant (e.g. -1 for\nPA_SINK_INVALID_STATE), module returns EnumValue objects, which are comparable\nto strings (\"str\" type in py2/py3).\n\nFor example::\n\n  >>> pulsectl.PulseEventTypeEnum.change == 'change'\n  True\n  >>> pulsectl.PulseEventTypeEnum.change\n  <EnumValue event-type=change>\n  >>> pulsectl.PulseEventTypeEnum\n  <Enum event-type [change new remove]>\n\nIt might be preferrable to use enums instead of strings in the code so that\ninterpreter can signal error on any typos or unknown values specified, as\nopposed to always silently failing checks with bogus strings.\n\n\nEvent-handling code, threads\n````````````````````````````\n\nlibpulse clients always work as an event loop, though this module kinda hides\nit, presenting a more old-style blocking interface.\n\nSo what happens on any call (e.g. ``pulse.mute(...)``) is:\n\n* Make a call to libpulse, specifying callback for when operation will be completed.\n* Run libpulse event loop until that callback gets called.\n* Return result passed to that callback call, if any (for various \"get\" methods).\n\n``event_callback_set()`` and ``event_listen()`` calls essentally do raw first\nand second step here.\n\nWhich means that any pulse calls from callback function can't be used when\n``event_listen()`` (or any other pulse call through this module, for that matter)\nwaits for return value and runs libpulse loop already.\n\nOne can raise PulseLoopStop exception there to make ``event_listen()`` return,\nrun whatever pulse calls after that, then re-start the ``event_listen()`` thing.\n\nThis will not miss any events, as all blocking calls do same thing as\n``event_listen()`` does (second step above), and can cause callable passed to\n``event_callback_set()`` to be called (when loop is running).\n\nAlso, same instance of libpulse eventloop can't be run from different threads,\nnaturally, so if threads are used, client can be initialized with\n``threading_lock=True`` option (can also accept lock instance instead of True)\nto create a mutex around step-2 (run event loop) from the list above, so\nmultiple threads won't do it at the same time.\n\nFor proper python eventloop integration (think twisted or asyncio),\nuse `pulsectl-asyncio`_ module instead.\n\nThere are also some tricks mentioned in `github #11\n<https://github.com/mk-fg/python-pulse-control/issues/11>`_ to shoehorn this\nmodule into async apps, but even with non-asyncio eventloop, starting from\npulsectl-asyncio would probably be much easier.\n\n\nTests\n`````\n\nTest code is packaged/installed with the module and can be useful to run when\nchanging module code, or to check if current python, module and pulseudio\nversions all work fine together.\n\nCommands to run tests from either checkout directory or installed module::\n\n  % python2 -m unittest discover\n  % python3 -m unittest discover\n\nNote that if \"pulsectl\" module is available both in current directory\n(e.g. checkout dir) and user/system python module path, former should always\ntake priority for commands above.\n\nAdd e.g. ``-k test_stream_move`` for commands above to match and run specific\ntest(s), and when isolating specific failure, it might also be useful to run\nwith PA_DEBUG=1 env-var to get full verbose pulseaudio log, for example::\n\n  % PA_DEBUG=1 python -m unittest discover -k test_module_funcs\n\nTest suite runs ad-hoc isolated pulseaudio instance with null-sinks (not\ntouching hardware), custom (non-default) startup script and environment,\nand interacts only with that instance, terminating it afterwards.\nStill uses system/user daemon.conf files though, so these can affect the tests.\n\nAny test failures can indicate incompatibilities, bugs in the module code,\nissues with pulseaudio (or its daemon.conf) and underlying dependencies.\nThere are no \"expected\" test case failures.\n\nAll tests can run for up to 10 seconds currently (v19.9.6), due to some\ninvolving playback (using paplay from /dev/urandom) being time-sensitive.\n\n\nChangelog and versioning scheme\n```````````````````````````````\n\nThis package uses one-version-per-commit scheme (updated by pre-commit hook)\nand pretty much one release per git commit, unless more immediate follow-up\ncommits are planned or too lazy to run ``py setup.py sdist bdist_wheel upload``\nfor some trivial README typo fix.\n\n| Version scheme: ``{year}.{month}.{git-commit-count-this-month}``\n| I.e. \"16.9.10\" is \"11th commit on Sep 2016\".\n|\n\nThere is a `CHANGES.rst <CHANGES.rst>`_ file with the list of any intentional\nbreaking changes (should be exceptionally rare, if any) and new/added\nnon-trivial functionality.\n\n| It can be a bit out of date though, as one has to remember to update it manually.\n| \"Last synced/updated:\" line there might give a hint as to by how much.\n\n\n\nInstallation\n------------\n\nIt's a regular package for Python (3.x or 2.x).\n\n`If a package is available for your distribution`_,\nusing your package manager is the recommended way to install it.\n\nOtherwise, using pip_ is the best way::\n\n  % pip install pulsectl\n\n(add --user option to install into $HOME for current user only)\n\nBe sure to use python3/python2, pip3/pip2, easy_install-... commands\nbased on which python version you want to install the module for,\nif you are still using python2 (and likely have python3 on the system as well).\n\nIf you don't have \"pip\" command::\n\n  % python -m ensurepip\n  % python -m pip install --upgrade pip\n  % python -m pip install pulsectl\n\n(same suggestion wrt \"install --user\" as above)\n\nOn a very old systems, one of these might work::\n\n  % curl https://bootstrap.pypa.io/get-pip.py | python\n  % pip install pulsectl\n\n  % easy_install pulsectl\n\n  % git clone --depth=1 https://github.com/mk-fg/python-pulse-control\n  % cd python-pulse-control\n  % python setup.py install\n\n(all of install-commands here also have --user option)\n\nCurrent-git version can be installed like this::\n\n  % pip install 'git+https://github.com/mk-fg/python-pulse-control#egg=pulsectl'\n\nNote that to install stuff to system-wide PATH and site-packages\n(without --user), elevated privileges (i.e. root and su/sudo) are often required.\n\nUse \"...install --user\", `~/.pydistutils.cfg`_ or virtualenv_\nto do unprivileged installs into custom paths.\n\nMore info on python packaging can be found at `packaging.python.org`_.\n\n.. _If a package is available for your distribution: https://repology.org/project/python:pulsectl/versions\n.. _pip: http://pip-installer.org/\n.. _~/.pydistutils.cfg: http://docs.python.org/install/index.html#distutils-configuration-files\n.. _virtualenv: http://pypi.python.org/pypi/virtualenv\n.. _packaging.python.org: https://packaging.python.org/installing/\n\n\n\nLinks\n-----\n\n* pulsemixer_ - initial source for this project (embedded in the tool).\n\n* `pulsectl-asyncio`_ - similar libpulse wrapper to this one, but for async python code.\n\n* `libpulseaudio <https://github.com/thelinuxdude/python-pulseaudio/>`_ -\n  different libpulse bindings module, more low-level, auto-generated from\n  pulseaudio header files.\n\n  Branches there have bindings for different (newer) pulseaudio versions.\n\n* `pypulseaudio <https://github.com/liamw9534/pypulseaudio/>`_ -\n  high-level bindings module, rather similar to this one.\n\n* `pulseaudio-mixer-cli`_ - alsamixer-like script built on top of this module.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python high-level interface and ctypes-based bindings for PulseAudio (libpulse)",
    "version": "24.4.0",
    "project_urls": {
        "Homepage": "http://github.com/mk-fg/python-pulse-control"
    },
    "split_keywords": [
        "pulseaudio",
        " libpulse",
        " pulse",
        " pa",
        " bindings",
        " sound",
        " audio",
        " ctypes",
        " control",
        " mixer",
        " volume",
        " mute",
        " source",
        " sink"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bde736106bb3e2241a5092af5b5384cffad4bd9c805f5355ca32450da6597900",
                "md5": "5e4daae8bc0d836ed2486118f9d7c4b6",
                "sha256": "ca2c71bf9cac485db6264112c1d50a2b6e94b8b61b7b7dd2211135f94f9ee3e2"
            },
            "downloads": -1,
            "filename": "pulsectl-24.4.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5e4daae8bc0d836ed2486118f9d7c4b6",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 35108,
            "upload_time": "2024-04-06T14:06:41",
            "upload_time_iso_8601": "2024-04-06T14:06:41.737858Z",
            "url": "https://files.pythonhosted.org/packages/bd/e7/36106bb3e2241a5092af5b5384cffad4bd9c805f5355ca32450da6597900/pulsectl-24.4.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dbfc10b9ccdffbd4d5c1e7d0aef1874e3d9adb72524339e825728777898ff51",
                "md5": "e26b82664face4c5b5591c20735bfc0f",
                "sha256": "697ed50e7d452e78678ae38e2ab935843008bec448955283cd0fb362867e3165"
            },
            "downloads": -1,
            "filename": "pulsectl-24.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e26b82664face4c5b5591c20735bfc0f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 41166,
            "upload_time": "2024-04-06T14:06:44",
            "upload_time_iso_8601": "2024-04-06T14:06:44.359464Z",
            "url": "https://files.pythonhosted.org/packages/9d/bf/c10b9ccdffbd4d5c1e7d0aef1874e3d9adb72524339e825728777898ff51/pulsectl-24.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-06 14:06:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mk-fg",
    "github_project": "python-pulse-control",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pulsectl"
}
        
Elapsed time: 0.20918s