fhem / fhem-docker

A basic Docker image for FHEM house automation system, based on Debian Linux.
https://fhem.de/
MIT License
85 stars 27 forks source link

libsox-fmt-all fehlt #240

Closed sidey79 closed 2 months ago

sidey79 commented 3 months ago

Current

root@a80041d10d93:/opt/fhem# dpkg -s libsox-fmt-all
dpkg-query: package 'libsox-fmt-all' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files.

Expected:

root@c189442528e8:/opt/fhem# dpkg -s libsox-fmt-all
Package: libsox-fmt-all
Status: install ok installed
Priority: optional
Section: libs
Installed-Size: 64
Maintainer: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: sox
Version: 14.4.2+git20190427-2+deb11u2
Depends: libsox-fmt-alsa (= 14.4.2+git20190427-2+deb11u2), libsox-fmt-ao (= 14.4.2+git20190427-2+deb11u2), libsox-fmt-base (= 14.4.2+git20190427-2+deb11u2), libsox-fmt-mp3 (= 14.4.2+git20190427-2+deb11u2), libsox-fmt-oss (= 14.4.2+git20190427-2+deb11u2), libsox-fmt-pulse (= 14.4.2+git20190427-2+deb11u2)
Description: All SoX format libraries
 SoX is the swiss army knife of sound processing.
 .
 This is a metapackage depending on all free SoX format libraries.
Homepage: https://sox.sourceforge.io/
roobbb commented 3 months ago

Hi there.

A new pull from ghcr.io/fhem/fhem-docker:dev-bullseye fixes the issue. The lib is now included by default:

root@d5c8dcd7fcc2:/opt/fhem# dpkg -s libsox-fmt-all
Package: libsox-fmt-all
Status: install ok installed
...

The audio output from a TTS-device works fine 😀

Thank you very much and kind regards roobbb

sidey79 commented 2 months ago

241