You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sounds great! It doesn't seem to work in python3.4. Some of the print statements yack out, and if I fix those (easy enough for a noob like me), it looks like there's a difference in how threading works:
File "/usr/local/lib/python3.4/dist-packages/PyAudioMixer.py", line 23, in <module>
import thread
ImportError: No module named 'thread'
I'll keep chewing on it and will submit a PR if I figure it out.
Thanks!
The text was updated successfully, but these errors were encountered:
To import thread you need to know that is changed to _thread in python 3 however it is better to refactor to use the threading module in-stead. Feel free to look at my implementation for inspiration or if mine works for you just use it in-stead. Sorry for necro.
Sounds great! It doesn't seem to work in python3.4. Some of the print statements yack out, and if I fix those (easy enough for a noob like me), it looks like there's a difference in how threading works:
I'll keep chewing on it and will submit a PR if I figure it out.
Thanks!
The text was updated successfully, but these errors were encountered: