I encountered a NameError when trying to use the pyogg library. The error message indicates that c_int_p is not defined. This issue occurs when attempting to use the OpusDecoder from the pyogg library.
OS: macOS (M1)
Python version: 3.10.0
pyogg version: [Specify the version you are using]
Additional Information: I have installed the necessary dependencies for libopus using Homebrew:
I have also set the DYLD_LIBRARY_PATH environment variable in my .env file:
ibopus.opus_encoder_create.argtypes = [opus_int32, c_int, c_int, c_int_p] NameError: name 'c_int_p' is not defined. Did you mean: 'c_int'?