You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
I'm using balena along with balena-browser https://github.com/balena-labs-projects/browser and balena-audio for my app (also using appache and websocket for communication) which is running in kiosk mode. My web app is playing some videos, user hearing the sound via headhones from 3.5mm jack. This setup worked perfectly for months.
I don't know why, maybe some version changed, but now I'm getting an error message from the audio service: amixer: Control sysdefault:1 element write error: Operation not permitted
and sound is not working on device.
Device has type of Generic x86_64 (GPT).
Adding content of my docker-compose here:
version: '2'
volumes:
settings: # Only required if using PERSISTENT flag (see below)
html:
pulse:
services:
browser:
build: ./kiosk
privileged: true # required for UDEV to find plugged in peripherals such as a USB mouse
network_mode: host
depends_on:
- wsserver
- apache
- audio
volumes:
- 'settings:/data' # Only required if using PERSISTENT flag (see below)
- 'html:/home/html'
- 'pulse:/run/pulse' # Only required if using PA over UNIX socket
ports:
- "8900:5900"
labels:
io.balena.features.dbus: '1'
cap_add:
- NET_ADMIN
environment:
DBUS_SYSTEM_BUS_ADDRESS: "unix:path=/host/run/dbus/system_bus_socket"
wsserver:
hostname: wsserver
build: ./wsserver
privileged: true # required for UDEV to find plugged in peripherals such as a USB mouse
network_mode: host
ports:
- "8080:8080"
depends_on:
- apache
apache:
build: ./apache
privileged: true
network_mode: host
ports:
- '80'
volumes:
- html:/var/www/html
audio:
image: bhcr.io/balenalabs/audio-amd64
privileged: true
ports:
- 4317:4317
labels:
io.balena.features.dbus: '1'
volumes:
- pulse:/run/pulse
Also getting these logs on balena-cloud:
Its seems audi service is failing and keep trying to restart.
Could anyone help me with this?
I'm read all the sites, tips found on internet. Nothing helped.
The text was updated successfully, but these errors were encountered:
Hi there,
I'm using balena along with balena-browser https://github.com/balena-labs-projects/browser and balena-audio for my app (also using appache and websocket for communication) which is running in kiosk mode. My web app is playing some videos, user hearing the sound via headhones from 3.5mm jack. This setup worked perfectly for months.
I don't know why, maybe some version changed, but now I'm getting an error message from the audio service:
amixer: Control sysdefault:1 element write error: Operation not permitted
and sound is not working on device.
Device has type of Generic x86_64 (GPT).
Adding content of my docker-compose here:
Also getting these logs on balena-cloud:
Its seems audi service is failing and keep trying to restart.
Could anyone help me with this?
I'm read all the sites, tips found on internet. Nothing helped.
The text was updated successfully, but these errors were encountered: