All Projects → mymindstorm → matrix-appservice-mumble

mymindstorm / matrix-appservice-mumble

Licence: MIT license
Matrix <--> Murmur Bridge

Programming Languages

typescript
32286 projects
shell
77523 projects

Projects that are alternatives of or similar to matrix-appservice-mumble

guildbit
🔉 Mumble Hosting Platform
Stars: ✭ 50 (+85.19%)
Mutual labels:  mumble, murmur
murmur
Murmur server (Mumble) Docker container - https://mumble.info
Stars: ✭ 31 (+14.81%)
Mutual labels:  mumble, murmur
Matterbridge
bridge between mattermost, IRC, gitter, xmpp, slack, discord, telegram, rocketchat, twitch, ssh-chat, zulip, whatsapp, keybase, matrix, microsoft teams, nextcloud, mumble, vk and more with REST API (mattermost not required!)
Stars: ✭ 4,452 (+16388.89%)
Mutual labels:  matrix, mumble
Maubot
A plugin-based Matrix bot system.
Stars: ✭ 226 (+737.04%)
Mutual labels:  matrix
Nio
💬 Nio is an upcoming matrix client for iOS.
Stars: ✭ 235 (+770.37%)
Mutual labels:  matrix
PyGLM
Fast OpenGL Mathematics (GLM) for Python
Stars: ✭ 167 (+518.52%)
Mutual labels:  matrix
frodo
practical quantum-secure key encapsulation from generic lattices
Stars: ✭ 17 (-37.04%)
Mutual labels:  matrix
Android 3d Layout
Wow effect, transform your layout into 3D views
Stars: ✭ 199 (+637.04%)
Mutual labels:  matrix
elm-3d-camera
Camera type for doing 3D rendering in Elm
Stars: ✭ 12 (-55.56%)
Mutual labels:  matrix
eigen
Owl's OCaml Interface to Eigen3 C++ Library
Stars: ✭ 30 (+11.11%)
Mutual labels:  matrix
eigen-js
⚡ Eigen-js is a port of the Eigen C++ linear algebra library
Stars: ✭ 78 (+188.89%)
Mutual labels:  matrix
Blasjs
Pure Javascript manually written 👌 implementation of BLAS, Many numerical software applications use BLAS computations, including Armadillo, LAPACK, LINPACK, GNU Octave, Mathematica, MATLAB, NumPy, R, and Julia.
Stars: ✭ 241 (+792.59%)
Mutual labels:  matrix
Shafa-CD
File Compressor written in C using both Shannon Fano and RLE algorithms
Stars: ✭ 24 (-11.11%)
Mutual labels:  matrix
Tmatrix
Terminal based replica of the digital rain from The Matrix.
Stars: ✭ 227 (+740.74%)
Mutual labels:  matrix
interview-cookbook
A playground for learning DataStructures, Algorithms, and Object-Oriented Concepts.
Stars: ✭ 25 (-7.41%)
Mutual labels:  matrix
Mathnet Numerics
Math.NET Numerics
Stars: ✭ 2,688 (+9855.56%)
Mutual labels:  matrix
matrix-synapse-rest-password-provider
Password Provider for Synapse fetching data from a REST endpoint
Stars: ✭ 35 (+29.63%)
Mutual labels:  matrix
contentful-reference-matrix-field-app
Contentful App that adds UI for a table-like list of references with other associated data.
Stars: ✭ 28 (+3.7%)
Mutual labels:  matrix
Pygraphblas
GraphBLAS for Python
Stars: ✭ 252 (+833.33%)
Mutual labels:  matrix
python
A Python 3 asyncio Matrix framework.
Stars: ✭ 115 (+325.93%)
Mutual labels:  matrix

matrix-appservice-mumble

A Matrix to Mumble bridge. It sends messages between bridged rooms and tells you when people join / leave Murmur.

Installation

These instructions are for a development version, please use the instructions located here

Compiling Murmur with gRPC support

Murmur is not compiled with gRPC support by default (as of 1.3.0). If you are using Fedora or CentOS, I have a COPR that you can use. Otherwise, you will need to compile Murmur yourself. I have some basic notes and directions on compiling Murmur here.

Setup bridge

  1. Install

    Using npm:

    npm install --global matrix-appservice-mumble

    Manually:

    Download the latest release and build

    npm i
    ./build.sh
  2. Configure your homeserver

    1. Use matrix-appservice-mumble to generate mumble-registration.yaml
      Replace "http://localhost:port" with the address your homeserver will use to talk with matrix-appservice-mumble.
      The port matrix-appservice-mumble uses can be set with -p. (Default is 8090)
    matrix-appservice-mumble -r -u "http://localhost:port"
    1. Copy mumble-registration.yaml to your homeserver install directory, e.g. /etc/matrix-synapse/

    2. Edit homeserver.yaml and add the path to the just generated mumble-registration.yaml.

    # A list of application service config files to use
    app_service_config_files:
    - /etc/matrix-synapse/mumble-registration.yaml
  3. Create a new file named mumble-config.yaml on the server that matrix-appservice-mumble is installed on.

    • Copy the contents of mumble-config.yaml.example into mumble-config.yaml and change the options as needed.

    • matrixRoom should be a private room

      1. Create a new room (should be invite-only, which is the default)

      2. Invite @mumblebot:<your homeserver domain> to the room. Your client may warn you that the user does not exist, click "Invite anyway"

      3. Copy the internal room id of the newly created room to mumble-config.yaml

  4. Start the bridge

$ matrix-appservice-mumble -c /path/to/mumble-config.yaml -f /path/to/mumble-registration.yaml
  1. Link a room to a channel

    1. You should see a message from the bot in matrixRoom after it has successfully started up

    2. Send a link command to the admin room (matrixRoom). Type help to get a list of all commands.

    # To link the topmost (root) Mumble channel
    link <internal Matrix room id> root_channel
    # To link a subchannel
    link <internal Matrix room id> <name of Mumble channel>
    # To link the root channel and send join/leave messages
    link <internal Matrix room id> root_channel true
    # To link a subchannel and send join/leave messages
    link <internal Matrix room id> <name of Mumble channel> true

Troubleshooting

Bridge Startup

  • Unhandled rejection Error: Failed to join room on bridge startup
    • This means that the bot cannot join matrixRoom. Make sure that the bot has access (I.e. has the bot been invited) to the room.
    • Check the homeserver logs (e.g. /var/log/matrix-synapse/homeserver.log) for more information

Matrix -> Murmr not working

  • Can you curl url in mumble-config.yaml from the homeserver?
    • Check firewall configuration
    • Check if matrix-appservice-mumble is running
  • Check logs
  • Check mumble-registration.yaml on both sides (should be in working directory of matrix-appservice-mumble and on homeserver)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].