tis-obs-studio

31.1.1.0-31
OBS Studio (Open Broadcaster Software) is a free and open source software for video recording and live streaming
12780 downloads
Download
See build result See VirusTotal scan
tis-obs-studio icon
  • package : tis-obs-studio
  • name : OBS Studio
  • version : 31.1.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 : 2025-07-17 04:01
  • size : 157.34 Mo
  • installed_size : 374.39 Mo
  • homepage : https://obsproject.com/
  • depends :
package           : tis-obs-studio
version           : 31.1.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          : PROD
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      : b445f21a-6199-434c-bc40-a09f40b7b319
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            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-07-17T04:01:26.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         : OFPgH0qaAYfa6BnSr6h678Y8o2fWdlhxXn/4QepRDwh+0+X/AETyZ4hL6PQMUMJ7nuFx25RUQppcxL1bQ4tW6VIBf3yqUeHSDANhJH3OqCIDa+tGXiT+R3SRe1GD5IyP1se0gmFECu0volgYsdFEQX5IIuK1w8HjhjbrpTRIfNCeY1yscvTRZaHzrJ6UbLuTIEXHrfs83+ipx/5m6VowmhWnl3VIJptKfT7FVgcChkBB+o6aRy3i76w2EPIsfN7tJg5bDfCvv/LysEVvoKH++lJZHXLrqEy1LOerVbxpOdZQSFxhropsFbo5hapx5VeR1woDn1K2w50cT3KdYLKMXg==
# -*- 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
d04e4a735d7a1000685d81a1be02c8298e16aa7173ad81f6ebe7755dec57ea33 : OBS-Studio-31.1.1-Windows-x64-Installer.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
fe17d6b59bc25cdf63af7e8217f47bedcef5c5a87733c62ce85e976607a93e4d : WAPT/changelog.txt
451acf123ff4f4190f986222fc1c244d51f24bbea92303f964795bb2472f7705 : WAPT/control
37c0a997ee9e5811e6ffaa1c7ce580275ef6cdcb46b2a285ad124f2451742654 : WAPT/icon.png
3f498da5aee6b8d0b7154d5c015491bd1205bab81b13940cf23a616cb2ae6047 : luti.json
2807bf3ac187bb714287f140e1b17867a814942a631ac7a96f4ead83d5479095 : setup.py
bc278c808e2f28f5b9285373cf7b3104ac395327113a621847c3801112afa8f8 : update_package.py
29.1.2-30
===
handle impacted_third_party_processes in force install
min_os_version    : 10.0.17763