We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cd776b commit 6d72669Copy full SHA for 6d72669
src/jack.py
@@ -41,7 +41,10 @@
41
_libname = _find_library('jack')
42
43
if _libname is None:
44
- raise OSError('JACK library not found')
+ if _platform.system() == 'Darwin' and _platform.machine() == 'arm64':
45
+ _libname = '/opt/homebrew/lib/libjack.dylib'
46
+ else:
47
+ raise OSError('JACK library not found')
48
_lib = _ffi.dlopen(_libname)
49
50
_AUDIO = b'32 bit float mono audio'
0 commit comments