@mcptoolshop/ai_jam_session 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.es.md +212 -0
- package/README.fr.md +212 -0
- package/README.hi.md +212 -0
- package/README.it.md +212 -0
- package/README.ja.md +214 -0
- package/README.md +214 -0
- package/README.pt-BR.md +212 -0
- package/dist/audio-engine.d.ts +9 -0
- package/dist/audio-engine.d.ts.map +1 -0
- package/dist/audio-engine.js +422 -0
- package/dist/audio-engine.js.map +1 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +551 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +32 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +41 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp-server.d.ts +3 -0
- package/dist/mcp-server.d.ts.map +1 -0
- package/dist/mcp-server.js +903 -0
- package/dist/mcp-server.js.map +1 -0
- package/dist/midi/parser.d.ts +16 -0
- package/dist/midi/parser.d.ts.map +1 -0
- package/dist/midi/parser.js +192 -0
- package/dist/midi/parser.js.map +1 -0
- package/dist/midi/types.d.ts +44 -0
- package/dist/midi/types.d.ts.map +1 -0
- package/dist/midi/types.js +8 -0
- package/dist/midi/types.js.map +1 -0
- package/dist/note-parser.d.ts +105 -0
- package/dist/note-parser.d.ts.map +1 -0
- package/dist/note-parser.js +278 -0
- package/dist/note-parser.js.map +1 -0
- package/dist/playback/controls.d.ts +124 -0
- package/dist/playback/controls.d.ts.map +1 -0
- package/dist/playback/controls.js +252 -0
- package/dist/playback/controls.js.map +1 -0
- package/dist/playback/midi-engine.d.ts +68 -0
- package/dist/playback/midi-engine.d.ts.map +1 -0
- package/dist/playback/midi-engine.js +227 -0
- package/dist/playback/midi-engine.js.map +1 -0
- package/dist/playback/position.d.ts +95 -0
- package/dist/playback/position.d.ts.map +1 -0
- package/dist/playback/position.js +223 -0
- package/dist/playback/position.js.map +1 -0
- package/dist/playback/timing.d.ts +31 -0
- package/dist/playback/timing.d.ts.map +1 -0
- package/dist/playback/timing.js +57 -0
- package/dist/playback/timing.js.map +1 -0
- package/dist/sample-engine.d.ts +17 -0
- package/dist/sample-engine.d.ts.map +1 -0
- package/dist/sample-engine.js +428 -0
- package/dist/sample-engine.js.map +1 -0
- package/dist/schemas.d.ts +40 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +42 -0
- package/dist/schemas.js.map +1 -0
- package/dist/session.d.ts +106 -0
- package/dist/session.d.ts.map +1 -0
- package/dist/session.js +361 -0
- package/dist/session.js.map +1 -0
- package/dist/sfz-parser.d.ts +36 -0
- package/dist/sfz-parser.d.ts.map +1 -0
- package/dist/sfz-parser.js +95 -0
- package/dist/sfz-parser.js.map +1 -0
- package/dist/smoke.d.ts +2 -0
- package/dist/smoke.d.ts.map +1 -0
- package/dist/smoke.js +512 -0
- package/dist/smoke.js.map +1 -0
- package/dist/songs/config/loader.d.ts +14 -0
- package/dist/songs/config/loader.d.ts.map +1 -0
- package/dist/songs/config/loader.js +53 -0
- package/dist/songs/config/loader.js.map +1 -0
- package/dist/songs/config/schema.d.ts +70 -0
- package/dist/songs/config/schema.d.ts.map +1 -0
- package/dist/songs/config/schema.js +53 -0
- package/dist/songs/config/schema.js.map +1 -0
- package/dist/songs/index.d.ts +16 -0
- package/dist/songs/index.d.ts.map +1 -0
- package/dist/songs/index.js +20 -0
- package/dist/songs/index.js.map +1 -0
- package/dist/songs/jam.d.ts +48 -0
- package/dist/songs/jam.d.ts.map +1 -0
- package/dist/songs/jam.js +324 -0
- package/dist/songs/jam.js.map +1 -0
- package/dist/songs/loader.d.ts +27 -0
- package/dist/songs/loader.d.ts.map +1 -0
- package/dist/songs/loader.js +90 -0
- package/dist/songs/loader.js.map +1 -0
- package/dist/songs/midi/hands.d.ts +46 -0
- package/dist/songs/midi/hands.d.ts.map +1 -0
- package/dist/songs/midi/hands.js +134 -0
- package/dist/songs/midi/hands.js.map +1 -0
- package/dist/songs/midi/ingest.d.ts +8 -0
- package/dist/songs/midi/ingest.d.ts.map +1 -0
- package/dist/songs/midi/ingest.js +191 -0
- package/dist/songs/midi/ingest.js.map +1 -0
- package/dist/songs/midi/measures.d.ts +41 -0
- package/dist/songs/midi/measures.d.ts.map +1 -0
- package/dist/songs/midi/measures.js +64 -0
- package/dist/songs/midi/measures.js.map +1 -0
- package/dist/songs/midi/types.d.ts +25 -0
- package/dist/songs/midi/types.d.ts.map +1 -0
- package/dist/songs/midi/types.js +8 -0
- package/dist/songs/midi/types.js.map +1 -0
- package/dist/songs/registry.d.ts +37 -0
- package/dist/songs/registry.d.ts.map +1 -0
- package/dist/songs/registry.js +197 -0
- package/dist/songs/registry.js.map +1 -0
- package/dist/songs/types.d.ts +99 -0
- package/dist/songs/types.d.ts.map +1 -0
- package/dist/songs/types.js +27 -0
- package/dist/songs/types.js.map +1 -0
- package/dist/teaching/live-midi-feedback.d.ts +36 -0
- package/dist/teaching/live-midi-feedback.d.ts.map +1 -0
- package/dist/teaching/live-midi-feedback.js +259 -0
- package/dist/teaching/live-midi-feedback.js.map +1 -0
- package/dist/teaching/midi-feedback.d.ts +33 -0
- package/dist/teaching/midi-feedback.d.ts.map +1 -0
- package/dist/teaching/midi-feedback.js +208 -0
- package/dist/teaching/midi-feedback.js.map +1 -0
- package/dist/teaching/sing-on-midi.d.ts +77 -0
- package/dist/teaching/sing-on-midi.d.ts.map +1 -0
- package/dist/teaching/sing-on-midi.js +186 -0
- package/dist/teaching/sing-on-midi.js.map +1 -0
- package/dist/teaching.d.ts +148 -0
- package/dist/teaching.d.ts.map +1 -0
- package/dist/teaching.js +453 -0
- package/dist/teaching.js.map +1 -0
- package/dist/test-sound.d.ts +3 -0
- package/dist/test-sound.d.ts.map +1 -0
- package/dist/test-sound.js +41 -0
- package/dist/test-sound.js.map +1 -0
- package/dist/types.d.ts +229 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +22 -0
- package/dist/types.js.map +1 -0
- package/dist/vmpk.d.ts +23 -0
- package/dist/vmpk.d.ts.map +1 -0
- package/dist/vmpk.js +236 -0
- package/dist/vmpk.js.map +1 -0
- package/logo.png +0 -0
- package/package.json +70 -0
- package/songs/builtin/a-change-is-gonna-come.json +95 -0
- package/songs/builtin/a-thousand-years.json +93 -0
- package/songs/builtin/aint-no-sunshine.json +98 -0
- package/songs/builtin/all-blues.json +92 -0
- package/songs/builtin/autumn-leaves.json +100 -0
- package/songs/builtin/baba-oriley.json +91 -0
- package/songs/builtin/bach-invention-no1.json +70 -0
- package/songs/builtin/bach-prelude-c-major-bwv846.json +1282 -0
- package/songs/builtin/basic-12-bar-blues.json +119 -0
- package/songs/builtin/beethoven-waldstein-mvt1.json +7766 -0
- package/songs/builtin/bennie-and-the-jets.json +92 -0
- package/songs/builtin/besame-mucho.json +93 -0
- package/songs/builtin/black-orpheus.json +92 -0
- package/songs/builtin/blue-bossa.json +94 -0
- package/songs/builtin/blues-in-g.json +92 -0
- package/songs/builtin/bohemian-rhapsody-intro.json +94 -0
- package/songs/builtin/boogie-woogie-basics.json +93 -0
- package/songs/builtin/bossa-nova-basic.json +95 -0
- package/songs/builtin/chopin-nocturne-op9-no2.json +70 -0
- package/songs/builtin/cinema-paradiso.json +94 -0
- package/songs/builtin/clair-de-lune.json +11511 -0
- package/songs/builtin/clocks.json +91 -0
- package/songs/builtin/crystal-stream.json +70 -0
- package/songs/builtin/desafinado.json +93 -0
- package/songs/builtin/dont-stop-believin.json +91 -0
- package/songs/builtin/dream-on.json +100 -0
- package/songs/builtin/easy-winners.json +70 -0
- package/songs/builtin/el-condor-pasa.json +93 -0
- package/songs/builtin/elite-syncopations.json +70 -0
- package/songs/builtin/evening-calm.json +70 -0
- package/songs/builtin/everyday-blues.json +93 -0
- package/songs/builtin/fly-me-to-the-moon.json +91 -0
- package/songs/builtin/forrest-gump-suite.json +93 -0
- package/songs/builtin/fur-elise.json +20094 -0
- package/songs/builtin/georgia-on-my-mind.json +93 -0
- package/songs/builtin/girl-from-ipanema.json +92 -0
- package/songs/builtin/gladiolus-rag.json +70 -0
- package/songs/builtin/great-balls-of-fire.json +92 -0
- package/songs/builtin/guantanamera.json +92 -0
- package/songs/builtin/hallelujah.json +92 -0
- package/songs/builtin/hedwigs-theme.json +93 -0
- package/songs/builtin/hotel-california.json +92 -0
- package/songs/builtin/imagine.json +92 -0
- package/songs/builtin/just-the-two-of-us.json +92 -0
- package/songs/builtin/la-bamba.json +92 -0
- package/songs/builtin/layla-piano-coda.json +93 -0
- package/songs/builtin/lean-on-me.json +91 -0
- package/songs/builtin/let-it-be.json +101 -0
- package/songs/builtin/lets-stay-together.json +93 -0
- package/songs/builtin/magnetic-rag.json +70 -0
- package/songs/builtin/maple-leaf-rag.json +99 -0
- package/songs/builtin/mia-and-sebastians-theme.json +93 -0
- package/songs/builtin/minor-blues-in-a.json +94 -0
- package/songs/builtin/misty.json +94 -0
- package/songs/builtin/moon-river.json +93 -0
- package/songs/builtin/moonlight-sonata-mvt1.json +101 -0
- package/songs/builtin/morning-light.json +70 -0
- package/songs/builtin/mountain-dawn.json +70 -0
- package/songs/builtin/mozart-k545-mvt1.json +2956 -0
- package/songs/builtin/my-girl.json +92 -0
- package/songs/builtin/night-train.json +92 -0
- package/songs/builtin/november-rain.json +93 -0
- package/songs/builtin/ocean-waves.json +70 -0
- package/songs/builtin/over-the-rainbow.json +93 -0
- package/songs/builtin/oye-como-va.json +93 -0
- package/songs/builtin/peacherine-rag.json +70 -0
- package/songs/builtin/piano-man.json +92 -0
- package/songs/builtin/pineapple-rag.json +70 -0
- package/songs/builtin/pink-panther.json +94 -0
- package/songs/builtin/ragtime-dance.json +70 -0
- package/songs/builtin/river-flows-in-you.json +102 -0
- package/songs/builtin/rocket-man.json +92 -0
- package/songs/builtin/satie-gymnopedie-no1.json +70 -0
- package/songs/builtin/satin-doll.json +93 -0
- package/songs/builtin/schindlers-list.json +96 -0
- package/songs/builtin/schumann-traumerei.json +70 -0
- package/songs/builtin/sitting-on-the-dock.json +91 -0
- package/songs/builtin/slow-blues-in-bb.json +98 -0
- package/songs/builtin/snowfall.json +70 -0
- package/songs/builtin/so-what.json +92 -0
- package/songs/builtin/solace.json +70 -0
- package/songs/builtin/someone-like-you.json +92 -0
- package/songs/builtin/spirited-away.json +94 -0
- package/songs/builtin/st-louis-blues.json +93 -0
- package/songs/builtin/stairway-intro.json +93 -0
- package/songs/builtin/starlight-waltz.json +70 -0
- package/songs/builtin/stay-with-me.json +93 -0
- package/songs/builtin/stormy-monday.json +94 -0
- package/songs/builtin/superstition.json +93 -0
- package/songs/builtin/sweet-home-chicago.json +93 -0
- package/songs/builtin/take-five.json +92 -0
- package/songs/builtin/take-the-a-train.json +93 -0
- package/songs/builtin/the-entertainer.json +98 -0
- package/songs/builtin/the-godfather-waltz.json +93 -0
- package/songs/builtin/thrill-is-gone.json +94 -0
- package/songs/builtin/twilight-garden.json +70 -0
- package/songs/builtin/watermark.json +70 -0
- package/songs/builtin/wave.json +93 -0
- package/songs/builtin/whats-going-on.json +93 -0
- package/songs/builtin/yesterday.json +92 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "piano-man",
|
|
3
|
+
"title": "Piano Man",
|
|
4
|
+
"genre": "pop",
|
|
5
|
+
"composer": "Billy Joel",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"key": "C major",
|
|
8
|
+
"tempo": 104,
|
|
9
|
+
"timeSignature": "3/4",
|
|
10
|
+
"durationSeconds": 14,
|
|
11
|
+
"tags": [
|
|
12
|
+
"billy-joel",
|
|
13
|
+
"waltz",
|
|
14
|
+
"3/4-time",
|
|
15
|
+
"iconic",
|
|
16
|
+
"storytelling"
|
|
17
|
+
],
|
|
18
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
19
|
+
"musicalLanguage": {
|
|
20
|
+
"description": "The quintessential piano song in 3/4 waltz time. Billy Joel's signature piece uses a bouncing waltz pattern that propels the storytelling forward. This arrangement covers the verse section with its classic C-G-F-C movement and the characteristic oom-pah-pah left hand.",
|
|
21
|
+
"structure": "Verse (8 bars in 3/4) — C-G/B-F/A-C waltz pattern with melodic development",
|
|
22
|
+
"keyMoments": [
|
|
23
|
+
"Bars 1-2: C major waltz — the iconic 'oom-pah-pah' pattern establishes the bar-room feel",
|
|
24
|
+
"Bars 3-4: F to G — the melody climbs, building narrative momentum",
|
|
25
|
+
"Bars 7-8: Am to G to C — the verse resolution with a satisfying cadence"
|
|
26
|
+
],
|
|
27
|
+
"teachingGoals": [
|
|
28
|
+
"Playing in 3/4 time — feeling three beats per measure",
|
|
29
|
+
"Left-hand waltz pattern: bass note followed by two chord tones",
|
|
30
|
+
"Coordinating a lyrical melody over a rhythmic accompaniment"
|
|
31
|
+
],
|
|
32
|
+
"styleTips": [
|
|
33
|
+
"Emphasize beat 1 in the left hand — the 'oom' should be slightly louder than the 'pah-pah'",
|
|
34
|
+
"Right hand sings the melody above the waltz — think of it as a vocalist over a piano bar trio",
|
|
35
|
+
"Keep a steady, swaying tempo — this is dance music at heart"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"measures": [
|
|
39
|
+
{
|
|
40
|
+
"number": 1,
|
|
41
|
+
"rightHand": "E4:q E4:q D4:q",
|
|
42
|
+
"leftHand": "C3:q E3:q G3:q",
|
|
43
|
+
"teachingNote": "C major waltz begins — bass on 1, chord on 2-3. The right hand melody starts simply.",
|
|
44
|
+
"dynamics": "mf"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"number": 2,
|
|
48
|
+
"rightHand": "C4:q D4:q E4:q",
|
|
49
|
+
"leftHand": "G2:q B2:q D3:q",
|
|
50
|
+
"teachingNote": "G major — the melody climbs C-D-E. Notice the bass walks down from C to G."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"number": 3,
|
|
54
|
+
"rightHand": "F4:q E4:q D4:q",
|
|
55
|
+
"leftHand": "F2:q A2:q C3:q",
|
|
56
|
+
"teachingNote": "F major — melody peaks at F4 then descends. The waltz is in full swing now."
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"number": 4,
|
|
60
|
+
"rightHand": "C4:h.",
|
|
61
|
+
"leftHand": "C3:q E3:q G3:q",
|
|
62
|
+
"teachingNote": "Back to C — hold the melody note for the full bar. A moment to breathe."
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"number": 5,
|
|
66
|
+
"rightHand": "E4:q E4:q F4:q",
|
|
67
|
+
"leftHand": "A2:q C3:q E3:q",
|
|
68
|
+
"teachingNote": "A minor — the mood shifts slightly darker. The melody pushes upward.",
|
|
69
|
+
"dynamics": "mp"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"number": 6,
|
|
73
|
+
"rightHand": "G4:q F4:q E4:q",
|
|
74
|
+
"leftHand": "G2:q B2:q D3:q",
|
|
75
|
+
"teachingNote": "G major — melody arches up to G4 then descends. Building toward the phrase ending.",
|
|
76
|
+
"dynamics": "mf"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"number": 7,
|
|
80
|
+
"rightHand": "D4:q E4:q D4:q",
|
|
81
|
+
"leftHand": "F2:q A2:q C3:q",
|
|
82
|
+
"teachingNote": "F major — a gentle melodic oscillation before the final resolution."
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"number": 8,
|
|
86
|
+
"rightHand": "C4:h.",
|
|
87
|
+
"leftHand": "G2:q D3:q G2:q",
|
|
88
|
+
"teachingNote": "G to C implied — the phrase ends on C, ready to cycle back. The waltz never really stops.",
|
|
89
|
+
"dynamics": "mp"
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "pineapple-rag",
|
|
3
|
+
"title": "Pineapple Rag",
|
|
4
|
+
"genre": "ragtime",
|
|
5
|
+
"composer": "Scott Joplin",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"key": "Bb major",
|
|
8
|
+
"tempo": 116,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 17,
|
|
11
|
+
"tags": ["ragtime", "joplin", "bright", "cheerful"],
|
|
12
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
13
|
+
"musicalLanguage": {
|
|
14
|
+
"description": "Pineapple Rag (1908) is a bright and buoyant rag with a sunny disposition. Its melody bounces playfully over the stride bass, full of optimistic energy and Joplin's trademark melodic charm.",
|
|
15
|
+
"structure": "A section excerpt (8 bars)",
|
|
16
|
+
"keyMoments": ["Bright opening leap in measure 1", "Playful call-and-response between hands in measure 5"],
|
|
17
|
+
"teachingGoals": ["Practice stride bass in Bb major", "Develop light, bouncy touch in the right hand"],
|
|
18
|
+
"styleTips": ["Keep the mood bright and sunny throughout", "Let eighth notes bounce rather than plod"]
|
|
19
|
+
},
|
|
20
|
+
"measures": [
|
|
21
|
+
{
|
|
22
|
+
"number": 1,
|
|
23
|
+
"rightHand": "R:e Bb4:e D5:e F5:e Bb5:q F5:q",
|
|
24
|
+
"leftHand": "Bb2:q D4 F4:q Bb2:q D4 F4:q",
|
|
25
|
+
"dynamics": "f"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"number": 2,
|
|
29
|
+
"rightHand": "G5:e F5:e Eb5:e D5:e C5:q Bb4:q",
|
|
30
|
+
"leftHand": "Eb3:q G3 Bb3:q F3:q A3 C4:q",
|
|
31
|
+
"dynamics": "mf"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"number": 3,
|
|
35
|
+
"rightHand": "D5:e Eb5:e F5:e D5:e Bb4:q D5:q",
|
|
36
|
+
"leftHand": "Bb2:q D4 F4:q Bb2:q D4 F4:q",
|
|
37
|
+
"dynamics": "mf"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"number": 4,
|
|
41
|
+
"rightHand": "C5:q A4:e Bb4:e F4:h",
|
|
42
|
+
"leftHand": "F3:q A3 C4:q Bb2:q D4 F4:q",
|
|
43
|
+
"dynamics": "mf"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"number": 5,
|
|
47
|
+
"rightHand": "R:e Bb4:e D5:e F5:e G5:e F5:e D5:q",
|
|
48
|
+
"leftHand": "Bb2:q D4 F4:q Eb3:q G3 Bb3:q",
|
|
49
|
+
"dynamics": "f"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"number": 6,
|
|
53
|
+
"rightHand": "Eb5:e D5:e C5:e Bb4:e A4:q Bb4:q",
|
|
54
|
+
"leftHand": "F3:q A3 C4:q Bb2:q D4 F4:q",
|
|
55
|
+
"dynamics": "mf"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"number": 7,
|
|
59
|
+
"rightHand": "D5:e F5:e Bb5:q A5:e G5:e F5:q",
|
|
60
|
+
"leftHand": "Bb2:q D4 F4:q F3:q A3 Eb4:q",
|
|
61
|
+
"dynamics": "mf"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"number": 8,
|
|
65
|
+
"rightHand": "Bb5:h R:h",
|
|
66
|
+
"leftHand": "Bb2:q D4 F4:q Bb2:q R:q",
|
|
67
|
+
"dynamics": "f"
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "pink-panther",
|
|
3
|
+
"title": "The Pink Panther Theme",
|
|
4
|
+
"genre": "film",
|
|
5
|
+
"composer": "Henry Mancini",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"key": "E minor",
|
|
8
|
+
"tempo": 120,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 16,
|
|
11
|
+
"tags": [
|
|
12
|
+
"mancini",
|
|
13
|
+
"jazzy",
|
|
14
|
+
"chromatic",
|
|
15
|
+
"mystery",
|
|
16
|
+
"swing"
|
|
17
|
+
],
|
|
18
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
19
|
+
"musicalLanguage": {
|
|
20
|
+
"description": "Henry Mancini's slinky, chromatic theme is one of the most instantly recognizable melodies in cinema. Built on a chromatic creeping figure in E minor, the theme captures the sneaky, cat-like quality of the animated panther. The arrangement uses jazz swing feel with walking chromatic lines and punchy staccato chords. The left hand plays a cool jazz bass pattern.",
|
|
21
|
+
"structure": "Intro creep (2 bars), Main riff with chromatic climb (4 bars), Tag (2 bars)",
|
|
22
|
+
"keyMoments": [
|
|
23
|
+
"Bars 1-2: The famous chromatic creep — E-F-F#-G. The panther appears.",
|
|
24
|
+
"Bars 5-6: The riff hits its stride with the jazzy chord stabs.",
|
|
25
|
+
"Bar 8: The sly ending — chromatic slide back to E. The panther vanishes."
|
|
26
|
+
],
|
|
27
|
+
"teachingGoals": [
|
|
28
|
+
"Chromatic movement — half-step creeping motion",
|
|
29
|
+
"Jazz swing feel — slightly uneven eighth notes",
|
|
30
|
+
"Staccato articulation for the sneaky character"
|
|
31
|
+
],
|
|
32
|
+
"styleTips": [
|
|
33
|
+
"Slinky and sneaky — imagine tiptoeing past a security guard",
|
|
34
|
+
"Swing the eighth notes slightly — not straight, not full shuffle",
|
|
35
|
+
"Every note should be staccato and precise — the panther is smooth"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"measures": [
|
|
39
|
+
{
|
|
40
|
+
"number": 1,
|
|
41
|
+
"rightHand": "R:h E4:e F4:e F#4:e G4:e",
|
|
42
|
+
"leftHand": "E2:q B2:q E2:q B2:q",
|
|
43
|
+
"dynamics": "pp",
|
|
44
|
+
"teachingNote": "The chromatic creep begins after a half rest. Quiet and slinky."
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"number": 2,
|
|
48
|
+
"rightHand": "A4:q R:q E4:e F4:e F#4:e G4:e",
|
|
49
|
+
"leftHand": "E2:q B2:q E2:q B2:q",
|
|
50
|
+
"dynamics": "mp",
|
|
51
|
+
"teachingNote": "A4 stab then repeat the creep. The panther keeps sneaking."
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"number": 3,
|
|
55
|
+
"rightHand": "A4:q R:q C5:e R:e A4:e R:e",
|
|
56
|
+
"leftHand": "E2:q B2:q A2:q E3:q",
|
|
57
|
+
"dynamics": "mf",
|
|
58
|
+
"teachingNote": "Staccato stabs — A4, C5, A4. Punchy jazz accents."
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"number": 4,
|
|
62
|
+
"rightHand": "B4:q R:q E4:e F4:e F#4:e G4:e",
|
|
63
|
+
"leftHand": "B2:q F#3:q E2:q B2:q",
|
|
64
|
+
"teachingNote": "B4 stab then back to the creep. The riff is circular."
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"number": 5,
|
|
68
|
+
"rightHand": "A4:q R:e B4:e C5:q R:e D5:e",
|
|
69
|
+
"leftHand": "A2:q E3:q A2:q D3:q",
|
|
70
|
+
"dynamics": "f",
|
|
71
|
+
"teachingNote": "The melody climbs — A, B, C, D. Building sneaky energy."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"number": 6,
|
|
75
|
+
"rightHand": "E5:q D5:q C5:q B4:q",
|
|
76
|
+
"leftHand": "E2:q B2:q A2:q E3:q",
|
|
77
|
+
"teachingNote": "Peak and descent — E5 is the high point. Everything staccato."
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"number": 7,
|
|
81
|
+
"rightHand": "A4:q G4:q F#4:q F4:q",
|
|
82
|
+
"leftHand": "F#2:q C#3:q F2:q C3:q",
|
|
83
|
+
"dynamics": "mf",
|
|
84
|
+
"teachingNote": "Chromatic descent — the reverse of the opening creep."
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"number": 8,
|
|
88
|
+
"rightHand": "E4:q R:q R:h",
|
|
89
|
+
"leftHand": "E2:q B2:q E2:h",
|
|
90
|
+
"dynamics": "p",
|
|
91
|
+
"teachingNote": "E stab then silence. The panther has disappeared. Cool ending."
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "ragtime-dance",
|
|
3
|
+
"title": "The Ragtime Dance",
|
|
4
|
+
"genre": "ragtime",
|
|
5
|
+
"composer": "Scott Joplin",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"key": "C major",
|
|
8
|
+
"tempo": 104,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 18,
|
|
11
|
+
"tags": ["ragtime", "joplin", "dance", "folk"],
|
|
12
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
13
|
+
"musicalLanguage": {
|
|
14
|
+
"description": "The Ragtime Dance (1902) was originally conceived as a folk ballet with sung directions. This piano arrangement captures its dance-like character with stomping bass patterns and a melody that invites movement.",
|
|
15
|
+
"structure": "A section excerpt (8 bars)",
|
|
16
|
+
"keyMoments": ["Dance-like opening figure in measure 1", "Stomping bass emphasis in measure 4"],
|
|
17
|
+
"teachingGoals": ["Feel the dance pulse underlying ragtime", "Practice accented stride patterns"],
|
|
18
|
+
"styleTips": ["Imagine dancers stepping to each beat", "Give slight accent to beats 1 and 3 in the bass for a stomping feel"]
|
|
19
|
+
},
|
|
20
|
+
"measures": [
|
|
21
|
+
{
|
|
22
|
+
"number": 1,
|
|
23
|
+
"rightHand": "E5:e C5:e G4:e C5:e E5:q G5:q",
|
|
24
|
+
"leftHand": "C3:q E4 G4:q C3:q E4 G4:q",
|
|
25
|
+
"dynamics": "f"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"number": 2,
|
|
29
|
+
"rightHand": "F5:e E5:e D5:e C5:e B4:q G4:q",
|
|
30
|
+
"leftHand": "G2:q B3 D4:q G2:q B3 D4:q",
|
|
31
|
+
"dynamics": "mf"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"number": 3,
|
|
35
|
+
"rightHand": "A4:e C5:e E5:q D5:e C5:e B4:q",
|
|
36
|
+
"leftHand": "A2:q C4 E4:q G2:q B3 D4:q",
|
|
37
|
+
"dynamics": "mf"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"number": 4,
|
|
41
|
+
"rightHand": "C5:q R:e G4:e C5:e E5:e G5:q",
|
|
42
|
+
"leftHand": "C3:q E4 G4:q C3:q E4 G4:q",
|
|
43
|
+
"dynamics": "f"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"number": 5,
|
|
47
|
+
"rightHand": "A5:e G5:e E5:e C5:e D5:q E5:q",
|
|
48
|
+
"leftHand": "F2:q A3 C4:q G2:q B3 D4:q",
|
|
49
|
+
"dynamics": "mf"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"number": 6,
|
|
53
|
+
"rightHand": "F5:e E5:e D5:e E5:e C5:q R:q",
|
|
54
|
+
"leftHand": "A2:q C4 E4:q G2:q B3 D4:q",
|
|
55
|
+
"dynamics": "mf"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"number": 7,
|
|
59
|
+
"rightHand": "E5:e D5:e C5:e B4:e A4:e B4:e C5:q",
|
|
60
|
+
"leftHand": "F2:q A3 C4:q G2:q B3 D4:q",
|
|
61
|
+
"dynamics": "mf"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"number": 8,
|
|
65
|
+
"rightHand": "C5:h R:h",
|
|
66
|
+
"leftHand": "C3:q E4 G4:q C3:q R:q",
|
|
67
|
+
"dynamics": "f"
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "river-flows-in-you",
|
|
3
|
+
"title": "River Flows in You",
|
|
4
|
+
"genre": "new-age",
|
|
5
|
+
"composer": "Yiruma",
|
|
6
|
+
"arranger": "Simplified arrangement of the main theme",
|
|
7
|
+
"difficulty": "intermediate",
|
|
8
|
+
"key": "A major",
|
|
9
|
+
"tempo": 68,
|
|
10
|
+
"timeSignature": "4/4",
|
|
11
|
+
"durationSeconds": 50,
|
|
12
|
+
"tags": [
|
|
13
|
+
"yiruma",
|
|
14
|
+
"flowing",
|
|
15
|
+
"arpeggios",
|
|
16
|
+
"romantic",
|
|
17
|
+
"popular"
|
|
18
|
+
],
|
|
19
|
+
"source": "Simplified arrangement of the opening section",
|
|
20
|
+
"musicalLanguage": {
|
|
21
|
+
"description": "Yiruma's signature piece and one of the most-searched piano songs on the internet. The flowing arpeggiated left hand creates a river-like stream while the right hand sings a simple, achingly beautiful melody above it. The magic is in the contrast between the busy left hand and the spacious right-hand melody.",
|
|
22
|
+
"structure": "Verse: A-E-F#m-D progression, 8 bars",
|
|
23
|
+
"keyMoments": [
|
|
24
|
+
"Bars 1-2: A major — the left-hand arpeggios establish the 'flowing water' texture",
|
|
25
|
+
"Bars 3-4: F#m — the shift to the relative minor adds bittersweet emotion",
|
|
26
|
+
"Bars 7-8: D to E — the IV-V setup that pulls back to A. Gorgeous tension."
|
|
27
|
+
],
|
|
28
|
+
"teachingGoals": [
|
|
29
|
+
"Smooth left-hand arpeggiated patterns (flowing, not mechanical)",
|
|
30
|
+
"Right-hand melody floating over busy accompaniment",
|
|
31
|
+
"Pedal technique: hold through arpeggios but change with harmony"
|
|
32
|
+
],
|
|
33
|
+
"styleTips": [
|
|
34
|
+
"The left hand should sound like water, not like a metronome",
|
|
35
|
+
"Use sustain pedal generously but change cleanly with each chord",
|
|
36
|
+
"Right-hand melody: imagine singing each note. Space and breath matter."
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"measures": [
|
|
40
|
+
{
|
|
41
|
+
"number": 1,
|
|
42
|
+
"rightHand": "C#5:q B4:q A4:h",
|
|
43
|
+
"leftHand": "A2:e E3:e A3:e E3:e A2:e E3:e A3:e E3:e",
|
|
44
|
+
"fingering": "RH: 3-2-1, LH: 5-2-1-2-5-2-1-2 (A arpeggio)",
|
|
45
|
+
"teachingNote": "A major — the left hand flows like water while the right hand melody descends gently.",
|
|
46
|
+
"dynamics": "p"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"number": 2,
|
|
50
|
+
"rightHand": "B4:q C#5:q E5:h",
|
|
51
|
+
"leftHand": "E2:e B2:e E3:e B2:e E2:e B2:e E3:e B2:e",
|
|
52
|
+
"fingering": "RH: 2-3-5, LH: 5-2-1-2 (E arpeggio)",
|
|
53
|
+
"teachingNote": "E major — the melody rises as the harmony brightens. Let the E5 ring."
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"number": 3,
|
|
57
|
+
"rightHand": "C#5:q B4:q A4:q F#4:q",
|
|
58
|
+
"leftHand": "F#2:e C#3:e F#3:e C#3:e F#2:e C#3:e F#3:e C#3:e",
|
|
59
|
+
"fingering": "RH: 3-2-1-4, LH: 5-2-1-2 (F#m arpeggio)",
|
|
60
|
+
"teachingNote": "F# minor — the relative minor. The mood shifts. The same melody notes now sound wistful.",
|
|
61
|
+
"dynamics": "mp"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"number": 4,
|
|
65
|
+
"rightHand": "E4:q F#4:q A4:h",
|
|
66
|
+
"leftHand": "D2:e A2:e D3:e A2:e D2:e A2:e D3:e A2:e",
|
|
67
|
+
"fingering": "RH: 1-2-4, LH: 5-2-1-2 (D arpeggio)",
|
|
68
|
+
"teachingNote": "D major — warmth returns. The melody resolves upward to A."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"number": 5,
|
|
72
|
+
"rightHand": "C#5:q D5:q E5:q C#5:q",
|
|
73
|
+
"leftHand": "A2:e E3:e A3:e E3:e A2:e E3:e A3:e E3:e",
|
|
74
|
+
"fingering": "RH: 3-4-5-3, LH: A arpeggio",
|
|
75
|
+
"teachingNote": "A major — the melody is more active now, dancing above the water.",
|
|
76
|
+
"dynamics": "mf"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"number": 6,
|
|
80
|
+
"rightHand": "B4:h A4:h",
|
|
81
|
+
"leftHand": "E2:e B2:e E3:e B2:e E2:e B2:e E3:e B2:e",
|
|
82
|
+
"teachingNote": "E major — let the B and A breathe. Half notes after all those quarters.",
|
|
83
|
+
"dynamics": "mp"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"number": 7,
|
|
87
|
+
"rightHand": "F#4:q A4:q B4:q C#5:q",
|
|
88
|
+
"leftHand": "D2:e A2:e D3:e A2:e D2:e A2:e D3:e A2:e",
|
|
89
|
+
"fingering": "RH: 2-4-5-3, LH: D arpeggio",
|
|
90
|
+
"teachingNote": "D major (IV) — building toward the cadence. The melody is climbing with purpose.",
|
|
91
|
+
"dynamics": "mf"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"number": 8,
|
|
95
|
+
"rightHand": "B4:q A4:q A4:h",
|
|
96
|
+
"leftHand": "E2:e B2:e E3:e B2:e A2:e E3:e A3:h",
|
|
97
|
+
"fingering": "RH: 2-1-1, LH: E then A",
|
|
98
|
+
"teachingNote": "E to A — the V-I resolution. Let the final A chord ring with pedal. Like the river reaching the sea.",
|
|
99
|
+
"dynamics": "p"
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "rocket-man",
|
|
3
|
+
"title": "Rocket Man",
|
|
4
|
+
"genre": "rock",
|
|
5
|
+
"composer": "Elton John & Bernie Taupin",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"key": "Bb major",
|
|
8
|
+
"tempo": 72,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 27,
|
|
11
|
+
"tags": [
|
|
12
|
+
"elton-john",
|
|
13
|
+
"piano-rock",
|
|
14
|
+
"space",
|
|
15
|
+
"ballad",
|
|
16
|
+
"classic"
|
|
17
|
+
],
|
|
18
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
19
|
+
"musicalLanguage": {
|
|
20
|
+
"description": "Elton John's spacefaring ballad, built on lush piano chords with a soaring melody. The verse uses a Bb-based progression with unexpected chromatic touches that evoke the weightlessness of space. This arrangement captures the dreamy, floating quality of the original piano part.",
|
|
21
|
+
"structure": "Verse (8 bars) — Bb-Gm-Cm-F-Eb-Bb with melodic ascent and descent",
|
|
22
|
+
"keyMoments": [
|
|
23
|
+
"Bars 1-2: Bb to Gm — the warm opening that establishes the reflective mood",
|
|
24
|
+
"Bars 3-4: Cm to F — the classic ii-V motion that gives the phrase momentum",
|
|
25
|
+
"Bars 7-8: Eb to Bb — the plagal-flavored resolution, spacious and open"
|
|
26
|
+
],
|
|
27
|
+
"teachingGoals": [
|
|
28
|
+
"Playing in Bb major with two flats",
|
|
29
|
+
"Rich chord voicings in Elton John's style",
|
|
30
|
+
"Balancing a singing melody with supportive chordal accompaniment"
|
|
31
|
+
],
|
|
32
|
+
"styleTips": [
|
|
33
|
+
"Play with a floating, weightless quality — this is music about space travel",
|
|
34
|
+
"The chords should ring and overlap slightly, creating a lush wash of sound",
|
|
35
|
+
"Melody should soar above the chords like a voice — Elton always thinks vocally"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"measures": [
|
|
39
|
+
{
|
|
40
|
+
"number": 1,
|
|
41
|
+
"rightHand": "D4:q F4:q Bb4:q A4:q",
|
|
42
|
+
"leftHand": "Bb2:e F3:e Bb3:e F3:e Bb2:e F3:e Bb3:e F3:e",
|
|
43
|
+
"teachingNote": "Bb major — the warm, expansive opening. Left hand rolls gently beneath the melody.",
|
|
44
|
+
"dynamics": "mp"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"number": 2,
|
|
48
|
+
"rightHand": "G4:q Bb4:q A4:q G4:q",
|
|
49
|
+
"leftHand": "G2:e D3:e G3:e D3:e G2:e D3:e G3:e D3:e",
|
|
50
|
+
"teachingNote": "G minor — the melody arches upward then back. The minor chord adds longing."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"number": 3,
|
|
54
|
+
"rightHand": "F4:q Eb4:q F4:q G4:q",
|
|
55
|
+
"leftHand": "C3:e G3:e C3:e G3:e C3:e G3:e C3:e G3:e",
|
|
56
|
+
"teachingNote": "C minor — the ii chord. The melody dips to Eb, the darkest moment of the phrase."
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"number": 4,
|
|
60
|
+
"rightHand": "A4:q Bb4:q C5:h",
|
|
61
|
+
"leftHand": "F2:e C3:e F3:e C3:e F2:e C3:e F3:e C3:e",
|
|
62
|
+
"teachingNote": "F major — the V chord. Melody rises to C5, reaching for the sky. Literally.",
|
|
63
|
+
"dynamics": "mf"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"number": 5,
|
|
67
|
+
"rightHand": "Bb4:q A4:q G4:q F4:q",
|
|
68
|
+
"leftHand": "Bb2:e F3:e Bb3:e F3:e Bb2:e F3:e Bb3:e F3:e",
|
|
69
|
+
"teachingNote": "Bb major — melody descends gently. The floating feeling of re-entry."
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"number": 6,
|
|
73
|
+
"rightHand": "G4:q A4:q Bb4:h",
|
|
74
|
+
"leftHand": "G2:e D3:e G3:e D3:e G2:e D3:e G3:e D3:e",
|
|
75
|
+
"teachingNote": "G minor — one more rise to Bb4. The melody has a gentle orbital quality."
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"number": 7,
|
|
79
|
+
"rightHand": "Bb4:q Ab4:q G4:q F4:q",
|
|
80
|
+
"leftHand": "Eb2:e Bb2:e Eb3:e Bb2:e Eb2:e Bb2:e Eb3:e Bb2:e",
|
|
81
|
+
"teachingNote": "Eb major — the IV chord. Ab4 adds a bluesy touch. The phrase is coming home.",
|
|
82
|
+
"dynamics": "mp"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"number": 8,
|
|
86
|
+
"rightHand": "F4:h Bb3:h",
|
|
87
|
+
"leftHand": "Bb2:e F3:e Bb3:e F3:e Bb2:h",
|
|
88
|
+
"teachingNote": "Bb major — the melody settles to rest on the tonic. Touchdown.",
|
|
89
|
+
"dynamics": "p"
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "satie-gymnopedie-no1",
|
|
3
|
+
"title": "Gymnopedie No. 1",
|
|
4
|
+
"genre": "classical",
|
|
5
|
+
"composer": "Erik Satie",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"key": "D major",
|
|
8
|
+
"tempo": 72,
|
|
9
|
+
"timeSignature": "3/4",
|
|
10
|
+
"durationSeconds": 20,
|
|
11
|
+
"tags": ["classical", "satie", "minimalist", "gentle", "impressionist"],
|
|
12
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
13
|
+
"musicalLanguage": {
|
|
14
|
+
"description": "Satie's iconic Gymnopedie No. 1 is one of the simplest yet most hauntingly beautiful piano pieces ever written. Two alternating chords in the left hand support a wandering, melancholic melody. This simplified excerpt captures the opening bars.",
|
|
15
|
+
"structure": "Opening theme excerpt (8 bars in 3/4)",
|
|
16
|
+
"keyMoments": ["Iconic opening two-chord alternation in measures 1-2", "Melody entrance in measure 3"],
|
|
17
|
+
"teachingGoals": ["Learn to voice a melody over simple chords", "Develop a quiet, introspective touch"],
|
|
18
|
+
"styleTips": ["Play extremely softly and with no hurry at all", "The two alternating chords should be almost identical in weight"]
|
|
19
|
+
},
|
|
20
|
+
"measures": [
|
|
21
|
+
{
|
|
22
|
+
"number": 1,
|
|
23
|
+
"rightHand": "R:h.",
|
|
24
|
+
"leftHand": "G3:q D4 B4:h",
|
|
25
|
+
"dynamics": "pp"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"number": 2,
|
|
29
|
+
"rightHand": "R:h.",
|
|
30
|
+
"leftHand": "A3:q D4 B4:h",
|
|
31
|
+
"dynamics": "pp"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"number": 3,
|
|
35
|
+
"rightHand": "F#5:h E5:q",
|
|
36
|
+
"leftHand": "G3:q D4 B4:h",
|
|
37
|
+
"dynamics": "p"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"number": 4,
|
|
41
|
+
"rightHand": "D5:h C#5:q",
|
|
42
|
+
"leftHand": "A3:q D4 B4:h",
|
|
43
|
+
"dynamics": "p"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"number": 5,
|
|
47
|
+
"rightHand": "B4:h A4:q",
|
|
48
|
+
"leftHand": "G3:q D4 B4:h",
|
|
49
|
+
"dynamics": "p"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"number": 6,
|
|
53
|
+
"rightHand": "G4:h F#4:q",
|
|
54
|
+
"leftHand": "A3:q D4 B4:h",
|
|
55
|
+
"dynamics": "p"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"number": 7,
|
|
59
|
+
"rightHand": "E4:h D4:q",
|
|
60
|
+
"leftHand": "G3:q D4 B4:h",
|
|
61
|
+
"dynamics": "pp"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"number": 8,
|
|
65
|
+
"rightHand": "D4:h.",
|
|
66
|
+
"leftHand": "D3:q D4 A4:h",
|
|
67
|
+
"dynamics": "pp"
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
}
|