tag_ogg helper script

This commit is contained in:
Lorenzo Pistone 2019-02-14 16:07:21 +01:00
parent 9ad4ee771c
commit ffd5b407e9
1 changed files with 13 additions and 0 deletions

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"