1
0
mirror of https://github.com/pisto/oggify synced 2024-09-29 05:17:29 +00:00
oggify/tag_ogg

19 lines
350 B
Plaintext
Raw Normal View History

2019-02-14 15:07:21 +00:00
#!/bin/sh
set -e
fname=$(echo "${4} - ${2}.ogg" | tr '/' -)
2019-02-14 15:07:21 +00:00
cat > "$fname"
{
echo "SPOTIFY_ID=${1}"
title=$(tr '\n' ' ' <<< "${2}")
album=$(tr '\n' ' ' <<< "${3}")
echo "TITLE=${title}"
echo "ALBUM=${album}"
shift 3
2019-02-14 15:07:21 +00:00
for artist in "$@"; do
artist=$(tr '\n' ' ' <<< "${artist}")
echo "ARTIST=${artist}"
2019-02-14 15:07:21 +00:00
done
} | vorbiscomment -a "$fname"