mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 12:29:22 +02:00
New Tunes
----------------------------------------------------- Mairi's Wedding Lochanside My Land PM JK Cairns Cabar Feidh (Reel, Hornpipe, Jig, Strathspey) La Baum Rowan Tree Wings Molly Connell
This commit is contained in:
parent
9f6b002762
commit
560b5621b7
82 changed files with 2747 additions and 236 deletions
17
3-4_marches/lochanside/config.ily
Normal file
17
3-4_marches/lochanside/config.ily
Normal file
|
@ -0,0 +1,17 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\time 3/4
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 4 = 80
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 8 s8 }
|
||||
measure = { \grace {s1} s2. | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "Lochanside"
|
||||
meter = "Retreat"
|
42
3-4_marches/lochanside/notes.pipes.ily
Normal file
42
3-4_marches/lochanside/notes.pipes.ily
Normal file
|
@ -0,0 +1,42 @@
|
|||
% 3/4 Lochanside
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = "PM J. MacLellan, DCM"
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
\thrwd d8. [ e16 ] \grg f4 \dblf f8 [ A8 ] |
|
||||
\grf g8 [ \grA e8 ] \dblf f4 \thrwd d4 |
|
||||
A8. [ f16 ] \thrwd d4 \dbld d8. [ e16 ] |
|
||||
\grg f8 [ \birl a8 ] \grg f4 \dble e4 |
|
||||
|
||||
\grg e8. [ d16 ] \dblc c4 \grip c8 [ A8 ] |
|
||||
\grf g8 [ \grA e8 ] \thrwd d4 \gre a4 |
|
||||
\grg e8. [ f16 ] \dblg g4 \grA g8 [ b8 ] |
|
||||
\dblc c8 [ \gre a8 ] \thrwd d4 \dbld d4 |
|
||||
}
|
||||
|
||||
pipesB = {
|
||||
\dbld d8. [ f16 ] \dblA A4 \grg A8. [ g16 ] |
|
||||
\grA f8. [ g16 ] \dblA A4 \hdblf f4 |
|
||||
\thrwd d8 [ \gre a8 ] \grip b4 \dblg g8. [ f16 ] |
|
||||
\grg e8 [ \thrwd d8 ] \grg f4 \dble e4 |
|
||||
|
||||
\grg e8. [ d16 ] \dblc c4 \grip c8 [ A8 ] |
|
||||
\grf g8 [ \grA e8 ] \thrwd d4 \gre a4 |
|
||||
\grg e8. [ f16 ] \dblg g4 \grA g8 [ b8 ] |
|
||||
\dblc c8 [ \gre a8 ] \thrwd d4 \dbld d4 |
|
||||
}
|
||||
pipesC = {
|
||||
\dblc c8. [ b16 ] \grb a4 \wbirl a8 [ \grd c8 ] |
|
||||
\grg e8 [ g8 ] \hdblf f4 \thrwd d4 |
|
||||
\dblc c8. [ b16 ] \grb a4 \wbirl a8 [ \grd c8 ] |
|
||||
\dblA A8. [ g16 ] \hdblf f4 \dble e8 [ a8 ] |
|
||||
|
||||
\thrwd d8. [ f16 ] \dblA A4 \hdblf f8 [ A8 ] |
|
||||
g16. [ f32 ] \grg e16. [ d32 ] \dblc c4 \slurb b4 |
|
||||
\grg e8. [ f16 ] \dblg g4 \grA g8 [ b8 ] |
|
||||
\dblc c8 [ \gre a8 ] \thrwd d4 \dbld d4 |
|
||||
}
|
59
3-4_marches/lochanside/pipes.ly
Normal file
59
3-4_marches/lochanside/pipes.ly
Normal file
|
@ -0,0 +1,59 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesA
|
||||
|
||||
\pipesB
|
||||
|
||||
\pipesC
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\pipesA
|
||||
\pipesA
|
||||
\pipesB
|
||||
\pipesB
|
||||
\pipesC
|
||||
\pipesC
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
17
3-4_marches/my_land/config.ily
Normal file
17
3-4_marches/my_land/config.ily
Normal file
|
@ -0,0 +1,17 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\time 3/4
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 4 = 80
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 8 s8 }
|
||||
measure = { \grace {s1} s2. | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "My Land"
|
||||
meter = "Retreat"
|
32
3-4_marches/my_land/notes.pipes.ily
Normal file
32
3-4_marches/my_land/notes.pipes.ily
Normal file
|
@ -0,0 +1,32 @@
|
|||
% 3/4 My Land
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = "N. MacLean"
|
||||
arrangerPipes = "Seaforth Highlanders (1936)"
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
\grg a8. [ c16 ] \dble e4 \gra e4 |
|
||||
\dblA A8 [ c8 ] \dble e4 \gra e4 |
|
||||
\thrwd d8. [ c16 ] \grg b4~ b8 [ f8 ] |
|
||||
\dble e8. [ d16 ] \dblc c2 |
|
||||
|
||||
\grg a8. [ c16 ] \dble e4 \gra e4 |
|
||||
\dblA A8 [ c8 ] \dble e4 \gra e4 |
|
||||
\thrwd d8. [ c16 ] \grg b4 f4 |
|
||||
\dble e4 \birl a2
|
||||
}
|
||||
|
||||
pipesB = {
|
||||
\grg c8 [ \grG a8 ] \dble e4 \gra e4 |
|
||||
\grg f8. [ g16 ] \dblA A4 \grg A4 |
|
||||
\thrwd d8. [ f16 ] \dble e4~ e8 [ c8 ] |
|
||||
\thrwd d8. [ c16 ] \grg b2 |
|
||||
|
||||
\grg a8. [ c16 ] \dble e4 \gra e4 |
|
||||
\dblA A8 [ c8 ] \dble e4 \gra e4 |
|
||||
\thrwd d8. [ c16 ] \grg b4 f4 |
|
||||
\dble e4 \birl a2
|
||||
}
|
52
3-4_marches/my_land/pipes.ly
Normal file
52
3-4_marches/my_land/pipes.ly
Normal file
|
@ -0,0 +1,52 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesA
|
||||
|
||||
\pipesB
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\pipesA
|
||||
\pipesA
|
||||
|
||||
\pipesB
|
||||
\pipesB
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
17
3-4_marches/pipe_major_jk_cairns/config.ily
Normal file
17
3-4_marches/pipe_major_jk_cairns/config.ily
Normal file
|
@ -0,0 +1,17 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\time 3/4
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 4 = 80
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 8 s8 }
|
||||
measure = { \grace {s1} s2. | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "Pipe Major J. K. Cairns"
|
||||
meter = "Retreat"
|
49
3-4_marches/pipe_major_jk_cairns/notes.pipes.ily
Normal file
49
3-4_marches/pipe_major_jk_cairns/notes.pipes.ily
Normal file
|
@ -0,0 +1,49 @@
|
|||
% 3/4 Pipe Major J. K. Cairns
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = " PM A. M. Cairns, MMM, CD"
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesAA = {
|
||||
\grg a8. [ b16 ] \grip c4~ c8 [ e8 ] |
|
||||
\grg \tuplet 3/2 { d8 c8 b8 } \grG a2 |
|
||||
\thrwd d8. [ e16 ] \grg f4~ f8 [ A8 ] |
|
||||
\thrwd d8 [ f8 ] \dblf f8 [ e8~ ] e4 |
|
||||
}
|
||||
pipesABA = {
|
||||
\grg c8. [ d16 ] \dble e4~ e8 [ f8 ] |
|
||||
\dble e8 [ c8 ] \dblb b8 [ \gre a8 ] a4 |
|
||||
\grg b8 [ c8 ] \dble e8 [ f8 ] A8. [ f16 ] |
|
||||
\dble e8 [ a8 ] \dble c8 [ \gre b8~ ] b4
|
||||
}
|
||||
pipesABB = {
|
||||
\grg c8 [ e8 ] \dblA A4~ A8 [ g8 ] |
|
||||
A8. [ f16 ] \dble e8 [ a8 ] a4 |
|
||||
\grg \tuplet 3/2 { f8 e8 d8 } \dblc c4~ c8 [ e8 ] |
|
||||
\grg \tuplet 3/2 { d8 c8 b8 } \grG a2
|
||||
}
|
||||
|
||||
pipesBA = {
|
||||
\grg e8. [ f16 ] \dble e4~ e8 [ c8 ] |
|
||||
\grg a8 [ c8 ] \dblf f8 [ e8 ] e4 |
|
||||
A8. [ g16 ] \dblA A4 A8 [ f8 ] |
|
||||
\thrwd d8 [ f8 ] \dblf f8 [ e8~ ] e4 |
|
||||
|
||||
\grg c8. [ d16 ] \dble e4~ e8 [ f8 ] |
|
||||
\dble e8 [ c8 ] \dblb b8 [ \gre a8 ] a4 |
|
||||
\grg b8 [ c8 ] \dble e8 [ f8 ] A8. [ f16 ] |
|
||||
\dble e8 [ a8 ] \dble c8 [ \gre b8 ] b4 |
|
||||
}
|
||||
pipesBB = {
|
||||
\grg a8. [ b16 ] \grip c4~ c8 [ e8 ] |
|
||||
\grg \tuplet 3/2 { d8 c8 b8 } \grG a2 |
|
||||
\thrwd d8. [ e16 ] \grg f4~ f8 [ A8 ] |
|
||||
\thrwd d8 [ f8 ] \dblf f8 [ e8~ ] e4 |
|
||||
|
||||
\grg c8 [ e8 ] \dblA A4~ A8 [ g8 ] |
|
||||
A8. [ f16 ] \dble e8 [ a8~ ] a4 |
|
||||
\grg \tuplet 3/2 { f8 e8 d8 } \dblc c4~ c8 [ e8 ] |
|
||||
\grg \tuplet 3/2 { d8 c8 b8 } \grG a2
|
||||
}
|
61
3-4_marches/pipe_major_jk_cairns/pipes.ly
Normal file
61
3-4_marches/pipe_major_jk_cairns/pipes.ly
Normal file
|
@ -0,0 +1,61 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\halfline
|
||||
} \alternative {
|
||||
\halfline
|
||||
\halfline
|
||||
}\bar "|."
|
||||
|
||||
\break
|
||||
\line \bar "||"
|
||||
\break
|
||||
\line \bar "|."
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesAA
|
||||
\pipesABA
|
||||
\pipesABB
|
||||
|
||||
\pipesBA
|
||||
\pipesBB
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\pipesAA
|
||||
\pipesABA
|
||||
\pipesAA
|
||||
\pipesABB
|
||||
|
||||
\pipesBA
|
||||
\pipesBB
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue