- package: tis-openshot-video
- name: OpenShot Video Editor
- version: 3.1.1-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: x64
- signature_date:
- size: 197.03 Mo
- homepage : https://www.openshot.org
package : tis-openshot-video
version : 3.1.1-8
architecture : x64
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 : PROD
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 : 23c4eb3d-b5ef-4482-a39f-55b45a240d59
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.1
max_os_version :
icon_sha256sum : 03c2c6e4bd5a1df4788186ec58b62561f2766030d75504c288a17f181625d467
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : YPaZ3XuDfFcknuhygVfZzxIX9Po22fJZU02Vc2QK8WUp9BnK9A33qpW3HEmRtI1zszKg+MHpnyjahTdTT0KVoVhB4dZjiHHRybJoWpwzNWOOJceaoQuRWy0zb0F3HmaTX0ZIJaHRRmxqknyWEyZBeGr5yl2UFydjINXGczYVbVQhG55uqrdhU6UVUuSzG7vo0X+K/58r+pAmiK4zZk3SNXmJ6R1Z18kby+z31umhmDnkPewPZ5b6txXoX5XeXBPFzwM+t8rl+E/WWHrdyx5LyMMI7t+H+roxdv2LaOBolTXxgWFbXx1+DU7c/AdDLL85w+zWao2L6Awoluj0TbTpzA==
signature_date : 2023-05-03T18:03:32.121452
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 *
def install():
# Initializing variables
package_version = control.version.split("-", 1)[0]
# Installing the package
print("Installing: %s" % "OpenShot-%s-x86_64.exe" % package_version)
install_exe_if_needed(
"OpenShot-%s-x86_64.exe" % package_version,
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()
bin_name_string = "OpenShot-%s-x86_64.exe"
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
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)
4c4cde7e282ce4e4749141e09d83e20ad4f58184e602f24c99072e758e8f01c6 : setup.py
8fdc9cc3e13b782f2c8e1bab4d04fccce7f2780b4cc7c933cbf720cd8df0bb25 : OpenShot-3.1.1-x86_64.exe
f57913057c96051d14cbfcd290a13d0639f45a539e25c09359abe394cb3a353a : update_package.py
03c2c6e4bd5a1df4788186ec58b62561f2766030d75504c288a17f181625d467 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
f358dfbf4852f245870780fa1697af98aba75e66848f05ad836b568fd950e714 : luti.json
bde81461f5a09d1620bb22e91348afd02048f6de88c2a0507780093e65171b3e : WAPT/control