tis-obs-studio

27.2.3-26
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 : 27.2.3-26
  • categories : Media
  • maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Bertrand LEMOIGNE
  • editor : Hugh "Jim" Bailey
  • licence : GPLv3+
  • locale : all
  • target_os : windows
  • impacted_process : obs64,obs32,obs-ffmpeg-mux
  • architecture : x64
  • signature_date : 2022-03-08 06:00
  • size : 117.91 Mo
  • homepage : https://obsproject.com/
package           : tis-obs-studio
version           : 27.2.3-26
architecture      : x64
section           : base
priority          : optional
name              : OBS Studio
categories        : Media
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Bertrand LEMOIGNE
description       : OBS Studio (Open Broadcaster Software) is a free and open source software for video recording and live streaming.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 1.8
sources           : https://github.com/obsproject/obs-studio/releases/latest
installed_size    : 
impacted_process  : obs64,obs32,obs-ffmpeg-mux
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    : 
description_de    : 
description_es    : 
description_pt    : 
description_it    : 
description_nl    : 
description_ru    : 
audit_schedule    : 
editor            : Hugh "Jim" Bailey
keywords          : record,recorder,obs,studio,project,video,recording,live,stream,streaming
licence           : GPLv3+
homepage          : https://obsproject.com/
package_uuid      : d110707f-3eea-4128-95d8-366dc7300d0c
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/obsproject/obs-studio/releases
min_os_version    : 6.2
max_os_version    : 
icon_sha256sum    : 37c0a997ee9e5811e6ffaa1c7ce580275ef6cdcb46b2a285ad124f2451742654
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : XIEc7x7g+4PT5ZviU7D3WcltHCg1mGXRCpAmKFxiHEl7L8TOz7ITIiXMDfRojye/2phYfeyGnJOMnfbtmHl9o3BPjkmkMsPm2O69kSqP/vTxdVbhy/J7JpthgURD7RwfwiMAVeUhizFBtHFnI/si7eKJ6KazfXGz9cmb8G+7v+Tp3MKMsAtB31Hh4o1T+YyoAAu9tvLVIHunn7ajnB+b8sJYgoKDT1vfGrAZX7hj0qIqywQ1aJ8eokH8q0Dlmr2Bo/FXykk8LEhZ2LPeOtorxhufKZQEK5VAmwYU8tcf/8BYt3Pac0/W7WzOXMbgg9GhQNgRtfZahTCHQf013bAncg==
signature_date    : 2022-03-08T06:00:29.045904
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
# -*- coding: utf-8 -*-
from setuphelpers import *
import platform
import json

# Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "OBS-Studio-"
silent_args = "/S"
app_uninstallkey = "OBS Studio"


def install():
    # Declaring local variables
    package_version = control.get_software_version()
    bin_name = glob.glob("*%s*.exe" % bin_contains)[0]

    # Installing the package
    print("Installing: %s" % bin_name)
    install_exe_if_needed(bin_name, silentflags=silent_args, key=app_uninstallkey, min_version=package_version)


def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    git_repo = "obsproject/obs-studio"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo

    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if bin_contains in download["name"] and ".exe" in download["name"] and control.architecture in download["name"]:
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v", "")
            latest_bin = download["name"]
            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)

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        result = True
    control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
    # control.set_software_version(Version(version))
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version, control.architecture)

    # Validating update-package-sources
    return result


def get_proxies():
    r"""Return system proxy with the urllib python library

    >>> get_proxies()
    {'http': 'http://srvproxy.ad.domain.lan:8080',
    'https': 'http://srvproxy.ad.domain.lan:8080'}

    """
    if platform.python_version_tuple()[0] == "3":
        from urllib.request import getproxies
    else:
        from urllib import getproxies
    return getproxies()


def get_proxies_from_wapt_console():
    r"""Return proxy information from the current user WAPT console

    >>> get_proxies_from_wapt_console()
    {'http': 'http://srvproxy.ad.domain.lan:8080',
    'https': 'http://srvproxy.ad.domain.lan:8080'}

    """
    proxies = {}
    if platform.system() == "Windows":
        waptconsole_ini_path = makepath(user_local_appdata(), "waptconsole", "waptconsole.ini")
    else:
        waptconsole_ini_path = makepath(user_home_directory(), ".config", "waptconsole", "waptconsole.ini")
    if isfile(waptconsole_ini_path):
        proxy_wapt = inifile_readstring(waptconsole_ini_path, "global", "http_proxy")
        if proxy_wapt:
            proxies = {"http": proxy_wapt, "https": proxy_wapt}
    return proxies


def get_version_from_binary(filename, property_name="ProductVersion"):
    r"""Get installer version from file informations, for now, only exe and msi files are compatibles

    Args:
        filename (str): path to the file
        property_name (str): selected property

    Returns:
        str: version number

    """
    if filename.endswith(".msi"):
        return get_msi_properties(filename)[property_name]
    else:
        return get_file_properties(filename)[property_name]


def remove_outdated_binaries(version, list_extensions=["exe", "msi", "deb", "rpm", "dmg", "pkg"], filename_contains=None):
    r"""Remove files based on the version contained in his filename, failing over on file version on compatible OSes

    Args:
        version (str): version number of keeped files
        list_extensions (str or list of str): file extensions of compared files
        filename_contains (str or list of str): Part of the filename that must be contained (useful for distinguishing architecture and os)

    Returns:
        list: list of deleted files

    .. versionadded:: 2.0

    .. versionchanged:: 2.2
        Now returns removed files, now checking .exe and .msi file versions

    """
    files = []
    if type(list_extensions) != list:
        list_extensions = [list_extensions]
    if filename_contains:
        if type(filename_contains) != list:
            filename_contains = [filename_contains]
    list_extensions = ["." + ext for ext in list_extensions if ext[0] != "."]
    for file_ext in list_extensions:
        for bin_in_dir in glob.glob("*%s" % file_ext):
            if not version in bin_in_dir:
                if platform.system() == "Windows":
                    if file_ext == ".exe" or file_ext == ".msi":
                        if Version(version) == Version(get_version_from_binary(bin_in_dir, "FileVersion")) or Version(version) == Version(
                            get_version_from_binary(bin_in_dir, "ProductVersion")
                        ):
                            print("%s file or product version is correct (%s)" % (bin_in_dir, version))
                            continue
                remove_file(bin_in_dir)
                files.append(bin_in_dir)
            if filename_contains:
                for filename_contain in filename_contains:
                    if not filename_contain in bin_in_dir:
                        remove_file(bin_in_dir)
                        files.append(bin_in_dir)
    return [fn for fn in files]
04987b7f21337f776f65ab17129d06a4f8c0c7af39ee918b7f48a8dc36bd8b50 : setup.py
37c0a997ee9e5811e6ffaa1c7ce580275ef6cdcb46b2a285ad124f2451742654 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
160832a3177c9123f86811491e6f77757410b17260f733738f1d9405d5a79613 : luti.json
a72ea0df0ec38da30b6122cbb8aba09b6871a2272e30e52a10cb6c23b6ccb5ce : OBS-Studio-27.2.3-Full-Installer-x64.exe
543510ed7ec9082632212ac0b710301e56486051308af6ec33fd50d68e2e19bb : WAPT/control