Skip to main content

Client for Remote Alsamixer

Project description

Alsa GRPC Client

Small library that allows real-time volume control of ALSA devices

Example Usage

Note: Server must be running at <host>

from alsa_grpc_client import AlsaClient
from time import sleep

def on_connect(ctrl):
    print('Connected to', ctrl.card, ctrl.name, ctrl.volume)
    ctrl.subscribe(lambda: print('Received volume update for', ctrl.name, ctrl.volume))

client = AlsaClient('<host>', 50051, on_connect)
client.connect()
sleep(1)
for name, ctrl in client.controls.items():
    ctrl.set_volume(.5)
sleep(1)
client.disconnect()

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

alsa_grpc_client-0.0.16.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

alsa_grpc_client-0.0.16-py3-none-any.whl (2.8 kB view hashes)

Uploaded Python 3

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