mirror of
https://github.com/pisto/oggify
synced 2024-11-14 22:47:30 +00:00
14 lines
233 B
Bash
Executable File
14 lines
233 B
Bash
Executable File
#!/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"
|