tis-fastflix

5.8.2-1
FastFlix is a free GUI for H.264, HEVC and AV1 hardware and software encoding!
64 downloads
Download
See build result See VirusTotal scan
tis-fastflix icon
  • package : tis-fastflix
  • name : FastFlix
  • version : 5.8.2-1
  • categories :
  • maintainer : WAPT Team,Tranquil IT,Amel FRADJ
  • editor :
  • licence : MIT license
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : x64
  • signature_date : 2025-01-18 11:13
  • size : 50.18 Mo
  • homepage : fastflix.org/
package           : tis-fastflix
version           : 5.8.2-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      : 44843bd2-3d8e-40af-9a92-0bc5a4e727a3
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-01-18T11:13:39.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         : I7QmACKQGxiNDU3CJUrzxi3kckIIJFlTEVFU4bQEdQJombI7CeJuD/8Rtk2cGJKv8nRgyjq7X+dLYVNPhoqDk4fVHuGsEEENGxgOw6ixcHY6Gvd6W7eQxDLRxKOsZkfUeJuQjll5NahQ8/iK62PeseMRawNpyRCr4/V3MQr0ba9sNIS926vvF+wgSXiAfEcKuQBM9Pt/aN/+Rer26WUQF1O4NYm3I408PK4PazfRcdNSbp4DxyiCSQsPsvClXSxd9JSrWml3jApN+6VXLrgWn0bmVQUhf9H3+PCnkQuB6dOYVqAE7TRg7biEHT2TeOFH55OEhhErSA4ig4MWmzaIpw==
# -*- coding: utf-8 -*-
from setuphelpers import *

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# 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('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()
f85e66df287a554b3fe4d900817812bfccf3a3d33605b90b704a7dec5f3e3948 : FastFlix_5.8.2_installer.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
79f428fc412c47e8432cb5be1e7ec1e8b1449473803dcc4170b034946e8b32bd : WAPT/control
2857e1eb78118e5b865d87b652a6e91f7bb998b36759fcbbcec12f940c6167b4 : WAPT/icon.png
9e27a404e0130a7bf6df59ee856e14012742fd4c040c5b0f9a9e77a83c58a7b2 : luti.json
3d1889717493a9cd9b5a6644d40b0cb29dd20c1c207f4ab4e71e968b255ac707 : setup.py
dc0f39ba131dd8ab1feab0837a0ed5e48b3847d680cc38c6a98f414fff64e517 : update_package.py