mumble-ruby
mumble-ruby copied to clipboard
A headless mumble client API written in Ruby
I just created the readme's example client script and ran it on Ruby 2.0.0 (Windows 7) and the bot connects fine in localhost. Why is 2.1.0 listed as the minimum...
I believe that it's because `Mumble::User#mute` actively mutes the person and you define [mute as an attribute](https://github.com/mattvperry/mumble-ruby/blob/master/lib/mumble-ruby/user.rb#L10). Then, in `Mumble::Model#inspect`, you [call each attribute as a method with `send`](https://github.com/mattvperry/mumble-ruby/blob/master/lib/mumble-ruby/model.rb#L35) --...
I would like to auto-connect to a server and use the local microphone and speaker for communication. The script works fine but I can't hear or speak. any help would...
Looking for a reliable way to detect if there is a user talking in the current channel. Use case: I originally began looking at this project for using mumble in...
What format does the player.stream_named_pipe function expect? I've been playing around with concating raw files in various formats to a fifo pipe, but I've gotten nothing but noise out so...
I have mumble-ruby running fine on Windows, but I had to edit client.rb to replace the two lines that use uname to get the OS version and name (uname does...
Could you implement auto reconnecting if the connection is lost?