fix
This commit is contained in:
20
install_getid3.sh
Normal file
20
install_getid3.sh
Normal 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"
|
||||
Reference in New Issue
Block a user