tis-vidcoder-portable

10.14-1
VidCoder est une application d'extraction de DVD/Blu-ray et de transcodage vidéo pour Windows. Il utilise HandBrake comme moteur d'encodage
461 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal
tis-vidcoder-portable icon
  • package : tis-vidcoder-portable
  • name : Vidcoder
  • version : 10.14-1
  • categories :
  • maintainer : Amel FRADJ
  • editor :
  • licence : GPL-2.0 license
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : all
  • signature_date : 2024-07-05 05:00
  • size : 87.99 Mo
  • homepage : vidcoder.net
package           : tis-vidcoder-portable
version           : 10.14-1
architecture      : all
section           : base
priority          : optional
name              : Vidcoder
categories        : 
maintainer        : Amel FRADJ
description       : VidCoder is a DVD/Blu-ray ripping and video transcoding application for Windows. It uses HandBrake as its encoding engine
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : VidCoder est une application d'extraction de DVD/Blu-ray et de transcodage vidéo pour Windows. Il utilise HandBrake comme moteur d'encodage
description_pl    : VidCoder to aplikacja do zgrywania płyt DVD/Blu-ray i transkodowania wideo dla systemu Windows. Jako silnik kodujący wykorzystuje HandBrake
description_de    : VidCoder ist ein DVD/Blu-ray-Ripping- und Video-Transkodierungsprogramm für Windows. Es verwendet HandBrake als Kodiermaschine
description_es    : VidCoder es una aplicación de ripeo de DVD/Blu-ray y transcodificación de vídeo para Windows. Utiliza HandBrake como motor de codificación
description_pt    : VidCoder é uma aplicação de extração de DVD/Blu-ray e transcodificação de vídeo para Windows. Utiliza o HandBrake como motor de codificação
description_it    : VidCoder è un'applicazione di ripping e transcodifica video di DVD/Blu-ray per Windows. Utilizza HandBrake come motore di codifica
description_nl    : VidCoder is een DVD/Blu-ray ripping en video transcoding toepassing voor Windows. Het gebruikt HandBrake als codeerengine
description_ru    : VidCoder - это приложение для копирования и перекодирования DVD/Blu-ray видео для Windows. В качестве движка для кодирования используется HandBrake
audit_schedule    : 
editor            : 
keywords          : 
licence           : GPL-2.0 license
homepage          : vidcoder.net
package_uuid      : 381a98ae-12be-46c5-bb20-342389d45c3a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 5fb84550e46b94443b5e7b099f456a75fa61ff62ec2d7424aa05c7fd5b4fa3e2
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : kXPIeYkXst/FB2Clx74arRqIBxsbthkG7ISQJnK8PDxhz7pAP9+ACooPfvCTm1iq9+AobdvK9hUO4g3yAJymRHqJsZ72vvXrub3/e3Mbd/u6ss887VD2592cDyM9iSKaGS1hbM5xsIlVF0ETAwdnVoRQ5G/6TEW7JnJJh4dmsh2lVNs/iLsu1vF9bnKhQyVb3ombvUnr96aLlcNYvQuq9fldRWOG2Iu+r7OGqq8BehCe42ipspHvctqwmgtfEkiNij1fvupxlHNr/zA05lsK5MSatnoTLGyY3v5km1RDq0mBtNGamSLJS9IFurUB0WeoEkvmThkDUXq6CupnYcFPGA==
signature_date    : 2024-07-05T05:00:12.751284
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 *
import glob

app_name = "vidcoder"

app_dir = makepath(programfiles, app_name)



def install():
    bin_name = glob.glob('*.exe')[0]
    app_path = makepath(app_dir, bin_name)
    # Installing software
    killalltasks(ensure_list(control.impacted_process))
    if isdir(app_dir) and force:
        remove_tree(app_dir)
    mkdirs(app_dir)
    filecopyto(bin_name, app_path)

    # Creating shortcuts
    create_desktop_shortcut(app_name, target=app_path)
    create_programs_menu_shortcut(app_name, target=app_path)


def uninstall():
    # Uninstalling software
    killalltasks(ensure_list(control.impacted_process))
    for uninstall in installed_softwares('vidcoder'):
        uninstall_string = uninstall.get("uninstall_string", "")
        print(f"Uninstalling vidcoder: {uninstall_string}")
        run(f"{uninstall_string} --uninstall --uninstall -s")
        wait_uninstallkey_absent(uninstall['key'],max_loop=600)
    if isdir(app_dir):
        remove_tree(app_dir)

    # Removing shortcuts
    remove_desktop_shortcut(app_name)
    remove_programs_menu_shortcut(app_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
   

    
    git_repo = "RandomEngy/VidCoder"
    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("Portable.exe") :
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v", "")
            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()
caea0f2b1b681118a52d4708537e73dd13cff74443ec68566458de6303c310ab : setup.py
 : __pycache__
afea455499d415f1e71506f31ecdd6dcbb11cdf7d554b70810879f974585ec11 : update_package.py
5fb84550e46b94443b5e7b099f456a75fa61ff62ec2d7424aa05c7fd5b4fa3e2 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
b7fce0d9a5783fd92d1491daff2c2438b549d01691fa464e812f0eb42e933834 : VidCoder-10.14-Portable.exe
de2371dca9a7ad0d64da60e544de2f2f837cb5f62f8b71acc59e24160f45f9fc : luti.json
59e7d96c3b97f9cacd16cc969ce2dc843a9ef901a7f18742b226a19683dcb16c : WAPT/control