tis-winff icon

WinFF

Paquet d’installation silencieuse pour WinFF

1.5.2-0

  • package: tis-winff
  • name: WinFF
  • version: 1.5.2-0
  • categories: Media
  • maintainer: Simon Fonteneau, Tranquil IT
  • editor: Matthew Weatherford, Ian Stoffberg
  • licence: GPLv3
  • locale: all
  • target_os: windows
  • architecture: x86
  • signature_date:
  • size: 17.71 Mo
  • homepage : http://winff.org/

package           : tis-winff
version           : 1.5.2-0
architecture      : x86
section           : base
priority          : optional
name              : WinFF
categories        : Media
maintainer        : Simon Fonteneau, Tranquil IT
description       : WinFF is a free and open source video conversion software
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://github.com/WinFF/winff
installed_size    : 
impacted_process  : 
description_fr    : WinFF est un logiciel libre et open source de conversion vidéo
description_pl    : WinFF jest darmowym i otwartym oprogramowaniem do konwersji wideo
description_de    : WinFF ist eine kostenlose und Open-Source-Video-Konvertierungssoftware
description_es    : WinFF es un software de conversión de vídeo gratuito y de código abierto
description_pt    : WinFF é um software de conversão de vídeo gratuito e de código aberto
description_it    : WinFF è un software di conversione video gratuito e open source
description_nl    : WinFF is een gratis en open bron video conversie software
description_ru    : WinFF - бесплатная программа для конвертирования видео с открытым исходным кодом
audit_schedule    : 
editor            : Matthew Weatherford, Ian Stoffberg
keywords          : 
licence           : GPLv3
homepage          : http://winff.org/
package_uuid      : 2d9783a0-8455-4bf9-aea4-e1c3b765f9bd
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 829f463bf618d66759eac5ca4054150e227309b68c4ebff0c4c4b3bacee9df38
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : YAmcaLXwjZrhZQEpYpT9Mm40hD+m22p7btlw20AiP9c4RI4EyoiYZHQ9qOXXmqzO45a7H4P34qkuxp59IMTfO1/ToaI+TFHuFkQ0HLkfSteseCvSJ6BoGoDq3oMMzV0rRdRunTsbhnIE2TOg2BKa9QtZ6p2YWqwhoqaOrOv5ehxGona0l/tuwK0tcL9pAafsYgWCIg0j9XGeqMbr1t1WjRz0abi4k9yqxP0GRfpyTpOkCzFoB+np3x9T8KA9e+6sU0ChyxCF/I0ucnIt5pclC6OTeyrr8JuoVf21PUaw8a0OmB0gCaD2uU+YAAQ/Z1BqShP5n0VhCE14EXXcT1O60A==
signature_date    : 2024-02-10T11:01:28.654356
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():
    def get_vers_winff(soft):
        if isfile(makepath(install_location(soft["key"]), "winff.exe")):
            return get_file_properties(makepath(install_location(soft["key"]), "winff.exe"))["FileVersion"]

    versionpaquet = control["version"].split("-", 1)[0]
    install_exe_if_needed(
        "WinFF-%s-Setup.exe" % versionpaquet,
        silentflags="/VERYSILENT /NORESTART",
        key="WinFF_is1",
        min_version=versionpaquet,
        get_version=get_vers_winff,
    )

# -*- coding: utf-8 -*-
from setuphelpers import *


def update_package():
    import json

    proxies = {}
    if isfile(makepath(application_data(), "waptconsole", "waptconsole.ini")):
        proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
        if proxywapt:
            proxies = {"http": proxywapt, "https": proxywapt}

    dataversion = [
        i
        for i in json.loads(
            wgets("https://storage.googleapis.com/google-code-archive/v2/code.google.com/winff/downloads-page-1.json", proxies=proxies)
        )["downloads"]
        if i["filename"].endswith(".exe")
        if not "win64-setup" in i["filename"]
    ][0]
    filename = dataversion["filename"]
    urldownload = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/winff/" + filename

    #    lastversion = wgets('https://www.videohelp.com/software/WinFF',proxies=proxies).split('-Setup.exe')[0].split('-')[-1]
    #    filename = 'WinFF-%s-Setup.exe' % lastversion
    #    tmpurldownload = 'https://www.videohelp.com/software?d=WinFF-%s-Setup.exe' % lastversion
    #    iddownlaod = wgets(tmpurldownload).split('">Download')[0].split('.exe')[-1]
    #    urldownload = 'https://www.videohelp.com/download/%s' % (filename + iddownlaod)

    for exe in glob.glob("*.exe"):
        if exe != filename:
            remove_file(exe)

    if not isfile(filename):
        wget(urldownload, filename, proxies=proxies)
    else:
        print("Already up to date, skipped")

    pe = PackageEntry()
    pe.load_control_from_wapt(os.getcwd())

    pe.version = get_file_properties(filename)["ProductVersion"] + "-0"
    pe.save_control_to_wapt(os.getcwd())

50d3d7083bb08fcc2f8a918e4c4843c58ea74d6419eb3d88faf3e4353cfe8221 : setup.py
16195c717009c564d75d77eaca05ac0c5fcaeef9b9e10df870d23ad6a07ea61e : WinFF-1.5.2-setup.exe
6c9e1885d07edcfa0e846742a7d54e79bb12f9089e551f2db3173f3b32ad185b : update_package.py
c6246be77fa0d87cb8860fc9de433dfc02b56edaaca368712d5b6267141eeee4 : WAPT/wapt.psproj
829f463bf618d66759eac5ca4054150e227309b68c4ebff0c4c4b3bacee9df38 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
82173b8504054dc81747e857e65b2a967851dc6cd13c8a85529767ab34467c44 : luti.json
8ebb9c141fbe67f600aa5ac7f1cbd1d8c552e1076a388070daca5a8868780594 : WAPT/control