Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
First revision of Low Whistle
Browse files Browse the repository at this point in the history
  • Loading branch information
jgadsden authored Oct 23, 2019
1 parent 2817e35 commit c53316b
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 1 deletion.
32 changes: 31 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,32 @@
# musescore-low-whistle
An extra instrument file for adding more Low Whistle types to MuseScore
This repo provides an extra instrument file for adding Low Whistle types to Musescore.

The Low Whistle, which is a metal 6 hole Flageolet, is larger than the more well-known tin
whistle and has a lower pitch. The low whistle is commonly available in three tunings:
* "D Low Whistle" tuned to D4, also used for keys Em and G
* "F Low Whistle" tuned to F4, also used for Gm and B♭
* "G Low Whistle" tuned to G4, also used for Am and C

## Install
The file `low-whistle.xml` needs to be installed as an instrument extension using the MuseScore
menu. Use the same file for both MuseScore version 2.x and MuseScore version 3.x :

### MuseScore 2.x
1. copy file `low-whistle.xml` to `Documents/MuseScore2/Extensions/low-whistle.xml`
2. within Musescore menu, navigate to `MuseScore` then `Preferences...` then `Score` tab
3. in the Default Files panel, add the file to 'Instrument List 2' extension by:
4. browsing to `Documents/MuseScore2/Extensions/low-whistle.xml` and add to 'Instrument List 2'

### MuseScore 3.x
1. copy file `low-whistle.xml` to `Documents/MuseScore3/Extensions/low-whistle.xml`
2. within Musescore menu, navigate to `MuseScore` then `Preferences...` then `Score` tab
3. in the Default Files panel, add the file to 'Instrument List 2' extension by:
4. browsing to `Documents/MuseScore3/Extensions/low-whistle.xml` and add to 'Instrument List 2'

You may now add a low whistle staff using MuseScore menu item `Edit` then `Instruments...`,
where MuseScore lists the low whistles instruments under 'World Music' 'Woodwinds'.

Once a low whistle staff is added to the score there is no need to keep this instrument
file in the 'Instrument List 2' extension.

The score `low_whistle_range_test.mscz` is an example score showing all three whistle staves.
48 changes: 48 additions & 0 deletions low-whistle.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<museScore>
<InstrumentGroup id="woodwinds">
<name>Woodwinds</name>
<Instrument id="d-low-whistle">
<longName>D Low Whistle</longName>
<shortName>D Low Wh.</shortName>
<description>6 hole Flageolet, metal construction, keys D, Em and G</description>
<musicXMLid>wind.flutes.whistle.low.d</musicXMLid>
<clef>G8va</clef>
<barlineSpan>1</barlineSpan>
<aPitchRange>62-86</aPitchRange>
<pPitchRange>62-92</pPitchRange>
<Channel>
<program value="78"/> <!--Whistle-->
</Channel>
<genre>world</genre>
</Instrument>
<Instrument id="f-low-whistle">
<longName>F Low Whistle</longName>
<shortName>F Low Wh.</shortName>
<description>6 hole Flageolet, metal construction, keys F, Gm and B♭</description>
<musicXMLid>wind.flutes.whistle.low.f</musicXMLid>
<clef>G8va</clef>
<barlineSpan>1</barlineSpan>
<aPitchRange>65-89</aPitchRange>
<pPitchRange>65-95</pPitchRange>
<Channel>
<program value="78"/> <!--Whistle-->
</Channel>
<genre>world</genre>
</Instrument>
<Instrument id="g-low-whistle">
<longName>G Low Whistle</longName>
<shortName>G Low Wh.</shortName>
<description>6 hole Flageolet, metal construction, keys G, Am and C</description>
<musicXMLid>wind.flutes.whistle.low.g</musicXMLid>
<clef>G8va</clef>
<barlineSpan>1</barlineSpan>
<aPitchRange>67-91</aPitchRange>
<pPitchRange>67-97</pPitchRange>
<Channel>
<program value="78"/> <!--Whistle-->
</Channel>
<genre>world</genre>
</Instrument>
</InstrumentGroup>
</museScore>
Binary file added low_whistle_range_test.mscz
Binary file not shown.

0 comments on commit c53316b

Please sign in to comment.