At the request of Jezra, here's a
Lilypond source file for the harmonica bit at the beginning. Of course there are some stray notes and chords in my performance but this is the melody from which it all stems...
- Code: Select all
\version "2.12.2"
\header {
title = \markup { \override #'(font-name . "Courier") { \fontsize #+2 "~$ sudo modprobe" } }
composer = \markup { \override #'(font-name . "Vera") { \fontsize #-2 "Fabian Scherschel & Dan Lynch" } }
copyright = "Creative Commons Attribution-Share-Alike 3.0"
}
melody = \relative c' {
\key e \minor
\time 4/4
\numericTimeSignature
\set Staff.midiInstrument = "harmonica"
e4 d8 e4 d8 e[ fis] | % 1
g2. b4 | % 2
a2. r8 b8 ~ | % 3
b8 a g a g a g fis | % 4
e4 d8 e4 d8 e[ fis] | % 5
g2. ~ g8 fis | % 6
d1 ~ | % 7
d2 r | % 8
\bar "|."
}
\score {
\new Staff = "harmonica" { \melody }
\layout {}
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
Of course Fab also posted the source for my classical guitar arrangement a long time ago
here.