ocenaudio
Paquet d'installation silencieuse pour ocenaudio
3.19.4-1
Media
Media
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-ocenaudio
- name: ocenaudio
- version: 3.19.4-1
- categories: Media
- maintainer: WAPT Team,Tranquil IT,
- licence: proprietary_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 47.57 Mo
package : tis-ocenaudio
version : 3.19.4-1
architecture : x64
section : base
priority : optional
name : ocenaudio
categories : Media
maintainer : WAPT Team,Tranquil IT,
description : Simple, fast and powerful audio editor
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Éditeur audio simple, rapide et puissant
description_pl : Prosty, szybki i wydajny edytor audio
description_de : Einfacher, schneller und leistungsstarker Audio-Editor
description_es : Editor de audio sencillo, rápido y potente
description_pt : Editor de áudio simples, rápido e poderoso
description_it : Editor audio semplice, veloce e potente
description_nl : Eenvoudige, snelle en krachtige audio-editor
description_ru : Простой, быстрый и мощный аудиоредактор
audit_schedule :
editor :
keywords :
licence : proprietary_free,wapt_public
homepage :
package_uuid : e901e8b1-c241-4861-bdc5-0c55218700c4
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : e7a264b60a86911bd7d375eec4ffed07b16bad669853a2d6ad1d65d123d47878
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-06-19T19:31:56.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 : HqicuMcU3pfoLUypwxWBQZ8FkaeD+Mo0zYjta79j0lLUnEt4f4iKyrd2Z2E5jj0OxTbkhQ0i0bK8axp+uBtVYyxz98L8zqTf4c3VFkncmdW16XyyTpMAEn9vBeoIV2cxIivikcHg1yL2KI2VhSqheIXmrR1+GC2lm5TFDq3+C3yFU9Hm2/IaCFOl8HiyXncY9CdggFXhfXYnrZ3wvE8RsrGehXOBAscq2ouwm/Kx1MeAAxI8SdY5iVpxa6//6cYNmAYD4FriCNhWFNyRlvqZulaZ0Xf+NcN2iKIwPs/+ok3vn58uAXtZIuV84GfvwyjWPqR4J6tQ3O2kDgVpJ0+GMg==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name= glob.glob('ocenaudio_windows*.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/S /ALLUSERS',
key='ocenaudio',
min_version=control.get_software_version()
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
data = requests.head('https://www.ocenaudio.com/downloads/index.php/ocenaudio_windows64.exe?',allow_redirects=True,proxies=proxies)
download_url = data.url
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
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)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
1664abda2cfe27acb8826a9a0cdfbffd0e53f1386441d4aed44081528817d3f5 : WAPT/control
e7a264b60a86911bd7d375eec4ffed07b16bad669853a2d6ad1d65d123d47878 : WAPT/icon.png
163f189d28d55b33ccff29705378e8f08f305928d5c3bf76108e178a419564c9 : luti.json
5154d7f161eeba2652ef0381f48a4811ed97df92d27d00342fdf0a30c98a1772 : ocenaudio_windows64.exe
4c777f3592115d0715869ab2cdf4e2cb3d5978855b464cbaea717c5d0b8bea50 : setup.py
5387f0785f0b074e0edfc7581fae8981a1b3bbb031976cd05211af83b4a44647 : update_package.py