A Channel viewer protocol for mumble server with extra features
900
MumbleCVP is ready to deploy channel viewing protocol using ICE for your mumble server. This can be used with other available tools to view your connected users.
Additionally I have added a separate endpoint (/widget) which can be used with any JSON viewer widget in your phone to add it as a widget.
how to use:
edit your mumble-server.ini and enable ice.
I recommend using docker compose for it.
version: "3"
services:
mumblecvp:
image: ajmandourah/mumblecvp:latest
container_name: mumblecvp
volumes:
- PATH_TO_YOUR_SLICEFILE:/data #copy Murmur.ice from the default path (usually it is '/usr/share/slice/Murmur.ice') to a separate folder and add it as a volume here.
environment:
- MUMBLE_SERVER=YOUR_MUMBLE_IP_ADDRESS
- ICE_PORT=6502
- SLICEFILE=/data/Murmur.ice
- PUID=1000
- PGID=1000
- TZ=Europe/London
command: hypercorn mumble-fastapi:app --bind 0.0.0.0:21803 #port can be changed as you desire
network_mode: host
restart: unless-stopped
Content type
Image
Digest
Size
337.1 MB
Last updated
over 4 years ago
docker pull ajmandourah/mumblecvp