tis-shotcut

25.8.16-15
Shotcut est un logiciel libre de montage vidéo
9886 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal
tis-shotcut icon
  • package : tis-shotcut
  • name : Shotcut
  • version : 25.8.16-15
  • categories : Media
  • maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Simon Fonteneau,Pierre COSSON,Clément BAZIRET,Jordan ARNAUD
  • editor :
  • licence : opensource_free,wapt_public
  • locale : all
  • target_os : darwin
  • impacted_process : shotcut
  • architecture : x64
  • signature_date : 2025-08-22 04:00
  • size : 243.59 Mo
  • installed_size : 416.69 Mo
  • homepage : https://www.shotcut.org/
package           : tis-shotcut
version           : 25.8.16-15
architecture      : x64
section           : base
priority          : optional
name              : Shotcut
categories        : Media
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Simon Fonteneau,Pierre COSSON,Clément BAZIRET,Jordan ARNAUD
description       : Shotcut is a free, open source, cross-platform video editor
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : darwin
min_wapt_version  : 2.3
sources           : https://www.shotcut.org/download/
installed_size    : 416687882
impacted_process  : shotcut
description_fr    : Shotcut est un logiciel libre de montage vidéo
description_pl    : Shotcut to darmowy, open source, wieloplatformowy edytor wideo
description_de    : Shotcut ist ein kostenloser, quelloffener, plattformübergreifender Video-Editor
description_es    : Shotcut es un editor de vídeo gratuito, de código abierto y multiplataforma
description_pt    : Shotcut é um editor de vídeo gratuito, de código aberto, multiplataforma
description_it    : Shotcut è un editor video gratuito, open source e multipiattaforma
description_nl    : Shotcut is een gratis, open source, cross-platform video editor
description_ru    : Shotcut - это бесплатный кроссплатформенный видеоредактор с открытым исходным кодом
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,wapt_public
homepage          : https://www.shotcut.org/
package_uuid      : 8aafd655-771c-4eb6-b7c6-197cc1de8115
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://www.shotcut.org/download/releasenotes/
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 92ffd46fdb4f06ce92ca5a54938896190a9f8f2d790cd800f68b7a7b6e7976e8
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-08-22T04:00:24.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         : RYybzrsN3EKgWOmfWkp7nUtFu9BHn2kfWOwPCNqPM1J4MX8NBm/YZSV3gAqDIID4elALN41pGWtJLgLaefRAADVMXxBLkgHoIjoPxxSrB33TYVx6eHBvnEETmq8V3IDQTxE9Qg1f/gw0cVvyWlE3LDDHMjaP7B2AjhWYvSsUvCxBC7b6iJHRYbfmUAkqiS8GWdeyDt/qgEVG7mtShCDqn8I8M7w9kQX5Br2AqC0ik7ykYC7znCzXi9fyo1bkzDCqANbYJxvp9QbkyTXZ5mPwSGEtO+NHRVKcVZxnJQejwikDJA1j531x7KqI/e5ABcR+hu3Kji2czelJLOtQS3t3NQ==
# -*- 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("shotcut-*.dmg")[0])


def uninstall():
    remove_tree("/Applications/Shotcut.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    api_url = "https://api.github.com/repos/mltframework/shotcut/releases/latest"
    bin_contains = ".dmg"

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = wgets(api_url, proxies=proxies, as_json=True)
    version = json_load["tag_name"].replace("v", "")
    for to_download in json_load["assets"]:
        if bin_contains in to_download["name"]:
            download_url = to_download["browser_download_url"]
            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)
    else:
        print("Binary is present: %s" % latest_bin)

    # Deleting outdated binaries
    remove_outdated_binaries(latest_bin)

    # Checking version from file
    if get_os_name() == "darwin" and "mac" in control.target_os.lower():
        version_from_file = get_version_from_binary(latest_bin)
        if Version(version_from_file, 4) == Version(version, 4):
            print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
        else:
            error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({version})")

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating update-package-sources
    return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
acf9ec04eacc14fbf918f6452515b585c1125e20db0aa8063876f8e2606827bf : WAPT/control
92ffd46fdb4f06ce92ca5a54938896190a9f8f2d790cd800f68b7a7b6e7976e8 : WAPT/icon.png
271b05f87723d46a1b5e5bae1800ae32fd873dc57404fb799889682ad48c7d56 : luti.json
d1e40d08fb988f5d96d19b060ed92761dbd249f945f7f66d5005ee90e487e5a1 : setup.py
59e5e2077ffbf96b62c08666c382e7c279ff92fde734428b800d41c84a4060c1 : shotcut-macos-unsigned-250816.dmg
0af0de62da0428fc8e7ee55c1dc26ebd5cf85bce5c708cfe92eba47d9e56b3f9 : update_package.py