mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-12-22 08:13:31 +01:00
New Tune: Stumpie
This commit is contained in:
parent
1e2127ced0
commit
074ae13720
3 changed files with 111 additions and 0 deletions
18
strathspeys/stumpie/config.ily
Normal file
18
strathspeys/stumpie/config.ily
Normal file
|
@ -0,0 +1,18 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\key a \mixolydian
|
||||
\time 4/4
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 4 = 120
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 8 \grace{s4.} s8 }
|
||||
measure = { \grace {s1} s1 | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "Stumpie"
|
||||
meter = "Strathspey"
|
31
strathspeys/stumpie/notes.pipes.ily
Normal file
31
strathspeys/stumpie/notes.pipes.ily
Normal file
|
@ -0,0 +1,31 @@
|
|||
% 4/4 Stumpie
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
arrangerPipes = ""
|
||||
pipeglobal = {
|
||||
\key a \mixolydian
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
d8 |
|
||||
c16 [ e8. ] \dblA A4 g16 [ f16 e8 ] \dblA A4 |
|
||||
c16 [ e8. ] \dblA A8. [ e16 ] \dblf f8. [ G16 ] \grG b8. [ d16 ] |
|
||||
c16 [ e8. ] \dblA A4 g16 [ f16 e8 ] \dblA A4 |
|
||||
c16 [ e8. ] \grg b8. [ d16 ] \dblc c16 [ \gre a8. ] \wbirl a8
|
||||
}
|
||||
|
||||
pipesBA = {
|
||||
d8 |
|
||||
\grg c16 [ e8. ] \dble e8. [ c16 ] \thrwd d8. [ f16 ] \grg f8. [ d16 ] |
|
||||
\grg c16 [ e8. ] \dble e8. [ c16 ] \dblf f8. [ G16 ] \grG b8. [ d16 ] |
|
||||
\grg c16 [ e8. ] \dble e8. [ c16 ] \thrwd d8. [ f16 ] \grg f8. [ d16 ] |
|
||||
\grg c16 [ e8. ] \grg b8. [ d16 ] \dblc c16 [ \gre a8. ] \wbirl a8
|
||||
}
|
||||
pipesBB = {
|
||||
d8 |
|
||||
\grg c16 [ e8. ] \dble e8. [ c16 ] \thrwd d8. [ f16 ] \grg f8. [ d16 ] |
|
||||
\grg c16 [ e8. ] \dble e8. [ c16 ] \dblf f8. [ G16 ] \grG b8. [ d16 ] |
|
||||
c16 [ e8. ] \dblA A4 g16 [ f16 e8 ] \dblA A4 |
|
||||
c16 [ e8. ] \grg b8. [ d16 ] \dblc c16 [ \gre a8. ] \wbirl a8
|
||||
}
|
62
strathspeys/stumpie/pipes.ly
Normal file
62
strathspeys/stumpie/pipes.ly
Normal file
|
@ -0,0 +1,62 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "bagpipe.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\halfline
|
||||
}
|
||||
\break
|
||||
\part
|
||||
\line
|
||||
\bar "|."
|
||||
}%Format
|
||||
\new Voice = "pipes" {
|
||||
\pipesA s8
|
||||
|
||||
\pipesBA
|
||||
\pipesBB
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
subtitle = \subtitle
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
arranger = \arrangerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\unfoldRepeats {
|
||||
\repeat volta 2 {
|
||||
\partial 8
|
||||
\pipesA
|
||||
}
|
||||
\pipesBA
|
||||
\pipesBB
|
||||
}
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
subtitle = \subtitle
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
arranger = \arrangerPipes
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue