rnnoise_python
rnnoise_python copied to clipboard
Segmentation fault when importing wave
I tried to use the rnnoise.py file in my project, but when I imported the standard wave library after the file, it gave me a Segmentation fault. However I can't seem to find the exact pattern, as importing wave before (or sometime just after) rnnoise works, as well as adding the import clause directly into rnnoise.py.
This code won't work for example :
import rnnoise
import threading
import subprocess
import wave
But those ones will :
import wave
import rnnoise
import threading
import subprocess
import rnnoise
import wave
import threading
import subprocess
import rnnoise
import threading
import subprocess
Maybe it comes from elsewhere, but I don't seem to have the same problem when not using the wave library.
Does this come from an incompatibility of some kind or is it an other problem completely ?