Closed sandreas closed 2 years ago
Hello, we currently don’t support an native AudioBackend on macOS. You could try using OpenAL and see if it picks that up: https://github.com/feliwir/SharpAudio/blob/master/src/SharpAudio.ALBinding/AlNative.cs#L31
Either of these dylibs has to be available
Awesome, that worked - thank you. Short "howto" (not the best or most elegant way, but it works):
brew install openal-soft
brew list openal-soft
# find something in the output like
# /usr/local/Cellar/openal-soft/1.21.1/lib/libopenal.1.21.1.dylib
# copy this file to local lib path
sudo cp /usr/local/Cellar/openal-soft/1.21.1/lib/libopenal.1.21.1.dylib /usr/local/lib/libopenal.dylib
Hello,
I just wanted to try out the library on MacOS with the sample Code from the Readme:
It failed with and unhandled exception:
The line, that fails, is:
Environment:
dotnet --version
: 6.0.101What am I doing wrong?