Porter Robinson: Add Cheerleader single!

This commit is contained in:
davi 2024-03-19 16:09:29 +00:00
parent e4da4f1d8e
commit b80a1c46fa
47 changed files with 13 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

13
a.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
FOLDER="/var/lib/gitea/music/Madeon/Madeon - Secret Sky 2020 (DJ Mix)" #your music path
METAFLAC_PATH="/usr/bin/metaflac" # you need to install "flac" (apt install flac)
for file in "$FOLDER"/*.flac; do
if [ -e "$file" ]; then
"$METAFLAC_PATH" --remove-tag=ALBUMARTIST --remove-tag=COMPILATION "$file" # Remove existing ALBUMARTIST and COMPILATION tags
"$METAFLAC_PATH" --set-tag="ALBUMARTIST=Various Artists" --set-tag="COMPILATION=1" "$file" # Set new ALBUMARTIST and COMPILATION tags
echo "Tags updated for $file."
else
echo "No FLAC files found in the folder."
exit 1
fi
done