PyOpenAL icon indicating copy to clipboard operation
PyOpenAL copied to clipboard

OpenAL bindings and audio playback for Python

Results 6 PyOpenAL issues
Sort by recently updated
recently updated
newest added

Hello. I'm working on audio 3D renderer with Python and PyOpenAL. I have problems : - I can't list all audio device from my windos PC - So I can't...

Library loading isn't great right now. It works, but it does unnecessary things and changes things that should not be changed. ### In `library_loader.py`: #### `load_other` `PATH` change will not...

Hello, first of all thanks for this module, which also reproduces .ogg files in an easy way. I haven't found in the examples something that helps to understand how to...

Im trying to run this simple code, positioning audio to the left but it still sounds the same. What am i doing wrong?I expected to hear the audio in my...

OS : W10 Python : 3.9.6 Hello, I'm trying to package my software with pyinstaller, including PyOpenAL, installed trough pip. Works great, but when running the exe generated, I get...

https://github.com/Zuzu-Typ/PyOpenAL/blob/b49212cafe21e27c540540e99aea8a5d859b95aa/openal/__init__.py#L815 The above line leaves dangling references in python 3.8 which causes OpenAL to crash. To reproduce: ``` for iteration in range(2): if not openal.oalGetInit(): openal.oalInit() source1 = openal.oalOpen(path_to_a_sound) source2...