azlux
azlux
`mumble.stop()` ask the mumble thread to stop, so it can take time (few second) cleaning all sounds and callbacks call. Related to https://github.com/azlux/pymumble/issues/38 , if the close() (Maybe renamed to...
Before calling `start()`, can you check the command `self.mumble.is_alive()` ? Once this function return False, you should be able to reconnect again without error. In case it still not working,...
no problem for the issue. The simple answer is not. The [main loop](https://github.com/azlux/pymumble/blob/pymumble_py3/pymumble_py3/mumble.py#L166) don't have reset/disconnect/stop feature. You can force the state of `self.connected` and the loop will start the...
Pymumble still not support UDP yet. So no UDP statistics for now. All voices is warp into the TCP session. There are some work for the UDP implementation, but I'm...
Hi, Can you put the part of the bot you use for the user voice parsing ? I suppose you use the callback `PYMUMBLE_CLBK_SOUNDRECEIVED ` function. Maybe you will have...
In fact, the callback will be trigger user by user. So you also need to merge the sound manually (https://github.com/azlux/pymumble/blob/9de35a56f177aa179caa9ae0152241369e9ce282/pymumble_py3/mumble.py#L519) Using a callback isn't better, there are a little bit...
Sorry I don't have example. You can use a profiler library to find the bottleneck of your code ([ example ](https://subscription.packtpub.com/book/application_development/9781787282896/1/ch01lvl1sec3/finding-bottlenecks-with-cprofile)) Using a thread to manage input and output separately...
Do you have any news about the tests ?
Lot of changes here. I need to check that, not sure my IDE will like having some import removed, I always find autoflake useless because It remove to much. Thank...
See https://github.com/bcicen/ctop/issues/73#issuecomment-662883659 (not official, this repo is my personal one, it's up-to-date automatically on github releases)