Running the executable included in the release asset "v1.18.2.Linux.zip" results in the following error whenever trying to play an audio file:
ALSA lib dlmisc.c:337:(snd_dlobj_cache_get0) Cannot open shared library libasound_module_pcm_oss.so /usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_pcm_oss.so: cannot open shared object file: No such file or directory
My distribution does have /usr/lib/alsa-lib/libasound_module_pcm_oss.so, but it seems something is specifically looking for that library in /usr/lib/x86_64-linux-gnu/alsa-lib/.
Workaround
As a user, rather than downloading the Linux release and running the audio_modder:
- Download the source code
cd into the root of the repo
python3 -m venv python-venv
python-venv/bin/pip install -r requirements.txt
After this, you may have to run the application with:
python-venv/bin/python3 audio_modder.py
Running the executable included in the release asset "v1.18.2.Linux.zip" results in the following error whenever trying to play an audio file:
ALSA lib dlmisc.c:337:(snd_dlobj_cache_get0) Cannot open shared library libasound_module_pcm_oss.so /usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_pcm_oss.so: cannot open shared object file: No such file or directoryMy distribution does have
/usr/lib/alsa-lib/libasound_module_pcm_oss.so, but it seems something is specifically looking for that library in/usr/lib/x86_64-linux-gnu/alsa-lib/.Workaround
As a user, rather than downloading the Linux release and running the
audio_modder:cdinto the root of the repopython3 -m venv python-venvpython-venv/bin/pip install -r requirements.txtAfter this, you may have to run the application with:
python-venv/bin/python3 audio_modder.py