From 8adfd6a6016d9c65afc88a8f552ae94d9f354aea Mon Sep 17 00:00:00 2001 From: Francesco Picone Date: Tue, 9 Dec 2025 16:05:57 +0100 Subject: [PATCH] flush --- install_getid3.ps1 | 31 ------------------------------- install_getid3.sh | 20 -------------------- 2 files changed, 51 deletions(-) delete mode 100644 install_getid3.ps1 delete mode 100644 install_getid3.sh diff --git a/install_getid3.ps1 b/install_getid3.ps1 deleted file mode 100644 index 2caa25e..0000000 --- a/install_getid3.ps1 +++ /dev/null @@ -1,31 +0,0 @@ -# Script PowerShell per installare getID3 manualmente - -Write-Host "Installazione getID3..." -ForegroundColor Green - -# Crea cartella vendor se non esiste -New-Item -ItemType Directory -Force -Path "vendor\getid3" | Out-Null - -# URL del download -$url = "https://github.com/JamesHeinrich/getID3/archive/refs/tags/v1.9.23.zip" -$zipFile = "vendor\getid3\getid3.zip" - -# Scarica getID3 -Write-Host "Download in corso..." -ForegroundColor Yellow -Invoke-WebRequest -Uri $url -OutFile $zipFile - -# Estrai -Write-Host "Estrazione file..." -ForegroundColor Yellow -Expand-Archive -Path $zipFile -DestinationPath "vendor\getid3\temp" -Force - -# Sposta i file nella posizione corretta -Get-ChildItem "vendor\getid3\temp\getID3-*" | Get-ChildItem | Move-Item -Destination "vendor\getid3" -Force - -# Pulisci -Remove-Item -Path "vendor\getid3\temp" -Recurse -Force -Remove-Item -Path $zipFile -Force - -Write-Host "" -Write-Host "✅ getID3 installato con successo!" -ForegroundColor Green -Write-Host "" -Write-Host "Nota: Se hai Composer disponibile, puoi usare invece:" -ForegroundColor Cyan -Write-Host " composer install" -ForegroundColor White diff --git a/install_getid3.sh b/install_getid3.sh deleted file mode 100644 index 68a423f..0000000 --- a/install_getid3.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -# Script per installare getID3 manualmente - -echo "Installazione getID3..." - -# Crea cartella vendor se non esiste -mkdir -p vendor/getid3 - -# Scarica getID3 -cd vendor/getid3 -wget https://github.com/JamesHeinrich/getID3/archive/refs/tags/v1.9.23.tar.gz -O getid3.tar.gz - -# Estrai -tar -xzf getid3.tar.gz --strip-components=1 -rm getid3.tar.gz - -echo "✅ getID3 installato con successo!" -echo "" -echo "Nota: Se hai Composer disponibile, puoi usare invece:" -echo " composer install"