1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 12:29:22 +02:00

Moved out of pipebanddrumming repo. This is the repo for all my music..

This commit is contained in:
Eric Teunis de Boone 2016-02-20 16:51:07 +01:00
parent bcb750add2
commit dd127fb48b
277 changed files with 0 additions and 572 deletions

View file

@ -0,0 +1,54 @@
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,75,80,250)
TuneFormat,(1,0,M,L,500,500,500,500,L,1,0)
TuneTempo,84
"March",(T,C,0,0,Times New Roman,14,400,0,0,18,0,0,0)
" set 14",(Y,L,0,0,Times New Roman,16,700,0,0,18,0,0,0)
"Arr. G. Rooney",(M,R,0,0,Times New Roman,10,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)
"14 a",(F,C,0,0,Times New Roman,10,400,0,0,18,0,0,0)
"oktober 2012",(F,L,0,0,Times New Roman,10,400,0,0,18,0,0,0)
"The Minstrel Boy",(I,L,0,0,Times New Roman,11,400,0,0,18,0,0,0)
& sharpf sharpc 4_4 I!'' E_8 space
! gg LA_4 'la B_8 thrd Dr_8 Cl_8 gg Br_8 strlg LAl_8
! dbc C_4 E_4 dbha HA_4 HGr_8 HAl_8
! hdbf F_4 E_4 gg Cr_8 'c Dl_16 dbe Er_8 Cl_8
! dbb B_2 strlg LA_4 'la space
''!I
& sharpf sharpc E_8
! dbha HA_4 HG_4 tg F_4 HGr_8 HAl_8
! strf HG_4 F_4 gg E_4 'e strla E_8
! gg F_4 'f C_8 grp C_4 E_4
! gg Fr_8 'f El_16 gg Fr_8 HGl_8 dbha HA_4 strhg HA_4
!t
& sharpf sharpc
LA_4 'la B_8 thrd Dr_8 Cl_8 Br_8 strlg LAl_8
! dbc C_4 E_4 dbha HA_4 HGr_8 HAl_8
! hdbf F_4 E_4 gg Cr_8 'c Dl_16 dbe Er_8 Cl_8
! dbb B_2 strlg LA_4 'la space
!I

View file

@ -0,0 +1,20 @@
\version "2.19.0"
%% Globals
global = {
\time 4/4
}
%% Format
part = { \partial 8 s8 }
halfline = { \repeat unfold 2 { s1 | } }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Minstrel Boy"
meter = "March"
composerSide = ""
composerTenor = ""
composerBass = ""
composerPipes = ""

View file

@ -0,0 +1,33 @@
% 4/4 Minstrel Boy
% Snare
\version "2.18.2"
composerSide = ""
%%music
snareAA = \drummode {
d16. g32 |
d4:32( d8.) g16 \flamd d8 d8:32( g8) d8:32( |
g16.) d32-> g16. g32 \flamd d8 \flamg g8 d4:32(-> d4:32)(-> |
\break
d8:32)(-> g8:32)-> r8 d8:32( g8[) \dragd d16. d32]-> g16. g32 \flamd d8 |
\flamd d4 d4:32( d4)
}
snareAB = \drummode {
\dragd d16. d32-> g16. g32 |
d4:32( d8.) g16 \flamd d8 d8:32( g8) d8:32( |
g16.) d32-> g16. g32 \flamd d8 \flamg g8 d4:32(-> d4:32)(-> |
\break
d8:32)(-> g8:32)-> r8 d8:32( g8[) \dragd d16. d32]-> g16. g32 \flamd d8 |
\flamd d4 d4:32( d4)
}
% Part 2
snareBA = \drummode {
\flamd d8. d16:32( |
g16) g16 d8:32( g16) g16 d8:32( g8:32)( d8) r8 d8:32( |
g16.) d32-> g16. g32 \flamd d8 \flamg g8 d4:32(-> d4:32)(-> |
d8:32)(-> g8:32)-> r8 d8:32( g8[) \dragd d16. d32]-> g16. g32 \flamd d8 |
\flamd d4 d4:32( d4)
}

View file

@ -0,0 +1,33 @@
\version "2.18.2"
\include "config.ily"
\include "notes.side.ily"
\score {
\new PipeBandDrumStaff {
\global
<<
{
\part \line \break
\line \break \bar "|."
\partial 4 s4 |
\line \break
\line \break \bar "|."
}
{
\snareAA
\snareAB s4
\snareBA
\snareAB r8
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentSide
composer = \composerSide
}
}