tis-fastflix icon

FastFlix

Paquet d’installation silencieuse pour FastFlix

5.12.4-1

  • package: tis-fastflix
  • name: FastFlix
  • version: 5.12.4-1
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: MIT license
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 50.49 Mo
  • homepage : fastflix.org/

package           : tis-fastflix
version           : 5.12.4-1
architecture      : x64
section           : base
priority          : optional
name              : FastFlix
categories        : 
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : FastFlix is a free GUI for H.264, HEVC and AV1 hardware and software encoding!
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : FastFlix est une interface graphique gratuite pour l'encodage matériel et logiciel H.264, HEVC et AV1 !
description_pl    : FastFlix to darmowy graficzny interfejs użytkownika do kodowania sprzętowego i programowego H.264, HEVC i AV1!
description_de    : FastFlix ist eine kostenlose GUI für H.264, HEVC und AV1 Hardware- und Software-Encoding!
description_es    : FastFlix es una interfaz gráfica de usuario gratuita para la codificación por hardware y software de H.264, HEVC y AV1
description_pt    : FastFlix é uma GUI gratuita para codificação de hardware e software H.264, HEVC e AV1!
description_it    : FastFlix è un'interfaccia grafica gratuita per la codifica hardware e software di H.264, HEVC e AV1!
description_nl    : FastFlix is een gratis GUI voor H.264, HEVC en AV1 hardware en software codering!
description_ru    : FastFlix - это бесплатный графический интерфейс для аппаратного и программного кодирования H.264, HEVC и AV1!
audit_schedule    : 
editor            : 
keywords          : 
licence           : MIT license
homepage          : fastflix.org/
package_uuid      : ab68892a-cece-496d-90e2-c27d316020ad
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 2857e1eb78118e5b865d87b652a6e91f7bb998b36759fcbbcec12f940c6167b4
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-07-18T01:00:18.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         : uULxXCqkrSiCIijdgfFvJUOKH10SseZBRwlRDrG6OGAEa26IvC2wyjQSOjU9j6/SoXDIzTwArOUqKD4fM1+AIdtUQn5fRM9cNvBzqsWiCMpAeqY77fRwqY95wD07qHR4wdsf1rqcR9qD/ERI8gqijtzp40MlesM0JDAUoWtJ/fmTkz/W18nJwRM1FuNRmN2+DINK8QyJGpBhrLE04OinItS4fkauYx1cyJN0ou3VIhZ0fPqeddQC4YOZyg0jFDGUUn7L8KtI3+pNOpUJxREECbYgmLtohUSJ5U5jFW7kw21jCGBZzRRBh+Je1zwixhQjH1t/PU04WLqzABfNH6CrRw==

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


def install():

    # Uninstalling other versions 
    for to_uninstall in installed_softwares("FastFlix"):
        print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
        killalltasks(ensure_list(control.impacted_process))
        run(uninstall_cmd(to_uninstall["key"]))
        wait_uninstallkey_absent(to_uninstall["key"])

    # Declaring local variables
    bin_name = glob.glob('FastFlix_*_installer.exe')[0]

    # Installing the software
    install_exe_if_needed(bin_name ,
        silentflags='/S',
        key='FastFlix',
        min_version=control.get_software_version()
    )



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

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()
   
    git_repo = "cdgriffith/FastFlix"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo   
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if download["browser_download_url"].endswith('.exe') :
            url_dl = download["browser_download_url"]
            version = json_load["name"].split(" ")[-1]
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl,filename,proxies=proxies)

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.exe'):
        if f != filename:
            remove_file(f)

   
    control.set_software_version(version)
    control.save_control_to_wapt()

eb86e1d20fb5dfc9f87ba3d9581c29b3dcc0b6c41fb011221655fc7ff322730d : FastFlix_5.12.4_installer.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
1f9f2d38939f08b61f36b29ef0911266cba5256c1df31317119af8dcf127a04c : WAPT/control
2857e1eb78118e5b865d87b652a6e91f7bb998b36759fcbbcec12f940c6167b4 : WAPT/icon.png
c3ae74ce76ccfcc6fa81dcd333a3906a6f432b060c6174cb907319cbc5195138 : luti.json
dbf385e3537269cc73220939d2563e4b110e80d7f829a268d090c638a709fe46 : setup.py
dc0f39ba131dd8ab1feab0837a0ed5e48b3847d680cc38c6a98f414fff64e517 : update_package.py