main
Gabe Farrell 7 months ago
parent 77e25452a7
commit 3c9a0223bc

@ -1,5 +1,8 @@
#!/bin/bash
# Sets the tags DATE, ARTIST, ORIGINALDATE, ALBUMARTIST, and ALBUM for all *.flac in the current
# directory to the values found in the very first file found
# Ensure metaflac is installed
if ! command -v metaflac &> /dev/null; then
echo "metaflac is required but not installed. Exiting."

@ -1,12 +1,9 @@
#!/bin/bash
# Check for required argument
if [ $# -ne 1 ]; then
echo "Usage: $0 \"ALBUMARTIST name\""
exit 1
fi
# Sets ALBUMARTIST to all *.flac recursively to the name of the current folder
# Meant to be run in the artist folder to fix the tags off all artist's songs
album_artist="$1"
album_artist=$(basename $(pwd))
# Ensure metaflac is installed
if ! command -v metaflac &> /dev/null; then

Loading…
Cancel
Save