tis-vidcoder-portable icon

Vidcoder

Silent install package for Vidcoder

12.10-1

  • package: tis-vidcoder-portable
  • name: Vidcoder
  • version: 12.10-1
  • maintainer: Amel FRADJ
  • licence: GPL-2.0 license
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 88.36 Mo
  • homepage : vidcoder.net

package           : tis-vidcoder-portable
version           : 12.10-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      : 68b30e3a-75ea-489b-8f6f-dec7261f9a44
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 5fb84550e46b94443b5e7b099f456a75fa61ff62ec2d7424aa05c7fd5b4fa3e2
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-10-04T07:04:37.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         : bEYBJ0Go48Pb/9sklksNcqJ+x29IloC1SrX0tZNszROwenOl9N5OQfXh8N41aWX+ho2lFMBCV53edjJjX/Xr4cQKfatg/G/eExA2WyQW5j/blzIoeA0zyrkQRbm4OxY11rQj1CljGIp5f8eSsDeVbj0OmtmxjClxbwLK82A/bcfKDwQMVJGJFfR+eJmKsfUOA+im4kEPFcoPBTvhtI47d/5xjYAp3PQ/wmt+abfDLQ9LpbY9EClxkQiCYNcF1HeL8GvXB9S1vo7tNOHWhX9a2F6bD3vWWCM2GUNEfTyUR5zphIWSoDkAaJwRh4NIh20cuYH5rzuqG7b+WnF2Ueracw==

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

031f7bc9b20145e1e2675ad1b9a6956b223ab5b3fe5d96c919b1fb1fa35448b3 : VidCoder-12.10-Portable.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
d915e8d6539c2225c258f1896367f743d0dd29618f1b09bc62543c706c94bad3 : WAPT/control
5fb84550e46b94443b5e7b099f456a75fa61ff62ec2d7424aa05c7fd5b4fa3e2 : WAPT/icon.png
1f002017fcbcf8b867320eadc39ced459e5de02568f366dc71bb1471309437b9 : luti.json
caea0f2b1b681118a52d4708537e73dd13cff74443ec68566458de6303c310ab : setup.py
afea455499d415f1e71506f31ecdd6dcbb11cdf7d554b70810879f974585ec11 : update_package.py