Update ended without doing anything...

No error message, no file.id in folders and database still empty.
I assume you ment no albums and tracks where added.and database still empty
What operation system do you use?ZeBison wrote: Mon Apr 25, 2022 12:31 pm I'll think about flac option: it'll take time to encode 4000 files keeping the folders structure.
Code: Select all
#!/bin/sh
find '/data/Music' -type d | sort | while IFS= read -r dir; do
wav=$(ls "$dir" | grep -c '\.wav$')
if [ $wav -eq 0 ]; then continue; fi
echo "$dir"
flac -5 --verify --replay-gain --force "$dir"/*.wav
rm -f "$dir"/*.wav
echo "---"
done
Code: Select all
sudo apt install apache2 mysql-server php7.4 php7.4-mysql php7.4-gd php7.4-xml
Code: Select all
sudo apt install lame vorbis-tools musepack-tools faad flac wavpack zip
Code: Select all
/var/log/apache2/error.log
[Tue Apr 26 00:00:12.885024 2022] [mpm_event:notice] [pid 1863:tid 140115482500160] AH00489: Apache/2.4.41 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/1.1.1f configured -- resuming normal operations
[Tue Apr 26 00:00:12.885095 2022] [core:notice] [pid 1863:tid 140115482500160] AH00094: Command line: '/usr/sbin/apache2'
PHP Warning: Module 'gd' already loaded in Unknown on line 0
PHP Warning: Module 'zip' already loaded in Unknown on line 0
PHP Warning: Module 'gd' already loaded in Unknown on line 0
PHP Warning: Module 'zip' already loaded in Unknown on line 0