From fa3d5cf917dee93d725e8d7e69f540abaa909100 Mon Sep 17 00:00:00 2001 From: Tyler Stiene Date: Sun, 8 Nov 2020 17:58:08 -0500 Subject: [PATCH] add opusthreshold note to readme --- Makefile | 4 ++-- README.md | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 88c1f6d..4a0f5ce 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,9 @@ mumble-discord-bridge: $(GOFILES) docker-latest: docker build -t stieneee/mumble-discord-bridge:latest . - docker push stieneee/mumble-bridge-latest + docker push stieneee/mumble-discord-bridge:latest clean: - rm mumble-discord-bridge + rm -f mumble-discord-bridge .PHONY: all push clean \ No newline at end of file diff --git a/README.md b/README.md index 7f42d01..b00a2ff 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,16 @@ docker docker run -e MUMBLE_ADDRESS=example.com -e MUMBLE_PASSWORD=optional -e D docker stop mumble-discord-bridge && docker rm mumble-discord-bridge ``` +### Mumbler Server Setting + +To ensure compatibility please edit your murmur configuration file with the following + +```bash +opusthreshold=0 +``` + +This ensures all packets are opus encoded and should not cause any compatibility issues if your users are using up to date clients. + ## Building From Source This project requires Golang to build from source.