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

20 lines
364 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"
2019-02-18 08:56:19 +00:00
echo "$fname"
2019-02-14 15:07:21 +00:00
{
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"