OpenShot Video Editor
Paquet d’installation silencieuse pour OpenShot Video Editor
3.4.0-8
Media
Media
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-openshot-video
- name: OpenShot Video Editor
- version: 3.4.0-8
- categories: Media
- maintainer: WAPT Team,Tranquil IT,Kenan KILICARSLAN,Jimmy PELÉ
- editor: Jonathan Thomas,Andy Finch,Helen McCall,Olivier Girard,Karlinux,TJ,Maël Lavault
- licence: GPL
- locale: all
- target_os: windows
- impacted_process: openshot-qt,openshot-qt-cli
- architecture: x86
- signature_date:
- size: 215.78 Mo
- homepage : https://www.openshot.org
package : tis-openshot-video
version : 3.4.0-8
architecture : x86
section : base
priority : optional
name : OpenShot Video Editor
categories : Media
maintainer : WAPT Team,Tranquil IT,Kenan KILICARSLAN,Jimmy PELÉ
description : OpenShot Video Editor is a free and open-source video editor for Linux, macOS, and Windows.
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://www.openshot.org/fr/download/
installed_size :
impacted_process : openshot-qt,openshot-qt-cli
description_fr : OpenShot Video Editor est un éditeur vidéo non linéaire libre pour GNU/Linux, OS X et Windows.
description_pl : OpenShot Video Editor to darmowy i open-source'owy edytor wideo dla systemów Linux, macOS i Windows
description_de : OpenShot Video Editor ist ein freier und quelloffener Videoeditor für Linux, macOS und Windows
description_es : OpenShot Video Editor es un editor de vídeo gratuito y de código abierto para Linux, macOS y Windows
description_pt : OpenShot Video Editor é um editor de vídeo gratuito e de código aberto para Linux, MacOS, e Windows
description_it : OpenShot Video Editor è un editor video gratuito e open-source per Linux, macOS e Windows
description_nl : OpenShot Video Editor is een gratis en open-source video-editor voor Linux, macOS en Windows
description_ru : OpenShot Video Editor - это бесплатный видеоредактор с открытым исходным кодом для Linux, macOS и Windows
audit_schedule :
editor : Jonathan Thomas,Andy Finch,Helen McCall,Olivier Girard,Karlinux,TJ,Maël Lavault
keywords : video,editor,shot
licence : GPL
homepage : https://www.openshot.org
package_uuid : 343eb655-2a82-4aee-9da6-a126deb67d2f
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.1
max_os_version :
icon_sha256sum : 03c2c6e4bd5a1df4788186ec58b62561f2766030d75504c288a17f181625d467
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-12-16T08:03:27.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 : Y8VKAwwbLE22/xH7yGhXz+AlYimiYP5RuwQEuH+w8i55MoVk8miy1u1wbBcvzmj8Yta33E8cDgSYcc2QG8ETrznAQPh+SJlpz2w9KsvBYiV0GEjxnbY34LIcflEUKWYEA2XrY4Ol64Na/AsBsPTWq6Ke6OkV+6XzFKdi9W0gyBjiEoSp9cF7gxKXwL0fHXh7q8Sf01HTcSeO8R4LeyWV75+7fNhf+3QqMATwPbQjhwBf6W3moCs03NeCrNwcCcc/kldJswTsyXhH62SjXtlJIfJcYEuwvooj0rjHqRuZEP46Nbg9nkAXkhmpCnO5X7Y0FHnbel8Wn6/mc8YMKKw8Tw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Initializing variables
package_version = control.get_software_version()
bin_name = "OpenShot-%s-x86.exe" % package_version
# Installing the package
print("Installing: %s" % bin_name)
install_exe_if_needed(
bin_name,
silentflags="/VERYSILENT",
key="{4BB0DCDC-BC24-49EC-8937-72956C33A470}_is1",
min_version=package_version,
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Initializing variables
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
bin_name_string = "OpenShot-%s-x86.exe"
url_api = "https://api.github.com/repos/OpenShot/openshot-qt/releases/latest"
bin_end = bin_name_string.split("-")[-1]
# Getting latest version from official sources
print("API used is: " + url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith(bin_end):
url_dl = download["browser_download_url"]
break
version = (json_load["tag_name"]).replace("v", "")
latest_bin = bin_name_string % version
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
control.version = "%s-%s" % (version, int(control.version.split("-")[-1]) + 1)
control.save_control_to_wapt()
print("Changing package version to: %s in WAPT\\control" % control.version)
# Deleting outdated binaries
remove_outdated_binaries(version)
1b5a29d8c5c8af2812bd84d2fdb51ab59e9b0e3d789c9d7039d8c0204c1d4fb0 : OpenShot-3.4.0-x86.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
6a9cdff07bca90e4e310a023716e72326e2957e477988378a271ca96dfa09cb0 : WAPT/control
03c2c6e4bd5a1df4788186ec58b62561f2766030d75504c288a17f181625d467 : WAPT/icon.png
0bf9c28d7e90355bc51f69fb0dbe61b9d1e0246d2cc7c7a494d81044047f777d : luti.json
01da27240f44cc9ebee7840b7d0a432c560ff8fb12561aede378df81009bad70 : setup.py
aa139aea5c4224a361b264e89985734083d617fa168c47a627dadb167b0862c7 : update_package.py