OBS Studio
Paquet d’installation silencieuse pour OBS Studio
32.1.0.0-31
Media
Media
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-obs-studio
- name: OBS Studio
- version: 32.1.0.0-31
- categories: Media
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Hugh "Jim" Bailey
- licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
- locale: all
- target_os: windows
- impacted_process: obs-amf-test,obs-ffmpeg-mux,obs-nvenc-test,obs-qsv-test,obs64,obs-browser-page
- architecture: x64
- signature_date:
- size: 157.81 Mo
- installed_size: 374.39 Mo
- homepage : https://obsproject.com/
- depends:
package : tis-obs-studio
version : 32.1.0.0-31
architecture : x64
section : base
priority : optional
name : OBS Studio
categories : Media
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : OBS Studio (Open Broadcaster Software) is a free and open source software for video recording and live streaming
depends : tis-vcredist
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.1
sources : https://github.com/obsproject/obs-studio/releases/latest
installed_size : 374389830
impacted_process : obs-amf-test,obs-ffmpeg-mux,obs-nvenc-test,obs-qsv-test,obs64,obs-browser-page
description_fr : OBS Studio (Open Broadcaster Software) est un logiciel libre et open source d'enregistrement vidéo et de streaming en direct
description_pl : OBS Studio (Open Broadcaster Software) to darmowe i otwarte oprogramowanie do nagrywania wideo i transmisji na żywo
description_de : OBS Studio (Open Broadcaster Software) ist eine kostenlose und quelloffene Software für Videoaufnahmen und Live-Streaming
description_es : OBS Studio (Open Broadcaster Software) es un software gratuito y de código abierto para la grabación de vídeo y la transmisión en directo
description_pt : OBS Studio (Open Broadcaster Software) é um software gratuito e de código aberto para gravação de vídeo e transmissão ao vivo
description_it : OBS Studio (Open Broadcaster Software) è un software gratuito e open source per la registrazione video e lo streaming dal vivo
description_nl : OBS Studio (Open Broadcaster Software) is een gratis en open source software voor video-opname en live streaming
description_ru : OBS Studio (Open Broadcaster Software) - это бесплатное программное обеспечение с открытым исходным кодом для записи видео и потокового вещания
audit_schedule :
editor : Hugh "Jim" Bailey
keywords : record,recorder,obs,studio,project,video,recording,live,stream,streaming
licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage : https://obsproject.com/
package_uuid : 91b742b7-4eca-42af-8152-c12a7345d525
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/obsproject/obs-studio/releases
min_os_version : 10.0.17763
max_os_version :
icon_sha256sum : 37c0a997ee9e5811e6ffaa1c7ce580275ef6cdcb46b2a285ad124f2451742654
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-12T07:59:49.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 : qWVVgopdb10ZrYT3s4tKCfHUjy0B3I6CSG/Rd2WkDWtPjFMMGTP7ePmlViiMjgxa2gmzcAxr9sJGycQA0dCN/QxMEWlbFmVb+xNjN9fI+HXkHm/fQewXbTt31lrBmI3oBnPf7gfve2JoCHFlEmPILx5jB2zOw8DXVvmUH7MjLlEm350/Laqqa/1W9FqgnWeZSP1gQZpGg8PP5NtEJqamAlJ/oSoibs+CR/cbZCOhEcnuqhSjrprVjcWD3odg6yY2y+6oaOeCoKft74C5296uYOYHjzBGPYFdJFoxjhw6MoxkW2GFPkx4JEhjVxDa3S0ArTlGhjdaWRdgH7L5CyopJA==
# -*- coding: utf-8 -*-
from setuphelpers import *
impacted_third_party_processes = [
"msedge",
"msedgewebview2",
"Rocket.Chat",
"Teams",
"msteams",
"LogiTune",
"NVIDIA Broadcast",
]
def install():
bin_name = glob.glob("OBS-Studio-*.exe")[0]
try:
install_exe_if_needed(
bin_name,
silentflags="/S",
key="OBS Studio",
min_version=control.get_software_version(),
killbefore=impacted_third_party_processes if force else [],
)
except Exception as e:
if e.returncode == 6:
for p in impacted_third_party_processes:
if isrunning(p):
print(f"{p} is running")
error(
'Installation failed with "exit status 6"\nIt means that there is a program running that may be using OBS Virtual Camera\nYou can force install this package if you want to try killing them before'
)
def uninstall():
remove_programs_menu_folder("OBS Studio")
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
api_url = "https://api.github.com/repos/obsproject/obs-studio/releases/latest"
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = json.loads(wgets(api_url, proxies=proxies))
for to_download in json_load["assets"]:
if to_download["name"].endswith('.exe'):
download_url = to_download["browser_download_url"]
version = json_load["tag_name"].split("-")[-1].replace("v", "")
latest_bin = to_download["name"]
break
# Downloading latest binaries
print("Latest %s version is: %s" % (control.name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Checking version from file
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
# Validating update-package-sources
return package_updated
0e3d75eb83951d3fe100cdc7a97fd870f16781bbdcf544fbe101d9b89f9c6231 : OBS-Studio-32.1.0-Windows-x64-Installer.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
fe17d6b59bc25cdf63af7e8217f47bedcef5c5a87733c62ce85e976607a93e4d : WAPT/changelog.txt
f56e0cc598c8d5ca3016a45b4fed09966a7c85a0abafd478aa3d7ebd095315b3 : WAPT/control
37c0a997ee9e5811e6ffaa1c7ce580275ef6cdcb46b2a285ad124f2451742654 : WAPT/icon.png
5fb62bad6e02f6fa8752d7f034095cc91599c648024f5959f2bd3e25fccf69df : luti.json
2807bf3ac187bb714287f140e1b17867a814942a631ac7a96f4ead83d5479095 : setup.py
bc278c808e2f28f5b9285373cf7b3104ac395327113a621847c3801112afa8f8 : update_package.py
https://github.com/obsproject/obs-studio/releases
29.1.2-30
===
handle impacted_third_party_processes in force install
min_os_version : 10.0.17763