tis-obs-studio icon

OBS Studio

Paquet d’installation silencieuse pour OBS Studio

32.0.1.0-31

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
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.0.1.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.45 Mo
  • installed_size: 374.39 Mo
  • homepage : https://obsproject.com/
  • depends:

package           : tis-obs-studio
version           : 32.0.1.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      : 8ac808e9-eb54-408a-9d13-d2d1cb2cc250
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    : 2025-09-26T22:56:08.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         : TsqsKbZ+M8V5OIoqJRSnmCQVu70vSGrGjr1D7tsrwDk+HFZcwaifFIYZykX5IdO3Dot7mdAyT2oeQ1Gl+gVbKd26AROxro7Mo78/IbbAZ8Vq/m0hb1JucJk0GekEgg+n7HlGsA1w1FpUXLch9SIOxfRAkdnWjp0iAOqcC8LPuMBwu8W6Ife6AJVSjS3vOVuz2Nu7zMyoZWtnZ4zvl7tfeSd3CwyRj2b72ANBqQ8i/XYOEtXfmoy5ZHnRY7oozfpixKfiYwmhcXQmk0dEGSlmYxJKBnwaoXcyKcz27jD5e95N32Pj7at1xnf/iLyamuWQMsJ+x+ov701E5wKF3ENusg==

# -*- 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

71b938e77e1bf48b3e46d17e7faff596f03c4a964213b2919211ec5ac0f8952b : OBS-Studio-32.0.1-Windows-x64-Installer.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
fe17d6b59bc25cdf63af7e8217f47bedcef5c5a87733c62ce85e976607a93e4d : WAPT/changelog.txt
1c3d52e2b81ada4ad7922539009f6873e039c35ae55c03260c82512c5a6d9da2 : WAPT/control
37c0a997ee9e5811e6ffaa1c7ce580275ef6cdcb46b2a285ad124f2451742654 : WAPT/icon.png
f9031d28a9fbbe945e1ea4673367c91b79dcb4fff45d604578ffad03e53b8223 : 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