dottes/makeWebItems.sh

38 lines
1.0 KiB
Bash
Raw Normal View History

#!/bin/bash
#
# Make items required for the website but not for the book.
# They go into web/<book>.
#
if [ $# != 1 ]; then
echo "Usage: makeWebItems.sh <book dir name>"
exit 1
fi
dir=`pwd`
booke=$dir/$1
builddir=$dir/web/$1
graphicsdir=$dir/graphics/$1
mkdir -p $builddir
# Now, for each tune, make the tune JPG and sound. Do this to temp
# files and rename into place to make updates as atomic as possible.
find $booke -name "*.abc" | sort |
while read filename
do
name=`basename $filename .abc`
convert $graphicsdir/${name}.eps $builddir/${name}.jpg.tmp
abc2midi $filename -o $builddir/${name}.mid.tmp
timidity -Ow -o $builddir/${name}.wav.tmp $builddir/${name}.mid.tmp
lame --quiet $builddir/${name}.wav.tmp $builddir/${name}.mp3.tmp
mv $builddir/${name}.jpg.tmp $builddir/${name}.jpg
mv $builddir/${name}.mid.tmp $builddir/${name}.mid
mv $builddir/${name}.mp3.tmp $builddir/${name}.mp3
rm $builddir/${name}.wav.tmp
done