forked from CryHavoc/dottes
Automated merge with ssh://hg.cryhavoc.org.uk/dottes
This commit is contained in:
commit
efa21c08f2
|
@ -1,6 +1,7 @@
|
|||
X:1
|
||||
T:Astley's Ride
|
||||
M:4/4
|
||||
Q:180
|
||||
K:G
|
||||
dB|"G"G2G2 G2FG|"D"A2A2 A2BA|"C"GFED E2F2|"G"GABc dcBA|
|
||||
G2G2 G2FG|"D"A2A2 A2BA|"C"GFED "D7"E2F2|G4G2::GA|B2B2 B2AB|"Am"c2c2 cdcB|
|
||||
|
|
|
@ -3,6 +3,7 @@ T:Enrico
|
|||
R:Reel
|
||||
M:C|
|
||||
L:1/8
|
||||
Q:150
|
||||
K:D
|
||||
|: A2 | "D" d2 fe "G" dc dB | "D" ABAG F2 A2 | "D" d2 ef "G" gfgf |\
|
||||
"A" e2 a2 a2 f2 |
|
||||
|
|
|
@ -16,25 +16,52 @@ builddir=$dir/web/$1
|
|||
|
||||
mkdir -p $builddir
|
||||
|
||||
# Now, for each tune, make the tune bitmap and sound. Do this to temp
|
||||
# files and rename into place to make updates as atomic as possible.
|
||||
# Make MP3 and OGG files for the input .abc. In case we're generating
|
||||
# to a live site (which we won't be), do this to temp files and rename
|
||||
# into place to make updates as atomic as possible.
|
||||
makeaudiofiles()
|
||||
{
|
||||
name=`basename $1 .abc`
|
||||
tmpname=${name}.tmp
|
||||
|
||||
abc2midi $1 -o $builddir/${tmpname}.mid
|
||||
timidity -OwM -o $builddir/${tmpname}.wav $builddir/${tmpname}.mid
|
||||
lame -m m -V 9 --quiet $builddir/${tmpname}.wav $builddir/${tmpname}.mp3
|
||||
# Timidity can generate OGG directly. But we need to generate WAV
|
||||
# for lame, and oggenc produces smaller output. OGG is needed for
|
||||
# Firefox's audio tag. FF doesn't support MP3, some others support
|
||||
# MP3 but not OGG.
|
||||
oggenc -Q -q 0 -o $builddir/${tmpname}.ogg $builddir/${tmpname}.wav
|
||||
|
||||
mv $builddir/${tmpname}.mid $builddir/${name}.mid
|
||||
mv $builddir/${tmpname}.mp3 $builddir/${name}.mp3
|
||||
mv $builddir/${tmpname}.ogg $builddir/${name}.ogg
|
||||
rm $builddir/${tmpname}.wav
|
||||
}
|
||||
|
||||
# Generate audio files and slow speed (currently half speed) audio files.
|
||||
find $booke -name "*.abc" | sort |
|
||||
while read filename
|
||||
do
|
||||
makeaudiofiles $filename
|
||||
|
||||
name=`basename $filename .abc`
|
||||
tmpname=${name}.tmp
|
||||
slowspeedfilename="slowspeed-${name}.abc"
|
||||
|
||||
abc2midi $filename -o $builddir/${tmpname}.mid
|
||||
timidity -Ow -o $builddir/${tmpname}.wav $builddir/${tmpname}.mid
|
||||
lame --quiet $builddir/${tmpname}.wav $builddir/${tmpname}.mp3
|
||||
# Timidity can generate OGG directly. But we need to generate WAV
|
||||
# for lame, and oggenc produces smaller output. OGG is needed for
|
||||
# Firefox's audio tag. FF doesn't support MP3, some others support
|
||||
# MP3 but not OGG.
|
||||
oggenc -Q -o $builddir/${tmpname}.ogg $builddir/${tmpname}.wav
|
||||
|
||||
mv $builddir/${tmpname}.mid $builddir/${name}.mid
|
||||
mv $builddir/${tmpname}.mp3 $builddir/${name}.mp3
|
||||
mv $builddir/${tmpname}.ogg $builddir/${name}.ogg
|
||||
rm $builddir/${tmpname}.wav
|
||||
# Prepare slow speed audio files.
|
||||
# The tempo is either a plain number, or <notelen>=<number>.
|
||||
tempo=`$dir/abcfield.py --field Q $filename`
|
||||
if [ -z $tempo ]; then
|
||||
echo "Warning: $filename has no tempo. Using 120."
|
||||
tempo="120"
|
||||
fi
|
||||
pos=`expr index $tempo '='`
|
||||
numtempo=${tempo:pos}
|
||||
notelenprefix=${tempo:0:pos}
|
||||
# Make new tempo half original speed.
|
||||
newtempo=$(( $numtempo / 2 ))
|
||||
# Insert new tempo and delete old. Old may not exist,
|
||||
# so do this rather than overwrite.
|
||||
sed -e "/^Q:/d" -e "/^K:/aQ: ${notelenprefix}${newtempo}" $filename > $builddir/$slowspeedfilename
|
||||
makeaudiofiles $builddir/$slowspeedfilename
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue