Compare commits

...

3 Commits

Author SHA1 Message Date
Vincent Riquer
6c19327198 Hotfix: createindex: fix ID3v1 genre index path 2025-10-12 15:04:35 +02:00
Vincent Riquer
8ae8f27898 Hotfix: missing quote in createindex 2025-10-12 01:29:30 +02:00
Vincent Riquer
99db421e88 Hotfix: commit more often when reading tags 2025-10-12 01:26:35 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ echo '
oldbitrate=${rest%%::AtOM:SQL:Sep::*} oldbitrate=${rest%%::AtOM:SQL:Sep::*}
((++count)) ((++count))
(( cron )) || echo -en "\rTags: $((count*100/filecount))%" (( cron )) || echo -en "\rTags: $((count*100/filecount))%"
if (( count % 1000 == 0 )) if (( count % 100 == 0 ))
then then
echo 'COMMIT;BEGIN TRANSACTION;' >&3 echo 'COMMIT;BEGIN TRANSACTION;' >&3
(( debug )) \ (( debug )) \

View File

@ -38,7 +38,7 @@ LC_ALL=C
shopt -s extglob shopt -s extglob
source ./share/id3genres source "$SHAREDIR"/id3genres
for function in "$LIBDIR"/*/* for function in "$LIBDIR"/*/*
do do
@ -292,7 +292,7 @@ cat <<-EOBrag
EOBrag EOBrag
printDate() { printDate() {
printf "%("${timeformat:-%x %X}")T "$1" printf "%("${timeformat:-%x %X}")T" "$1"
} }
for index in ${!show[@]} for index in ${!show[@]}