This commit is contained in:
Francesco Picone
2025-12-06 18:50:57 +01:00
parent 86f4774df2
commit ca86649914
8 changed files with 219 additions and 2 deletions

20
install_getid3.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/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"