cleanup tag_ogg

This commit is contained in:
Lorenzo Pistone 2019-02-19 13:05:38 +01:00 committed by GitHub
parent ba672d1f91
commit eb82e3c5b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 6 deletions

View File

@ -7,14 +7,11 @@ fname="${fname//\//-}"
cat > "${fname}"
{
echo "SPOTIFY_ID=${1}"
title="${2//'\n'/' '}"
album="${3//'\n'/' '}"
echo "TITLE=${title}"
echo "ALBUM=${album}"
echo "TITLE=${2//'\n'/' '}"
echo "ALBUM=${3//'\n'/' '}"
shift 3
for artist in "$@"; do
artist="${artist//'\n'/' '}"
echo "ARTIST=${artist}"
echo "ARTIST=${artist//'\n'/' '}"
done
} | vorbiscomment -a "${fname}"
echo "${fname}"