mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 20:39:20 +02:00
Moved out of pipebanddrumming repo. This is the repo for all my music..
This commit is contained in:
parent
bcb750add2
commit
dd127fb48b
277 changed files with 0 additions and 572 deletions
14
4-4_marches/the_leaving_of_liverpool/config.ily
Normal file
14
4-4_marches/the_leaving_of_liverpool/config.ily
Normal file
|
@ -0,0 +1,14 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\time 4/4
|
||||
}
|
||||
|
||||
%% Format
|
||||
part = { \partial 4 s4 }
|
||||
halfline = { \repeat unfold 2 { s1 | } }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "The Leaving of Liverpool"
|
||||
meter = "March"
|
63
4-4_marches/the_leaving_of_liverpool/drums.ly
Normal file
63
4-4_marches/the_leaving_of_liverpool/drums.ly
Normal file
|
@ -0,0 +1,63 @@
|
|||
\version "2.19.0"
|
||||
|
||||
\include "config.ily"
|
||||
%\include "notes.bass.ily"
|
||||
\include "notes.tenor.ily"
|
||||
\include "notes.side.ily"
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new PipeBandDrumStaff = "side" {
|
||||
\global
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{\instrumentSide}
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{\shortInstrumentSide}
|
||||
|
||||
<<
|
||||
{
|
||||
\repeat volta 2 { \part \line } \break
|
||||
\part \line \break
|
||||
\line \bar "|."
|
||||
}
|
||||
{
|
||||
\snareA s4
|
||||
|
||||
\snareBA
|
||||
\snareBB
|
||||
}
|
||||
>>
|
||||
}
|
||||
%\new PipeBandDrumStaff = "bass" {
|
||||
% \set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
||||
% \set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
||||
%
|
||||
% \bassA
|
||||
% s16 \bassBA \bassBB
|
||||
%}
|
||||
\new PipeBandDrumStaff = "tenor" {
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
|
||||
r8 r16 \tenorA s4
|
||||
r8 r16 \tenorA
|
||||
r8 r16 \tenorA
|
||||
s4
|
||||
|
||||
}
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
composer = \markup {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \composerSide ":" }} #} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} )
|
||||
}
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
58
4-4_marches/the_leaving_of_liverpool/full.ly
Normal file
58
4-4_marches/the_leaving_of_liverpool/full.ly
Normal file
|
@ -0,0 +1,58 @@
|
|||
\version "2.19.0"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.bass.ily"
|
||||
\include "notes.tenor.ily"
|
||||
\include "notes.side.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentPipes }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||||
<<
|
||||
{}%Format
|
||||
{}%Pipes
|
||||
>>
|
||||
}
|
||||
\new PipeBandDrumStaff = "side" {
|
||||
\sideglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup \column {\instrumentSide}
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{\shortInstrumentSide}
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "bass" {
|
||||
\bassglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "tenor" {
|
||||
\tenorglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
|
||||
}
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
composer = \markup \large {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes ":" }} #} )
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \composerSide ":" }} #} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} )
|
||||
}
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
62
4-4_marches/the_leaving_of_liverpool/leav.bww
Normal file
62
4-4_marches/the_leaving_of_liverpool/leav.bww
Normal file
|
@ -0,0 +1,62 @@
|
|||
Bagpipe Reader:1.0
|
||||
|
||||
MIDINoteMappings,(54,56,58,59,61,63,64,66,68,56,58,60,61,63,65,66,68,70,55,57,59,60,62,64,65,67,69)
|
||||
|
||||
FrequencyMappings,(370,415,466,494,554,622,659,740,831,415,466,523,554,622,699,740,831,932,392,440,494,523,587,659,699,784,880)
|
||||
|
||||
InstrumentMappings,(71,71,45,33,1000,60,70)
|
||||
|
||||
GracenoteDurations,(20,40,30,50,100,200,800,1200,250,250,250,500,200)
|
||||
|
||||
FontSizes,(90,100,88,80,250)
|
||||
|
||||
TuneFormat,(1,0,F,L,500,500,500,500,L,1,0)
|
||||
|
||||
TuneTempo,90
|
||||
|
||||
" set 12",(T,L,0,0,Times New Roman,17,700,0,0,18,0,0,0)
|
||||
|
||||
"March",(Y,C,0,0,Times New Roman,14,400,0,0,18,0,0,0)
|
||||
|
||||
"",(M,R,0,0,Times New Roman,11,400,0,0,18,0,0,0)
|
||||
|
||||
"The Seaforth Highlanders of Holland",(F,R,0,0,Times New Roman,10,400,0,0,18,0,0,0)
|
||||
"12 a",(F,C,0,0,Times New Roman,10,400,0,0,18,0,0,0)
|
||||
"February 21st 2010",(F,L,0,0,Times New Roman,10,400,0,0,18,0,0,0)
|
||||
|
||||
"The Leaving of Liverpool",(I,L,0,0,Times New Roman,11,700,0,0,18,0,0,0)
|
||||
|
||||
& sharpf sharpc 4_4
|
||||
gg LAr_8 'la Bl_16
|
||||
! grp C_4 dbc Cr_8 El_8 thrd Dr_8 Cl_8 dbb Br_8 LAl_8
|
||||
! HA_4 gg HAr_8 'ha Fl_16 gg E_4 gg LAr_8 'la Bl_16
|
||||
! grp Cr_8 El_8 dbe Er_8 Cl_8 gg Fr_8 'f El_16 thrd Dr_8 Cl_8
|
||||
! dbb B_2 grp B_4 gg LAr_8 'la Bl_16 !t
|
||||
|
||||
& sharpf sharpc
|
||||
grp C_4 dbc Cr_8 El_8 thrd Dr_8 Cl_8 dbb Br_8 LAl_8
|
||||
! HA_4 gg HAr_8 'ha Fl_16 gg E_4 gg LAr_8 'la Bl_16
|
||||
! grp Cr_8 El_8 dbe Er_8 Cl_8 dbb ^ts B_4 'b strlg LA_8
|
||||
! gg LA_2 brl LA_4 !I
|
||||
|
||||
& sharpf sharpc
|
||||
gg Fr_8 'f HGl_16
|
||||
! dbha HA_4 ^tha HAr_8 'ha Fl_16 gg E_4 'e strla E_8
|
||||
! gg Fr_8 Dl_8 HAr_8 'ha Fl_16 gg E_4 gg LAr_8 'la Bl_16
|
||||
! grp Cr_8 El_8 dbe Er_8 Cl_8 gg Fr_8 'f El_16 thrd Dr_8 Cl_8
|
||||
! dbb B_2 grp B_4 gg Fr_8 'f HGl_16 !t
|
||||
|
||||
|
||||
& sharpf sharpc
|
||||
dbha HA_4 ^tha HAr_8 'ha Fl_16 gg E_4 'e strla E_8
|
||||
! gg Fr_8 Dl_8 HAr_8 'ha Fl_16 gg E_4 gg LAr_8 'la Bl_16
|
||||
! grp Cr_8 El_8 dbe Er_8 Cl_8 dbb B_4 'b strlg LA_8
|
||||
! gg LA_2 brl LA_4 !I
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
55
4-4_marches/the_leaving_of_liverpool/leav.ly
Normal file
55
4-4_marches/the_leaving_of_liverpool/leav.ly
Normal file
|
@ -0,0 +1,55 @@
|
|||
\include "bagpipe.ly"
|
||||
melody = {
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
\hideKeySignature
|
||||
\cadenzaOn
|
||||
\once \override Score.BreakAlignment #'break-align-orders =
|
||||
#(make-vector 3 '(instrument-name
|
||||
left-edge
|
||||
ambitus
|
||||
span-bar
|
||||
breathing-sign
|
||||
clef
|
||||
key-signature
|
||||
time-signature
|
||||
staff-bar
|
||||
custos
|
||||
span-bar))
|
||||
\time 4/4
|
||||
\grg a8. [ b16 ] \bar "|"
|
||||
\grip c4 \dblc c8 [ e8 ] \thrwd d8 [ c8 ] \dblb b8 [ a8 ] \bar "|"
|
||||
A4 \grg A8. [ f16 ] \grg e4 \grg a8. [ b16 ] \bar "|"
|
||||
\grip c8 [ e8 ] \dble e8 [ c8 ] \grg f8. [ e16 ] \thrwd d8 [ c8 ] \bar "|"
|
||||
\dblb b2 \grip b4 \grg a8. [ b16 ] \bar "|" \break
|
||||
|
||||
\grip c4 \dblc c8 [ e8 ] \thrwd d8 [ c8 ] \dblb b8 [ a8 ] \bar "|"
|
||||
A4 \grg A8. [ f16 ] \grg e4 \grg a8. [ b16 ] \bar "|"
|
||||
\grip c8 [ e8 ] \dble e8 [ c8 ] \dblb b4~ \grG a8 \bar "|"
|
||||
\grg a2 \wbirl a4 \bar ".|" \break
|
||||
\grg f8. [ g16 ] \bar "|"
|
||||
\dblA A4 A8. [ f16 ] \grg e4. \gra e8 \bar "|"
|
||||
\grg f8 [ d8 ] A8. [ f16 ] \grg e4 \grg a8. [ b16 ] \bar "|"
|
||||
\grip c8 [ e8 ] \dble e8 [ c8 ] \grg f8. [ e16 ] \thrwd d8 [ c8 ] \bar "|"
|
||||
\dblb b2 \grip b4 \grg f8. [ g16 ] \bar "|" \break
|
||||
|
||||
\dblA A4 A8. [ f16 ] \grg e4. \gra e8 \bar "|"
|
||||
\grg f8 [ d8 ] A8. [ f16 ] \grg e4 \grg a8. [ b16 ] \bar "|"
|
||||
\grip c8 [ e8 ] \dble e8 [ c8 ] \dblb b4. \grG a8 \bar "|"
|
||||
\grg a2 \wbirl a4 \bar ".|" \break
|
||||
|
||||
}
|
||||
|
||||
\score {
|
||||
\melody
|
||||
\layout {
|
||||
indent = 0.0\cm
|
||||
\context { \Score \remove "Bar_number_engraver" }
|
||||
}
|
||||
\header {
|
||||
title = " set 12"
|
||||
meter = "March"
|
||||
arranger = ""
|
||||
}
|
||||
|
||||
}
|
||||
|
35
4-4_marches/the_leaving_of_liverpool/notes.pipes.ily
Normal file
35
4-4_marches/the_leaving_of_liverpool/notes.pipes.ily
Normal file
|
@ -0,0 +1,35 @@
|
|||
% 4/4s The Leaving of Liverpool
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
pipesAA = {
|
||||
\grg a8. [ b16 ]
|
||||
\grip c4 \dblc c8 [ e8 ] \thrwd d8 [ c8 ] \dblb b8 [ a8 ] |
|
||||
A4 \grg A8. [ f16 ] \grg e4 \grg a8. [ b16 ] |
|
||||
\grip c8 [ e8 ] \dble e8 [ c8 ] \grg f8. [ e16 ] \thrwd d8 [ c8 ] |
|
||||
\dblb b2 \grip b4 \grg a8. [ b16 ] |
|
||||
}
|
||||
pipesAB = {
|
||||
\grip c4 \dblc c8 [ e8 ] \thrwd d8 [ c8 ] \dblb b8 [ a8 ] |
|
||||
A4 \grg A8. [ f16 ] \grg e4 \grg a8. [ b16 ] |
|
||||
\grip c8 [ e8 ] \dble e8 [ c8 ] \dblb b4~ \grG a8 |
|
||||
\grg a2 \wbirl a4
|
||||
}
|
||||
|
||||
pipesBA = {
|
||||
\grg f8. [ g16 ] |
|
||||
\dblA A4 A8. [ f16 ] \grg e4. \gra e8 |
|
||||
\grg f8 [ d8 ] A8. [ f16 ] \grg e4 \grg a8. [ b16 ] |
|
||||
\grip c8 [ e8 ] \dble e8 [ c8 ] \grg f8. [ e16 ] \thrwd d8 [ c8 ] |
|
||||
\dblb b2 \grip b4 \grg f8. [ g16 ] |
|
||||
}
|
||||
|
||||
pipesBB = {
|
||||
\dblA A4 A8. [ f16 ] \grg e4. \gra e8 |
|
||||
\grg f8 [ d8 ] A8. [ f16 ] \grg e4 \grg a8. [ b16 ] |
|
||||
\grip c8 [ e8 ] \dble e8 [ c8 ] \dblb b4. \grG a8 |
|
||||
\grg a2 \wbirl a4
|
||||
}
|
33
4-4_marches/the_leaving_of_liverpool/notes.side.ily
Normal file
33
4-4_marches/the_leaving_of_liverpool/notes.side.ily
Normal file
|
@ -0,0 +1,33 @@
|
|||
% 2/4 Black Bear
|
||||
% Snare
|
||||
\version "2.18.2"
|
||||
composerSnare = "E.T. de Boone, 2015"
|
||||
|
||||
%%music
|
||||
snareA = \drummode {
|
||||
r8 d16. g32 |
|
||||
\flamd d8 \tuplet 3/2 { d16 g d } \flamg g8 d8:32( g16.) d32-> g16. g32 \flamd d8 d8:32( |
|
||||
\tuplet 3/2 { g16) d g } \flamd d16. g32 \tuplet 3/2 { d16 g d } \flamg g16. g32 d16. g32 \tuplet 3/2 { d16 g d } \flamg g8 d16. g32 |
|
||||
|
||||
\flamd d8 \tuplet 3/2 { d16 g d } \flamg g8 d8:32( g16.) d32-> g16. g32 \flamd d8 d8 |
|
||||
\flamd d4 d4:32( d4)
|
||||
}
|
||||
% Part 2
|
||||
snareBA = \drummode {
|
||||
\flamd d4 |
|
||||
d4:32(\< d4:32)(-> d8)\! d32 g d g d8-> d8:32( |
|
||||
\tuplet 3/2 { g16) d g } \flamd d16. g32 \tuplet 3/2 { d16 g d } \flamg g16. g32 d16. g32 \tuplet 3/2 { d16 g d } \flamg g8 d16. g32 |
|
||||
|
||||
d4:32(\< d4:32)(-> d8)\! d32 g d g d8-> g8 |
|
||||
\flamd d4 d4:32( d4)
|
||||
}
|
||||
snareBB = \drummode{
|
||||
\flamd d4 |
|
||||
d4:32(\< d4:32)(-> d8)\! d32 g d g d8-> d8:32( |
|
||||
|
||||
\tuplet 3/2 { g16) d g } \flamd d16. g32 \tuplet 3/2 { d16 g d } \flamg g16. g32 d16. g32 \tuplet 3/2 { d16 g d } \flamg g8 d16. g32 |
|
||||
|
||||
\flamg g16. d32:128( d16.) g32 d16.:64( d32) \tuplet 3/2 { g16 d g } \flamd d16. g32-> d32 g d g d16. g32-> d32 g d g |
|
||||
|
||||
d4 d4:32( d4)
|
||||
}
|
27
4-4_marches/the_leaving_of_liverpool/notes.tenor.ily
Normal file
27
4-4_marches/the_leaving_of_liverpool/notes.tenor.ily
Normal file
|
@ -0,0 +1,27 @@
|
|||
% 4/4 The Leaving of Liverpool
|
||||
% Tenor
|
||||
\version "2.18.2"
|
||||
composerTenor = "F.J. de Boone,2011"
|
||||
|
||||
%%music
|
||||
tenorA = \drummode {
|
||||
g16 |
|
||||
d8[ g]
|
||||
d[ g]
|
||||
d[ g]
|
||||
d[ g]
|
||||
|
|
||||
d4
|
||||
r8. g16
|
||||
d4
|
||||
r8. g16
|
||||
|
|
||||
d8[ g]
|
||||
d[ g]
|
||||
d[ g]
|
||||
d[ g]
|
||||
|
|
||||
d16 g d g
|
||||
d g d g
|
||||
d4
|
||||
}
|
35
4-4_marches/the_leaving_of_liverpool/pipes.ly
Normal file
35
4-4_marches/the_leaving_of_liverpool/pipes.ly
Normal file
|
@ -0,0 +1,35 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
{
|
||||
\repeat unfold 2 {
|
||||
\part
|
||||
\line
|
||||
\break
|
||||
\line
|
||||
\break
|
||||
}
|
||||
|
||||
}
|
||||
{
|
||||
\pipesAA
|
||||
\pipesAB s4
|
||||
|
||||
\pipesBA
|
||||
\pipesBB
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
30
4-4_marches/the_leaving_of_liverpool/side.ly
Normal file
30
4-4_marches/the_leaving_of_liverpool/side.ly
Normal file
|
@ -0,0 +1,30 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.side.ily"
|
||||
|
||||
\score {
|
||||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
<<
|
||||
{
|
||||
\repeat volta 2 { \part \line } \break
|
||||
\part \line \break
|
||||
\line \bar "|."
|
||||
|
||||
}
|
||||
{
|
||||
\snareA s4
|
||||
|
||||
\snareBA
|
||||
\snareBB
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentSide
|
||||
composer = \composerSide
|
||||
}
|
||||
}
|
20
4-4_marches/the_leaving_of_liverpool/tenor.ly
Normal file
20
4-4_marches/the_leaving_of_liverpool/tenor.ly
Normal file
|
@ -0,0 +1,20 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.tenor.ily"
|
||||
|
||||
\score {
|
||||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
<<
|
||||
{\repeat volta 2 { \partial 16 s16 \line }}
|
||||
{\tenorA d4 r8.}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentTenor
|
||||
composer = \composerTenor
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue