Mumble
Paquet d’installation silencieuse pour Mumble
1.5.735-7
Messaging
Messaging
- package: tis-mumble
- name: Mumble
- version: 1.5.735-7
- categories: Messaging
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Mumble VoIP Team
- licence: BSD
- locale: all
- target_os: windows
- impacted_process: mumble
- architecture: arm
- signature_date:
- size: 24.25 Mo
- installed_size: 70.36 Mo
- homepage : https://www.mumble.info/
package : tis-mumble
version : 1.5.735-7
architecture : arm
section : base
priority : optional
name : Mumble
categories : Messaging
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : Mumble is a voice over IP (VoIP) application primarily designed for use by gamers and is similar to programs such as TeamSpeak.
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://github.com/mumble-voip/mumble/releases
installed_size : 70356992
impacted_process : mumble
description_fr : Mumble est un logiciel libre de voix sur IP, dont le principal usage est la communication pendant les parties de jeux en réseau.
description_pl : Mumble wolny program do komunikacji głosowej przeznaczony głównie dla graczy, działający na podobnej zasadzie co Ventrilo czy TeamSpeak.
description_de : Mumble ist eine freie Sprachkonferenzsoftware, die sich wegen niedriger Latenzzeit und guter Audioqualität unter anderem für den Einsatz parallel zu Onlinespielen eignet.
description_es : Mumble es una aplicación multiplataforma libre de voz sobre IP especializada en la multiconferencia. Sus principales usuarios son jugadores, y es similar a programas privativos como TeamSpeak y Ventrilo.
description_pt : Mumble é uma aplicação de voz sobre IP (VoIP) concebida principalmente para utilização por jogadores e é semelhante a programas como o TeamSpeak
description_it : Mumble è un'applicazione VoIP (Voice over IP) progettata principalmente per i giocatori e simile a programmi come TeamSpeak
description_nl : Mumble is een VoIP-toepassing (Voice over IP) die voornamelijk is ontworpen voor gebruik door gamers en lijkt op programma's als TeamSpeak
description_ru : Mumble - это приложение для передачи голоса по IP (VoIP), предназначенное в основном для геймеров и похожее на такие программы, как TeamSpeak
audit_schedule :
editor : Mumble VoIP Team
keywords : mumble,voice,over,ip,voip
licence : BSD
homepage : https://www.mumble.info/
package_uuid : fab82168-13e6-4668-a5f4-e7cc7ed4b8aa
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/mumble-voip/mumble/releases
min_os_version : 5.1
max_os_version :
icon_sha256sum : af8da447a3b49634d195769aea706fe9f73d1c9ddab021c8f7e1fa5a14dbe38f
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-11-12T15:19:56.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : k9Wonrxf6+gfHjoXPfHxgcuqXGyfh+6htsxNb88kGKDs8tkeXofT7KEZd+rFqvDNoNQQvqlMCHPWEG/jQY03swCy8689ZBpRTcRHYOoKABetosiEHur5FUZ0l+3MtKD6BWq/AY0c1E/Rux1Qr5sYLV/Ar06E0d9GBzqukIDAqC3+ORbUGS+WOV/LwCSZJ/Qd42i50UisEEHQodKx+EkH8vn4vtIs3PLCJDs2Hokapa/PV3AAiMdhgC7o+wWKyiAQJvwPZIaZ6n+cTAWaLMgx8j96dGyd35CZtnsc08/7kSM9cDVjA1rJXXb1W7mRtYSg1YRBfbOGDsFBm9iPTWKfkg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
for soft in installed_softwares("mumble"):
if Version(soft["version"]) < Version(control.version.split("-")[0]):
print("Remove %s %s" % (soft["name"], soft["version"]))
run(uninstall_cmd(soft["key"]))
install_msi_if_needed(glob.glob("*.msi")[0])
def session_setup():
print("Disabling: update check, telemetry, overlay")
registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\ui", "updatecheck", "false")
registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\ui", "usage", "false")
registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\ui", "plugincheck", "false")
registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\overlay", "enable", "false")
registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\privacy", "hideos", "true")
registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\audio", "mutecue", "false")
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Initializing variables
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
git_repo = "mumble-voip/mumble"
url_api = "https://api.github.com/repos/%s/releases" % git_repo
release_found = False
bin_end = "x64.msi"
# Getting latest version from official sources
print("API used is: %s" % url_api)
releases = json.loads(wgets(url_api, proxies=proxies))
for json_load in releases:
for download in json_load["assets"]:
if download["name"].endswith(bin_end) and "client" in download["name"]:
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v", "")
latest_bin = download["name"]
release_found = True
break
if release_found:
break
print("Latest %s version is: %s" % (app_name, version))
print("Download url is: %s" % url_dl)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_dl, latest_bin, proxies=proxies)
# Checking version from file
version_from_file = get_version_from_binary(latest_bin)
if version != version_from_file:
version = version_from_file
# Changing version of the package
control.version = "%s-%s" % (version, control.version.split("-", 1)[-1])
control.save_control_to_wapt()
print("Changing package version to: %s in WAPT\\control" % control.version)
# Deleting outdated binaries
remove_outdated_binaries(version)
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
d343a1a67ca5a338fdf98ac32be681548a7bef3761552c5f41bbdc07b4cc9309 : WAPT/control
af8da447a3b49634d195769aea706fe9f73d1c9ddab021c8f7e1fa5a14dbe38f : WAPT/icon.png
dc016d9f00ec632d4217ea7b4ecdc2aa6089f094fe36c8005cf78ed345ba08d4 : luti.json
2778beac1a7970814372f6b688645cb67a831f52d79e008201461769fadc20bb : mumble_client-1.5.735.x64.msi
9d4919f3e734c25255864ae0500d42c77ad99ba9df9aaa0c74540a28d57071d1 : setup.py
27135503e1d27d03df7afbebeb4b1f9e4637e2c3d62fa87b88bfd0ccb60b981d : update_package.py