- package: tis-utvideo
- name: Ut Video Codec Suite
- version: 23.2.0-1
- categories: Media
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: UMEZAWA Takeshi
- licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
- locale: all
- target_os: windows
- architecture: x64
- signature_date:
- size: 2.12 Mo
- installed_size: 3.37 Mo
package : tis-utvideo
version : 23.2.0-1
architecture : x64
section : base
priority : optional
name : Ut Video Codec Suite
categories : Media
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Ut Video Codec Suite is a fast lossless video codec which supports multiple codec interfaces
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 3370679
impacted_process :
description_fr : Ut Video Codec Suite est un codec vidéo rapide et sans perte qui prend en charge plusieurs interfaces de codec
description_pl : Ut Video Codec Suite to szybki, bezstratny kodek wideo obsługujący wiele interfejsów kodeków
description_de : Ut Video Codec Suite ist ein schneller verlustfreier Videocodec, der mehrere Codec-Schnittstellen unterstützt
description_es : Ut Video Codec Suite es un códec de vídeo rápido y sin pérdidas que admite varias interfaces de códecs
description_pt : O Ut Video Codec Suite é um codec de vídeo rápido e sem perdas que suporta várias interfaces de codec
description_it : Ut Video Codec Suite è un codec video veloce e senza perdite che supporta più interfacce di codifica
description_nl : Ut Video Codec Suite is een snelle lossless video codec die meerdere codec interfaces ondersteunt
description_ru : Ut Video Codec Suite - это быстрый видеокодек без потерь, поддерживающий несколько интерфейсов кодеков
audit_schedule :
editor : UMEZAWA Takeshi
keywords : video,codec
licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage :
package_uuid : dfd54ed6-a077-44a2-887c-d8a6629df3d4
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/umezawatakeshi/utvideo/releases
min_os_version : 10.0
max_os_version :
icon_sha256sum : 0bfc6603709986681b8a5fc4dbbe0a5827931ff3e01bf8c08803c9336bd2a288
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-16T09:19:10.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 : CAvyovvMGBlNVxUxG5MllKguDHGSXdNh7O7r5TZ1vzZHCCTUIsrTtPvI8PvSwQjitxca7DCyfi6DVvwzxclxByqZXtGM/dl3mZsNj5q02loge38uOUgOsekAUateHu39ehtd0LLfQ37J+9ZHh2UbO5Ly5JToKasPnd7WFesE2J9qU2Tw2AIcdxMC2RWbpFzgd4vCCh7mJ7dsGvh2m6PIK7+3B/F7XWsjeJg+BS+y3KLV/mNyqN9zeKLjNLI942C17t6yMB3hO4LJ/3cZs+Yny8Jq/DQUogsZI4QMBQ3SMgZ1kJZm/7j5t2gYsS1WuOQxBpamIUXzuwaY91iWz/NdFw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("utvideo-*-win.exe")[0]
install_exe_if_needed(bin_name, silentflags="/allusers /VERYSILENT",
key="utvideo_is1",
min_version=control.get_software_version())
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".exe"}
api_url = "https://api.github.com/repos/umezawatakeshi/utvideo/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
exe_found = False # Flag pour indiquer la découverte d'un fichier .exe
for release in releases_dict:
if exe_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(".exe") and update_dict[control.target_os] in asset["browser_download_url"]:
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["name"].rsplit(" ")[-1]
exe_found = True # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
break
# Deleting binaries
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
print("Download URL is: %s" % url_download)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_download, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
b510dbbfcada08199fb52892916c25c9d6c3d6f65515d14774682474c571367d : WAPT/control
0bfc6603709986681b8a5fc4dbbe0a5827931ff3e01bf8c08803c9336bd2a288 : WAPT/icon.png
342515e418fc8103bf6f9fbe2136b5ee6d1f379edaa25d67f57fab55e29dabfa : luti.json
b3e28d3a3c021fce92ff85685dd8739b8d4ef6112e7be28164bd7dcb90ae22bb : setup.py
d238de3da87aa3431bd381f495909231285ec86b4fd15317bdb663cded393222 : update_package.py
e617c9ae0491165eb4d527d54d447a09739b7b3d2e52ffe995be67dd0e66730c : utvideo-23.2.0-win.exe