tis-vidcoder-portable
10.15-2
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

- package : tis-vidcoder-portable
- name : Vidcoder
- version : 10.15-2
- categories :
- maintainer : Amel FRADJ
- editor :
- licence : GPL-2.0 license
- locale :
- target_os : windows
- impacted_process :
- architecture : all
- signature_date : 2024-10-04 16:00
- size : 88.05 Mo
- homepage : vidcoder.net
package : tis-vidcoder-portable
version : 10.15-2
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 : 147d5af9-0ff2-466f-9a51-b6b846ef0780
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 : 2024-10-04T16:00:14.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 : Pf9TBKSG1nxJCjUHGIbtvx30EvpkQJs6me1Lo19avgpFkQjUiWUTQ5upADhOomYXqSBTn8JbvCYp+3ccCq9Fpe0Y7wAY7FMEDABDuw7kpaSjw4lvOlgRHQvDH2XvKXimTNnZxOfDmq7wpxTp7Os7L5vx1COuD7Dgq3+NzfeJ3iC4Ep+qlPdBDgWmuTgXKmsOdnmX3ULaAQmdNOJTicmPVg5Jx2JmgKjuIlIMiM2BajIKFnmNONThfUsUK74l5xQaDJvix+u6Rbl/elCllK8czTka57mtWBK3u3ndb5+kzHUlunSbtP07Fr0pSTCcQQgUr7D+8K/hz0ttgaqEO/vvFg==
# -*- 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()
ea6926f60d7452c4e96c5323b51e6e3990ff753eeedd870381d4755f547bf16a : VidCoder-10.15-Portable.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
7a9baa8eedbf6687845966751ccbb742973b8e1b4cf190e190c477308d3943b9 : WAPT/control
5fb84550e46b94443b5e7b099f456a75fa61ff62ec2d7424aa05c7fd5b4fa3e2 : WAPT/icon.png
6343e043dc1d8e91b02fc38a8e1e2f9ac044fcaca7c2269ca043db06589abd79 : luti.json
caea0f2b1b681118a52d4708537e73dd13cff74443ec68566458de6303c310ab : setup.py
afea455499d415f1e71506f31ecdd6dcbb11cdf7d554b70810879f974585ec11 : update_package.py