1
0
mirror of https://github.com/pisto/oggify synced 2024-11-14 17:17:29 +00:00

tag_ogg helper script

This commit is contained in:
Lorenzo Pistone 2019-02-14 16:07:21 +01:00
parent 9ad4ee771c
commit ffd5b407e9

13
tag_ogg Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
set -e
fname=$(echo "${2} - ${1}.ogg" | tr '/' - | tr '\0' ' ')
cat > "$fname"
{
echo "TITLE=${1}" | tr '\n' ' '
shift
for artist in "$@"; do
echo "ARTIST=${artist}" | tr '\n' ' '
done
} | vorbiscomment -a "$fname"