Vidcoder
Silent install package for Vidcoder
12.12-1
- package: tis-vidcoder-portable
- name: Vidcoder
- version: 12.12-1
- maintainer: Amel FRADJ
- licence: GPL-2.0 license
- target_os: windows
- architecture: all
- signature_date:
- size: 88.35 Mo
- homepage : vidcoder.net
package : tis-vidcoder-portable
version : 12.12-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 : 2d7c1c94-8e47-466d-89e7-9439ad6edbc7
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-11-08T16:03:07.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 : qdpacUtnoze0p1MZ7hTupe4kPh0iFzayN23oRd3PT2ZjCEh9bdLol5gv7WqxgLAspj76q9zIiFDFrDIZ+MVFjpGDH8haFEPAFNVtpVHWqJU25ldL8vuaiX1BzxVshhGYgvx1etcQVmbu7clM5JPnCqdh7RGXh4hqsSc0605WE0W8BNqVYMzub6ZQIok2waHKaXr6KxVhD/VWZRnnwew71sMDn+OiYaAqKRkmOqNZZPdy73Gqun+zx5VyopgAEOU0mqKVLY/4CSPH/4+8KwLM3asgZPlPdAsNfr6ff4ELON/J5zRLopsWHAGXI0IGqEugixUZlOEPEoZGTH6z74EguA==
# -*- 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()
cd955820e73bc419a82086f7784ede81c2d8290a41ed4735ad4dfaed0baf3c58 : VidCoder-12.12-Portable.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
1480e1c8e40be094550c84f88f24fa6bf80e3448517d3b0fdf4a3ecfef9e0107 : WAPT/control
5fb84550e46b94443b5e7b099f456a75fa61ff62ec2d7424aa05c7fd5b4fa3e2 : WAPT/icon.png
d896951702e65797b5f375d2035360dbcde4deb50dac30e62dfd3193101772f6 : luti.json
caea0f2b1b681118a52d4708537e73dd13cff74443ec68566458de6303c310ab : setup.py
afea455499d415f1e71506f31ecdd6dcbb11cdf7d554b70810879f974585ec11 : update_package.py