JuergenBS / pymumble

Mumble client implementation in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PYMUMBLE python library

Description

This library is a fork of a fork of a fork (initial from https://github.com/Robert904/pymumble). But we will try to make pymumble better. So i consider this fork (the @Azlux one) the current fork alive of pymumble.

The wiki/API explanation is HERE

The Python 2 version is available in the master branch. It's working !! But since we have move ion python 3, the python 2 version will not have futur improvements.

Liste of applications using pymumble

For a client application example, you can check this list :

Status

  • Compatible with mumble 1.2.4 and normally 1.2.3 and 1.2.2
  • Support OPUS. Speex is not supported
  • Receive and send audio, get users and channels status
  • Set properties for users (mute, comments, etc.) and go to a specific channel
  • Callback mechanism to react on server events
  • Manage the blobs (images, long comments, etc.)
  • Can send text messages to user and channel
  • Ping statistics

What is missing:

I don't need those features, so if you want one, open an issue and i will work on it.
  • UDP media. Currently it works only in TCP tunneling mode (the standard fallback of mumble when UDP is not working)
  • basically server management (user creation and registration, ACLs, groups, bans, etc.)
  • Positionning is not managed, but it should be easy to add
  • Audio targets (whisper, etc.) is not managed in outgoing audio, and has very basic support in incoming
  • Probably a lot of other small features

Architecture

The library is based on the Mumble object, which is basically a thread. When started, it will try to connect to the server and start exchange the connections messages with the server. This thread is in a loop that take care of the pings, send the commands to the server, check for incoming messages including audio and check for audio to be sent. The rate of that loop is controlled by how long it will wait for an incoming message before going further.

It rely on several other modules and objects, but they should probably never be instanciated by an application.

Requirements/installation

It seems to work fine on Python 3.

Check the requirement.txt to know the versions of opuslib and protobuf needed you need pip3 because it's a python3 librairy (apt-get install python3-pip) for install dependencies (pip3 install -r requirements.txt)

Thanks

  • @raylu for making pymumble speak into channels
  • @schlarpc for fixes on buffer

License

Copyright Robert Hendrickx rober@percu.be - 2014

pymumble is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

About

Mumble client implementation in Python

License:GNU General Public License v3.0


Languages

Language:Python 100.0%