tis-winff icon

WinFF

Paquet d’installation silencieuse pour WinFF

1.5.5-0

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

package           : tis-winff
version           : 1.5.5-0
architecture      : x64
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      : 463f208f-21b6-45ae-b0d0-1eb1d1dd200f
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 829f463bf618d66759eac5ca4054150e227309b68c4ebff0c4c4b3bacee9df38
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : rqeqpo2xnLw8D6c4sw9OoFMa8qRLdDZHbUhXJI7h7wCHMg8wu4cbBX1Zdp8m0Teto8ty6TNelVfLPjoCHvPCyoE/V4rYz4Zjsor6V7f8c7nIYxgdA3Voh84XkLNGMy7dwXCwDrQffe8gFlzsCjfZxqmRSbsG8WtJy3bl79fJoO8pkPWEayouH2Vje6OCbdJqvjqQwPzypiABk3vFmfgoKAskAqg9kafWN9C2sYF88EA5mG4hvp4Su+StLsM5X63uhS/urrVst1DPJpPyEXwBiJdWnpOkEL9CdjGaped5K/gQQ+2A3iyZH33aOgUniHlWukmoX7gLkH5x3/iHD0cjAg==
signature_date    : 2024-02-10T11:02:24.874052
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, proxies=proxies).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
23991056995cf16fdcfe9129f266fd65fcf76858960b066952b4936e0a5b2753 : update_package.py
c6246be77fa0d87cb8860fc9de433dfc02b56edaaca368712d5b6267141eeee4 : WAPT/wapt.psproj
829f463bf618d66759eac5ca4054150e227309b68c4ebff0c4c4b3bacee9df38 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 : WAPT/changelog.txt
a2aecf05dd1fb1e0742ade08fb7d7a69531060d99b75b03be46bb1247591b196 : luti.json
09f17eeded4cb54ad8b85ba6c0bbb2ce681a15f27212c2c4bbc8fbd65768b43a : WinFF-1.5.5-Setup.exe
c766c472a53efa862e4cc0fcc2992229d1d97d241689ba12c98985db6fa85e26 : WAPT/control