Mercurial > dottes
annotate makeAltoSax.sh @ 1047:4cfee227da93 build-default-378
Fix notation error.
author | Jim Hague <jim.hague@acm.org> |
---|---|
date | Sun, 12 Apr 2020 14:43:22 +0100 |
parents | ce13e23259b1 |
children |
rev | line source |
---|---|
216 | 1 #!/bin/bash |
2 # | |
1019 | 3 # Transpose a book for alto saxophone |
216 | 4 |
5 if [ $# != 1 ]; then | |
1019 | 6 echo "Usage: makeAltoSax.sh <book dir name>" |
216 | 7 exit 1 |
8 fi | |
9 | |
10 dir=`pwd` | |
11 | |
12 booke=$dir/$1 | |
1019 | 13 outdir=$dir/$1-AltoSax |
216 | 14 |
749
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
15 mkdir -p $outdir/Compact |
216 | 16 |
217
a8a46fd79d5c
Fix up problems in Horn in F transposition.
Jim Hague <jim.hague@laicatc.com>
parents:
216
diff
changeset
|
17 # Copy book component items. |
876
1a838d8dca2a
Fix building transposed bookes.
Jim Hague <jim.hague@acm.org>
parents:
749
diff
changeset
|
18 cp $booke/*.txt $booke/*.md $booke/image.jpg $outdir |
217
a8a46fd79d5c
Fix up problems in Horn in F transposition.
Jim Hague <jim.hague@laicatc.com>
parents:
216
diff
changeset
|
19 |
1019 | 20 echo "Alto Saxophone" > $outdir/instrument.txt |
263
7b98278d6e8b
Add instrument name into title page for transpositions.
Jim Hague <jim.hague@acm.org>
parents:
218
diff
changeset
|
21 |
749
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
22 find $booke -name "*.abc" | |
216 | 23 while read filename |
24 do | |
25 name=`basename $filename .abc` | |
749
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
26 |
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
27 dir=`dirname $filename` |
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
28 basedir=`basename $dir` |
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
29 compact="" |
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
30 if [ "$basedir" = "Compact" ]; then |
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
31 compact="Compact/" |
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
32 fi |
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
33 |
322
b4a0161e8870
Add abcrange.py to return the range of a tune, and use it in instrument transposition.
Jim Hague <jim.hague@acm.org>
parents:
263
diff
changeset
|
34 range=`./abcrange.py $filename` |
216 | 35 |
1019 | 36 # Transpose concert pitch down a minor third. |
37 transpose=-3 | |
216 | 38 |
370
ecc62b487e57
Some empty "" chords may be causing trouble with Jenkins.
Jim Hague <jim.hague@acm.org>
parents:
351
diff
changeset
|
39 # There's no point in having transposed chords. Remove from the |
ecc62b487e57
Some empty "" chords may be causing trouble with Jenkins.
Jim Hague <jim.hague@acm.org>
parents:
351
diff
changeset
|
40 # abc before transposing. Some badly formed chord items can give |
ecc62b487e57
Some empty "" chords may be causing trouble with Jenkins.
Jim Hague <jim.hague@acm.org>
parents:
351
diff
changeset
|
41 # erroneous output from abc2abc (like, strings of binary gibberish). |
ecc62b487e57
Some empty "" chords may be causing trouble with Jenkins.
Jim Hague <jim.hague@acm.org>
parents:
351
diff
changeset
|
42 sed -e "s/\"[^\"]*\"//g" $filename > $outdir/$name.abc.tmp |
ecc62b487e57
Some empty "" chords may be causing trouble with Jenkins.
Jim Hague <jim.hague@acm.org>
parents:
351
diff
changeset
|
43 |
216 | 44 # Transpose. By default abc2abc will report errors in the output, |
671
2f6e05d0aba0
Add experimental Alto Recorder (C Fingering) instrument.
Jim Hague <jim.hague@acm.org>
parents:
370
diff
changeset
|
45 # but this messes up output formatting so stop it. |
749
06fec6764661
Revise transposition scripts to make Compact.
Jim Hague <jim.hague@acm.org>
parents:
748
diff
changeset
|
46 abc2abc $outdir/$name.abc.tmp -e -t $transpose > $outdir/$compact$name.abc |
370
ecc62b487e57
Some empty "" chords may be causing trouble with Jenkins.
Jim Hague <jim.hague@acm.org>
parents:
351
diff
changeset
|
47 rm $outdir/$name.abc.tmp |
216 | 48 done |