PyMecavideo
Silent install package for PyMecavideo
7.2.3.0-1
Media
Media
- package: tis-pymecavideo
- name: PyMecavideo
- version: 7.2.3.0-1
- categories: Media
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Simon Fonteneau,Kevin CHEREL
- locale: all
- target_os: windows
- impacted_process: pymecavideo
- architecture: x64
- signature_date:
- size: 114.63 Mo
package : tis-pymecavideo
version : 7.2.3.0-1
architecture : x64
section : base
priority : optional
name : PyMecavideo
categories : Media
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Simon Fonteneau,Kevin CHEREL
description : Pymecavidéo est un logiciel de pointage de vidéo permettant l'analyse mécanique des mouvements.
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://download.tuxfamily.org/oppl/windows/
installed_size :
impacted_process : pymecavideo
description_fr :
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor :
keywords :
licence :
homepage :
package_uuid : ca68c535-99b9-43b6-b654-5cc1bc55c36d
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : ca6afc629a51b361e7f444643efe8354d4542dc55c290a515edd7d58bfe47ce9
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-01-10T16:04:35.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 : aOCcpOiYKtQzJ0IvcBFQ0SZgYwps2YyxAhpdeRvtbrQ5y47K1nqKg53EPiwWA2sCfyGftxM0aX32b8MOFZSuzf8B5CquT6u0w1eqBCbjUCg1F1pWORfGOcroqod5ufNPnbDMGrb5+Uumb/UhSJw438x970DGCVGOHFhJeXDEQGywFwH972tV5aiQR5bELuAHzCbE3IXBgeD8ulWGPltVrxCQM+lMGLvo4ACnwt9Dq1Csj9PPs/apWR1Z1pLW0i+vhP2nVD2tBIZoObN501cPTT9vrvsbrrK0voFU/GSCDZcv1b2iZ44+bt9VMKL311ZOlHWf5vSuiylrjQmC6psICQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
# 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("*pymecavideo_*.exe")[0]
used_version = get_product_props(bin_name)["ProductVersion"]
# Installing the software
print("Installing: %s" % bin_name)
install_exe_if_needed(
bin_name,
silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-",
key="pymecavideo %s_is1" % used_version,
min_version=used_version,
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "pymecavideo_"
# Code temporaire avant mise à disposition sur github
def update_package():
# Declaring local variables
latest_bin = "pymecavideo_7.2.3.0_setup.exe"
download_url = "http://srvtemplates.ad.tranquil.it/binary_cache/" + latest_bin
sha256 = "E17B21A80C6DAEE80F266F96852687A4B95761A07040715460971D2FA4F212DC"
wget(download_url, latest_bin, sha256=sha256)
# Code temporaire avant mise à disposition sur github
"""
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
sub_bin_name = "pymecavideo_%s_setup.exe"
url = "http://download.tuxfamily.org/oppl/windows/"
# Getting latest version information from official sources
version = re.findall('pymecavideo_(.*)_setup.exe"', ensure_unicode(wgets(url, proxies=proxies)))[-1]
latest_bin = sub_bin_name % version
download_url = url + latest_bin
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % download_url)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
# Checking version from file
version_from_file = get_product_props(latest_bin)["FileVersion"]
if Version(version) != Version(version_from_file) and version_from_file != "":
print("Changing version to the version number of the binary (from: %s to: %s)" % (version, version_from_file))
os.rename(latest_bin, sub_bin_name % version_from_file)
version = version_from_file
else:
print("Binary file version correspond to online version")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating update-package-sources
return result
"""
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
cf8c5161a3323cbaaca2c4b01edd7dd0aba5feaebefb031010439604bde4fa56 : WAPT/control
ca6afc629a51b361e7f444643efe8354d4542dc55c290a515edd7d58bfe47ce9 : WAPT/icon.png
980a4cc45cad47a1494d4a83491d954615cbd767edc32ba7d369c8e4024c831b : luti.json
e17b21a80c6daee80f266f96852687a4b95761a07040715460971d2fa4f212dc : pymecavideo_7.2.3.0_setup.exe
bcc8d47ff5672d6b50fbc3e5651ff6c5ab76c7009baa61c3664d2c17eccf284b : setup.py
1efe24a004ab4a63e9a2e394d53b29febecca5c1cf8ed4c9247d7103f6b55935 : update_package.py