tis-obs-studio
31.0.2-32
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

- package : tis-obs-studio
- name : OBS Studio
- version : 31.0.2-32
- 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 : darwin
- impacted_process : obs-amf-test,obs-ffmpeg-mux,obs-nvenc-test,obs-qsv-test,obs64,obs-browser-page
- architecture : arm
- signature_date : 2025-03-13 00:11
- size : 186.20 Mo
- installed_size : 374.39 Mo
- homepage : https://obsproject.com/
package : tis-obs-studio
version : 31.0.2-32
architecture : arm
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 :
conflicts :
maturity : PROD
locale : all
target_os : darwin
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 : ffeb6829-6a63-4cf9-8f6e-452fb46daf8b
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/obsproject/obs-studio/releases
min_os_version :
max_os_version :
icon_sha256sum : 37c0a997ee9e5811e6ffaa1c7ce580275ef6cdcb46b2a285ad124f2451742654
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-03-13T00:11:00.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 : TiGg8thcrpR2XsqcmRm6kY86UlnmKFojgH7lzjM1gH7DMv5su9t/rGotikt0yYn6xIg48YRUItdHbVTlPX1HkaMmCq1D7MQMnTWqCDer2jsT4rQ7nn8H/Qsz4hwW+nWi7DbKaaqDotUYQ+OPZI3tPB3BspwZHRt6bvQX18GpnzBUvLBKUASDdKWmq2lDUUhexnSyiHe/g4xUR6fjthFXRedWPauDN+4Wp/eHQcgZ51xRs9L9630Z0GqYJ+muY0+Z1xbcwhGp79jInvTMIhRHE+C4REaP3U4F3HVteA+QUwRjSLX3TBfUBuW3SIbpCTCVFBdCv9mdFjNz/COpfFY2Ww==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
def install():
install_dmg(glob.glob("OBS-Studio-*.dmg")[0])
def uninstall():
remove_tree("/Applications/OBS.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
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"
download_os_dict = {
'darwin-x64': '-macOS-Intel.dmg',
'darwin-arm': '-macOS-Apple.dmg',
}
os_type = control.target_os + "-" + ensure_list(control.architecture)[0]
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = wgets(api_url, proxies=proxies, as_json=True)
for to_download in json_load["assets"]:
if to_download["name"].endswith(download_os_dict[os_type]):
download_url = to_download["browser_download_url"]
version = json_load["tag_name"].split("-")[-1].replace("v", "")
latest_bin = to_download["name"]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
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)
control.set_software_version(version)
control.save_control_to_wapt()
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
# Validating update-package-sources
return package_updated
d028ec5471869142e60c3ae886e0d2d333b14ce6001a87effe545a1754cfff24 : OBS-Studio-31.0.2-macOS-Apple.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
4a215ee127178b27bf7e162cbe2c9d77196e340150ffa6f5235bf30dd400f162 : WAPT/control
37c0a997ee9e5811e6ffaa1c7ce580275ef6cdcb46b2a285ad124f2451742654 : WAPT/icon.png
a0edcb44f99b0bdb33e29a3c5abd69a74f2e19b2e61ac694134bde5f301549c5 : luti.json
6363960be37be97aa9274104aef03d156b18f2a8781dc242b24b39176cd1b56d : setup.py
e81d81bd8af4676f419261c46945802622753a35a8b29b2f5415db59872a5c18 : update_package.py