From e8b5675eb77aa20027f369ca278457b6a7c2e142 Mon Sep 17 00:00:00 2001 From: shipwreckt Date: Mon, 18 Aug 2025 12:01:10 +0100 Subject: Some changes to my Nvim setup! --- files/old-config/mpd/scripts/album1.sh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 files/old-config/mpd/scripts/album1.sh (limited to 'files/old-config/mpd/scripts/album1.sh') diff --git a/files/old-config/mpd/scripts/album1.sh b/files/old-config/mpd/scripts/album1.sh new file mode 100755 index 0000000..171011a --- /dev/null +++ b/files/old-config/mpd/scripts/album1.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +# Script for changing specific album names. + +# Path to the specific album directory +album_dir="" + +# The desired album name for these files +album_name="" + +# Loop through all FLAC files in the directory +find "$album_dir" -type f -name "*.flac" | while read -r file; do + # Extract the current ALBUM metadata + raw_album=$(metaflac --show-tag=ALBUM "$file") + + # Check if the ALBUM tag exists + if [[ "$raw_album" == ALBUM=* ]]; then + echo "Updating existing ALBUM metadata for: $file" + else + echo "No ALBUM metadata found for: $file. Adding ALBUM tag." + fi + + # Remove the existing ALBUM tag (if it exists) + metaflac --remove-tag=ALBUM "$file" + + # Set the new ALBUM tag with the desired name + metaflac --set-tag=ALBUM="$album_name" "$file" + + echo "Updated ALBUM metadata for: $file -> $album_name" +done + -- cgit v1.2.3