tis-fastflix icon

FastFlix

Paquet d’installation silencieuse pour FastFlix

6.1.1-1

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

package           : tis-fastflix
version           : 6.1.1-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      : 1459fbff-dbb9-4413-a170-97e9ba808335
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    : 2026-02-27T02:00:47.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         : DA27VoUX5fsD1DAEdjH+kqbJ2YBtYDSx+Y/ZKXbiwwFQZN7ZiVkgvCmC95PBRQf5vSMd7Pt387bFR1nGOQE2mMN7ipI6PWRSHfi6MGis9WikiP1NkcIVcX2QenRVxZpVxdnjzyMrAw752uuc1IGVJ3ERAh8PCNlpwpUAnjoTyrvM0Nw8B8kOtmHC3BSnhW0O0xSwazeFhi2pK3CCgojIVQXpbfRaBYCjbX4irI3cF7WEb2x6rzDu31LnPc0LuLOrmClsqj2YpYE6C4zTi0D/ICx4r9b+QAcsJCGmsTD8Xv7bzccFYkbsmD1IW/L3fzCR369ufZui/1cDwqUnbVHUHw==

# -*- 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["tag_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()

6c8fe17a3417e37e5b6a41557d270ecfdb266b3b8cca88799a1bf1358b651d97 : FastFlix_6.1.1_installer.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
761369a1ef215b79e6935c1e20f2d0592987c066affa20451d7caf5b561938f1 : WAPT/control
2857e1eb78118e5b865d87b652a6e91f7bb998b36759fcbbcec12f940c6167b4 : WAPT/icon.png
be089aa228d3964ca9bf0adfe9d1f130432b154a5e03833c9ffbb7590de4e25c : luti.json
dbf385e3537269cc73220939d2563e4b110e80d7f829a268d090c638a709fe46 : setup.py
677baf08e6ce6ba41656f20fc2060c0f6dac03e8a0a4a6bd1788b69d5ddccd2d : update_package.py