@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": "my-girl",
|
|
3
|
+
"title": "My Girl",
|
|
4
|
+
"genre": "rnb",
|
|
5
|
+
"composer": "Smokey Robinson / Ronald White",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"key": "C major",
|
|
8
|
+
"tempo": 104,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 18,
|
|
11
|
+
"tags": [
|
|
12
|
+
"motown",
|
|
13
|
+
"temptations",
|
|
14
|
+
"classic",
|
|
15
|
+
"feel-good",
|
|
16
|
+
"bass-line"
|
|
17
|
+
],
|
|
18
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
19
|
+
"musicalLanguage": {
|
|
20
|
+
"description": "The Temptations' Motown classic features one of the most recognizable bass lines in popular music. This beginner arrangement focuses on that iconic ascending bass figure in the left hand while the right hand plays the sweet, simple melody. The C major tonality keeps everything bright and accessible.",
|
|
21
|
+
"structure": "Verse: 4 bars with iconic bass riff, Chorus: 4 bars with fuller chords",
|
|
22
|
+
"keyMoments": [
|
|
23
|
+
"Bars 1-2: The famous bass line walk-up — this IS the song.",
|
|
24
|
+
"Bars 5-6: 'My girl' chorus — the melody lifts with sustained notes.",
|
|
25
|
+
"Bar 8: The tag ending with the characteristic rhythmic figure."
|
|
26
|
+
],
|
|
27
|
+
"teachingGoals": [
|
|
28
|
+
"Iconic bass line — learning a recognizable left hand pattern",
|
|
29
|
+
"Independence between hands — bass walks while melody sustains",
|
|
30
|
+
"Major key brightness and upbeat feel"
|
|
31
|
+
],
|
|
32
|
+
"styleTips": [
|
|
33
|
+
"Left hand bass line should be smooth and connected (legato)",
|
|
34
|
+
"Right hand melody is sweet and lyrical — don't rush",
|
|
35
|
+
"Keep a gentle swing feel — not straight eighths, slightly bouncy"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"measures": [
|
|
39
|
+
{
|
|
40
|
+
"number": 1,
|
|
41
|
+
"rightHand": "R:h E4:q G4:q",
|
|
42
|
+
"leftHand": "C3:q E3:q G3:q C4:q",
|
|
43
|
+
"dynamics": "mf",
|
|
44
|
+
"teachingNote": "The iconic bass walk-up. Right hand enters on beat 3."
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"number": 2,
|
|
48
|
+
"rightHand": "E4:h C4:h",
|
|
49
|
+
"leftHand": "C3:q E3:q G3:q C4:q",
|
|
50
|
+
"teachingNote": "Bass repeats the walk — melody settles on C."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"number": 3,
|
|
54
|
+
"rightHand": "D4:q E4:q F4:q E4:q",
|
|
55
|
+
"leftHand": "F3:h C3:h",
|
|
56
|
+
"teachingNote": "F major chord underneath — melody rocks around E."
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"number": 4,
|
|
60
|
+
"rightHand": "D4:q C4:q D4:h",
|
|
61
|
+
"leftHand": "G3:h G2:h",
|
|
62
|
+
"teachingNote": "G major — sets up the return. D is the leading tone to the chorus."
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"number": 5,
|
|
66
|
+
"rightHand": "E4:h G4:h",
|
|
67
|
+
"leftHand": "C3:q E3:q G3:q E3:q",
|
|
68
|
+
"dynamics": "f",
|
|
69
|
+
"teachingNote": "Chorus — 'My girl.' Open and bright. Let it ring."
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"number": 6,
|
|
73
|
+
"rightHand": "G4:q F4:q E4:h",
|
|
74
|
+
"leftHand": "F3:q A3:q C4:q A3:q",
|
|
75
|
+
"teachingNote": "F major — the melody descends gently."
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"number": 7,
|
|
79
|
+
"rightHand": "D4:q E4:q F4:q D4:q",
|
|
80
|
+
"leftHand": "G2:q B2:q D3:q B2:q",
|
|
81
|
+
"dynamics": "mf",
|
|
82
|
+
"teachingNote": "G major — building energy for the final bar."
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"number": 8,
|
|
86
|
+
"rightHand": "C4:q E4:q G4:q C5:q",
|
|
87
|
+
"leftHand": "C3:q G3:q C3:h",
|
|
88
|
+
"dynamics": "f",
|
|
89
|
+
"teachingNote": "Final ascending C major arpeggio — bright, happy ending."
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "night-train",
|
|
3
|
+
"title": "Night Train",
|
|
4
|
+
"genre": "jazz",
|
|
5
|
+
"composer": "Oscar Peterson / Jimmy Forrest",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"key": "G major",
|
|
8
|
+
"tempo": 140,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 14,
|
|
11
|
+
"tags": [
|
|
12
|
+
"blues-jazz",
|
|
13
|
+
"oscar-peterson",
|
|
14
|
+
"swing",
|
|
15
|
+
"shuffle",
|
|
16
|
+
"riff-based",
|
|
17
|
+
"groove"
|
|
18
|
+
],
|
|
19
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
20
|
+
"musicalLanguage": {
|
|
21
|
+
"description": "A hard-swinging blues-jazz riff tune popularized by Oscar Peterson. Built on a simple, infectious riff over a 12-bar blues form, Night Train is pure energy and groove. The left hand drives with a walking bass feel while the right hand punches out the iconic riff pattern.",
|
|
22
|
+
"structure": "12-bar blues riff form. This excerpt: first 8 bars (I and IV)",
|
|
23
|
+
"keyMoments": [
|
|
24
|
+
"Bar 1-2: The main riff — punchy, rhythmic, impossible not to tap your foot",
|
|
25
|
+
"Bar 5-6: Riff transposes to the IV chord (C7) — same energy, new pitch",
|
|
26
|
+
"Bar 7-8: Return to G7 with the riff building momentum"
|
|
27
|
+
],
|
|
28
|
+
"teachingGoals": [
|
|
29
|
+
"Riff-based playing — repeat a short phrase with conviction",
|
|
30
|
+
"Walking bass in the left hand — steady quarter note motion",
|
|
31
|
+
"Blues-jazz crossover style — harder swing than cool jazz"
|
|
32
|
+
],
|
|
33
|
+
"styleTips": [
|
|
34
|
+
"Swing HARD — this is Oscar Peterson, not a ballad. Dig in.",
|
|
35
|
+
"The riff should be short and punchy — staccato quarter notes",
|
|
36
|
+
"Left hand walks confidently — each note leading to the next"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"measures": [
|
|
40
|
+
{
|
|
41
|
+
"number": 1,
|
|
42
|
+
"rightHand": "B4:q D5:q B4:q G4:q",
|
|
43
|
+
"leftHand": "G2:q B2:q D3:q E3:q",
|
|
44
|
+
"teachingNote": "G7 — the main riff begins. Short, punchy notes. Left hand walks up.",
|
|
45
|
+
"dynamics": "f"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"number": 2,
|
|
49
|
+
"rightHand": "F5:q D5:q B4:h",
|
|
50
|
+
"leftHand": "F3:q D3:q B2:q G2:q",
|
|
51
|
+
"teachingNote": "G7 continues. The riff adds the b7 (F5) for blues flavor. Left hand walks back down."
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"number": 3,
|
|
55
|
+
"rightHand": "B4:q D5:q B4:q G4:q",
|
|
56
|
+
"leftHand": "G2:q B2:q D3:q E3:q",
|
|
57
|
+
"teachingNote": "Riff repeats — build confidence through repetition. Same energy."
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"number": 4,
|
|
61
|
+
"rightHand": "F5:q D5:q B4:h",
|
|
62
|
+
"leftHand": "F3:q D3:q B2:q A2:q",
|
|
63
|
+
"teachingNote": "G7 — last bar before the IV chord. Left hand walks down to A2, approaching C."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"number": 5,
|
|
67
|
+
"rightHand": "E5:q G5:q E5:q C5:q",
|
|
68
|
+
"leftHand": "C3:q E3:q G3:q A3:q",
|
|
69
|
+
"teachingNote": "C7 — the riff transposes up to the IV chord. Same shape, new key center!",
|
|
70
|
+
"dynamics": "f"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"number": 6,
|
|
74
|
+
"rightHand": "Bb4:q G4:q E4:h",
|
|
75
|
+
"leftHand": "Bb3:q G3:q E3:q C3:q",
|
|
76
|
+
"teachingNote": "C7 continues. Bb is the b7 of C. Left hand walks back down."
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"number": 7,
|
|
80
|
+
"rightHand": "B4:q D5:q B4:q G4:q",
|
|
81
|
+
"leftHand": "G2:q B2:q D3:q E3:q",
|
|
82
|
+
"teachingNote": "Back to G7 — home riff returns. Feels like an arrival.",
|
|
83
|
+
"dynamics": "mf"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"number": 8,
|
|
87
|
+
"rightHand": "F5:e D5:e B4:q G4:q R:q",
|
|
88
|
+
"leftHand": "F3:q D3:q B2:q G2:q",
|
|
89
|
+
"teachingNote": "G7 — the riff compresses to eighth notes then rests. Building anticipation for the V chord."
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "november-rain",
|
|
3
|
+
"title": "November Rain",
|
|
4
|
+
"genre": "rock",
|
|
5
|
+
"composer": "Axl Rose",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"key": "C major",
|
|
8
|
+
"tempo": 80,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 24,
|
|
11
|
+
"tags": [
|
|
12
|
+
"guns-n-roses",
|
|
13
|
+
"ballad",
|
|
14
|
+
"epic",
|
|
15
|
+
"piano-intro",
|
|
16
|
+
"rock-ballad"
|
|
17
|
+
],
|
|
18
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
19
|
+
"musicalLanguage": {
|
|
20
|
+
"description": "The epic piano ballad that proved hard rock bands could be deeply emotional. The intro uses arpeggiated chords in C major with a soaring melodic line that builds from quiet contemplation to dramatic intensity. This arrangement focuses on the iconic piano introduction.",
|
|
21
|
+
"structure": "Intro-Verse (8 bars) — C-Csus4-C-Dm-G-C progression with arpeggiated accompaniment",
|
|
22
|
+
"keyMoments": [
|
|
23
|
+
"Bars 1-2: C major with suspended 4th — the signature rocking between C and Csus4",
|
|
24
|
+
"Bars 5-6: Dm to G — the dramatic harmonic lift that signals the verse is arriving",
|
|
25
|
+
"Bars 7-8: Full chordal resolution — the arrangement opens up to its grandest texture"
|
|
26
|
+
],
|
|
27
|
+
"teachingGoals": [
|
|
28
|
+
"Arpeggiated accompaniment patterns in C major",
|
|
29
|
+
"Suspended chord resolution — Csus4 to C",
|
|
30
|
+
"Building dynamics across a phrase from p to f"
|
|
31
|
+
],
|
|
32
|
+
"styleTips": [
|
|
33
|
+
"The arpeggiation should be fluid and romantic, not mechanical",
|
|
34
|
+
"Build the dynamics gradually — this is an epic, and epics need a slow burn",
|
|
35
|
+
"The sus4 to major resolution is the emotional heart — give it space"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"measures": [
|
|
39
|
+
{
|
|
40
|
+
"number": 1,
|
|
41
|
+
"rightHand": "G4:e C5:e E5:e C5:e G4:e C5:e E5:e C5:e",
|
|
42
|
+
"leftHand": "C3:h E3:h",
|
|
43
|
+
"teachingNote": "C major arpeggiation — the gentle opening. Let it shimmer.",
|
|
44
|
+
"dynamics": "p"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"number": 2,
|
|
48
|
+
"rightHand": "G4:e C5:e F5:e C5:e G4:e C5:e E5:e C5:e",
|
|
49
|
+
"leftHand": "C3:h C3:h",
|
|
50
|
+
"teachingNote": "Csus4 to C — F5 resolves to E5. This tiny movement is the emotional hook of the intro."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"number": 3,
|
|
54
|
+
"rightHand": "G4:e C5:e E5:e C5:e G4:e C5:e E5:e C5:e",
|
|
55
|
+
"leftHand": "C3:h E3:h",
|
|
56
|
+
"teachingNote": "C major again — repetition builds the hypnotic quality.",
|
|
57
|
+
"dynamics": "mp"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"number": 4,
|
|
61
|
+
"rightHand": "G4:e C5:e F5:e C5:e G4:e C5:e E5:e C5:e",
|
|
62
|
+
"leftHand": "C3:h C3:h",
|
|
63
|
+
"teachingNote": "Csus4 to C again — the rocking motion is now established. Like breathing."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"number": 5,
|
|
67
|
+
"rightHand": "F4:e A4:e D5:e A4:e F4:e A4:e D5:e A4:e",
|
|
68
|
+
"leftHand": "D3:h A2:h",
|
|
69
|
+
"teachingNote": "D minor — the harmony shifts and the mood darkens slightly. A new color.",
|
|
70
|
+
"dynamics": "mf"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"number": 6,
|
|
74
|
+
"rightHand": "D4:e G4:e B4:e G4:e D4:e G4:e B4:e G4:e",
|
|
75
|
+
"leftHand": "G2:h B2:h",
|
|
76
|
+
"teachingNote": "G major — the dominant chord. Building toward the climactic return to C."
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"number": 7,
|
|
80
|
+
"rightHand": "E4 G4 C5:q D4 G4 B4:q C4 E4 A4:q D4 F4 B4:q",
|
|
81
|
+
"leftHand": "C3:q G2:q A2:q G2:q",
|
|
82
|
+
"teachingNote": "Full chords — C-G-Am-G. The arrangement fills out to its grandest moment.",
|
|
83
|
+
"dynamics": "f"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"number": 8,
|
|
87
|
+
"rightHand": "C4 E4 G4:h E5:h",
|
|
88
|
+
"leftHand": "C3:h C2:h",
|
|
89
|
+
"teachingNote": "C major finale — a rich chord followed by a soaring E5. The intro resolves with grandeur.",
|
|
90
|
+
"dynamics": "mf"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "ocean-waves",
|
|
3
|
+
"title": "Ocean Waves",
|
|
4
|
+
"genre": "new-age",
|
|
5
|
+
"composer": "Claude (original)",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"key": "C major",
|
|
8
|
+
"tempo": 58,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 33,
|
|
11
|
+
"tags": ["new-age", "ocean", "rolling", "beginner", "peaceful"],
|
|
12
|
+
"source": "Claude arrangement",
|
|
13
|
+
"musicalLanguage": {
|
|
14
|
+
"description": "A peaceful, rolling piece that mimics the rhythm of ocean waves. The left hand provides a steady rocking arpeggio pattern while the right hand plays a simple, singing melody. The effect is hypnotic and calming.",
|
|
15
|
+
"structure": "Through-composed wave-pattern piece (8 bars)",
|
|
16
|
+
"keyMoments": ["Wave pattern established in measure 1", "Melody crests gently in measure 5"],
|
|
17
|
+
"teachingGoals": ["Develop a smooth, rocking accompaniment pattern", "Learn to shape a melody over a repeating ostinato"],
|
|
18
|
+
"styleTips": ["The left hand is the waves — keep it perfectly even and hypnotic", "The melody should float above like a seabird"]
|
|
19
|
+
},
|
|
20
|
+
"measures": [
|
|
21
|
+
{
|
|
22
|
+
"number": 1,
|
|
23
|
+
"rightHand": "E5:h G5:h",
|
|
24
|
+
"leftHand": "C3:e G3:e C4:e G3:e C3:e G3:e C4:e G3:e",
|
|
25
|
+
"dynamics": "p"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"number": 2,
|
|
29
|
+
"rightHand": "F5:h E5:h",
|
|
30
|
+
"leftHand": "F3:e C4:e F4:e C4:e F3:e C4:e F4:e C4:e",
|
|
31
|
+
"dynamics": "p"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"number": 3,
|
|
35
|
+
"rightHand": "D5:q E5:q F5:q E5:q",
|
|
36
|
+
"leftHand": "G3:e D4:e G4:e D4:e G3:e D4:e G4:e D4:e",
|
|
37
|
+
"dynamics": "mp"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"number": 4,
|
|
41
|
+
"rightHand": "C5:h R:h",
|
|
42
|
+
"leftHand": "C3:e G3:e C4:e G3:e C3:e G3:e C4:e G3:e",
|
|
43
|
+
"dynamics": "p"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"number": 5,
|
|
47
|
+
"rightHand": "G5:q A5:q G5:q E5:q",
|
|
48
|
+
"leftHand": "A3:e E4:e A4:e E4:e A3:e E4:e A4:e E4:e",
|
|
49
|
+
"dynamics": "mf"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"number": 6,
|
|
53
|
+
"rightHand": "F5:q E5:q D5:q C5:q",
|
|
54
|
+
"leftHand": "F3:e C4:e F4:e C4:e G3:e D4:e G4:e D4:e",
|
|
55
|
+
"dynamics": "mp"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"number": 7,
|
|
59
|
+
"rightHand": "D5:q E5:q C5:h",
|
|
60
|
+
"leftHand": "G3:e D4:e G4:e D4:e C3:e G3:e C4:e G3:e",
|
|
61
|
+
"dynamics": "mp"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"number": 8,
|
|
65
|
+
"rightHand": "C5:w",
|
|
66
|
+
"leftHand": "C3:e G3:e C4:e G3:e C3:h",
|
|
67
|
+
"dynamics": "pp"
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "over-the-rainbow",
|
|
3
|
+
"title": "Over the Rainbow",
|
|
4
|
+
"genre": "film",
|
|
5
|
+
"composer": "Harold Arlen / E.Y. Harburg",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"key": "C major",
|
|
8
|
+
"tempo": 84,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 23,
|
|
11
|
+
"tags": [
|
|
12
|
+
"wizard-of-oz",
|
|
13
|
+
"hopeful",
|
|
14
|
+
"classic",
|
|
15
|
+
"standard",
|
|
16
|
+
"octave-leap"
|
|
17
|
+
],
|
|
18
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
19
|
+
"musicalLanguage": {
|
|
20
|
+
"description": "The most famous song from The Wizard of Oz opens with one of music's most recognizable intervals — an octave leap. This beginner arrangement in C major captures the song's hopeful, dreaming quality with simple chord voicings. The melody is tuneful and singable, moving mostly by step after the dramatic opening jump.",
|
|
21
|
+
"structure": "A section: the octave leap and descent (4 bars), B section: bridge with stepwise melody (4 bars)",
|
|
22
|
+
"keyMoments": [
|
|
23
|
+
"Bar 1: The octave leap from C4 to C5 — 'Somewhere, over the rainbow.'",
|
|
24
|
+
"Bars 3-4: The melody settles into stepwise motion — dreaming of a better place.",
|
|
25
|
+
"Bars 7-8: The hopeful return — quiet confidence that dreams come true."
|
|
26
|
+
],
|
|
27
|
+
"teachingGoals": [
|
|
28
|
+
"Octave leap — confident, accurate, and musical",
|
|
29
|
+
"Contrasting intervallic and stepwise melody",
|
|
30
|
+
"Simple but effective accompaniment patterns"
|
|
31
|
+
],
|
|
32
|
+
"styleTips": [
|
|
33
|
+
"The octave leap should feel like a wish — hopeful, not forceful",
|
|
34
|
+
"After the leap, the melody should settle gently like landing on a cloud",
|
|
35
|
+
"Keep the left hand simple and supportive — this is about the melody"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"measures": [
|
|
39
|
+
{
|
|
40
|
+
"number": 1,
|
|
41
|
+
"rightHand": "C4:h C5:h",
|
|
42
|
+
"leftHand": "C3:q E3:q G3:q E3:q",
|
|
43
|
+
"dynamics": "mp",
|
|
44
|
+
"teachingNote": "C major — THE octave leap. This is the most famous interval in songwriting."
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"number": 2,
|
|
48
|
+
"rightHand": "B4:q A4:q G4:h",
|
|
49
|
+
"leftHand": "A2:q C3:q E3:q C3:q",
|
|
50
|
+
"teachingNote": "Am — melody cascades down stepwise. Gentle and dreamy."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"number": 3,
|
|
54
|
+
"rightHand": "A4:h B4:q C5:q",
|
|
55
|
+
"leftHand": "F2:q A2:q C3:q A2:q",
|
|
56
|
+
"dynamics": "mf",
|
|
57
|
+
"teachingNote": "F major — climbing again, more gently this time."
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"number": 4,
|
|
61
|
+
"rightHand": "B4:q A4:q G4:h",
|
|
62
|
+
"leftHand": "G2:q B2:q D3:q B2:q",
|
|
63
|
+
"teachingNote": "G major — settling down. The phrase completes its arc."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"number": 5,
|
|
67
|
+
"rightHand": "E4:q F4:q G4:q A4:q",
|
|
68
|
+
"leftHand": "C3:q E3:q G3:q E3:q",
|
|
69
|
+
"dynamics": "mf",
|
|
70
|
+
"teachingNote": "C major — the bridge. Stepwise motion, building hope."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"number": 6,
|
|
74
|
+
"rightHand": "G4:q F4:q E4:q D4:q",
|
|
75
|
+
"leftHand": "F2:q A2:q C3:q A2:q",
|
|
76
|
+
"teachingNote": "F major — gentle descent. The dream is peaceful."
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"number": 7,
|
|
80
|
+
"rightHand": "E4:q F4:q G4:h",
|
|
81
|
+
"leftHand": "G2:q B2:q D3:q G3:q",
|
|
82
|
+
"dynamics": "mp",
|
|
83
|
+
"teachingNote": "G major — one last rise. Hopeful and quiet."
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"number": 8,
|
|
87
|
+
"rightHand": "C4:w",
|
|
88
|
+
"leftHand": "C3:q E3:q G3:h",
|
|
89
|
+
"dynamics": "p",
|
|
90
|
+
"teachingNote": "C major — home. Whole note C. Dreams can come true."
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "oye-como-va",
|
|
3
|
+
"title": "Oye Como Va",
|
|
4
|
+
"genre": "latin",
|
|
5
|
+
"composer": "Tito Puente",
|
|
6
|
+
"difficulty": "beginner",
|
|
7
|
+
"key": "A minor",
|
|
8
|
+
"tempo": 120,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 16,
|
|
11
|
+
"tags": [
|
|
12
|
+
"latin-rock",
|
|
13
|
+
"tito-puente",
|
|
14
|
+
"santana",
|
|
15
|
+
"groove",
|
|
16
|
+
"two-chord"
|
|
17
|
+
],
|
|
18
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
19
|
+
"musicalLanguage": {
|
|
20
|
+
"description": "Tito Puente's Latin groove, made famous by Santana, is built on just two chords: Am7 and D7. This simplicity makes it perfect for beginners while the infectious Latin rhythm keeps it exciting. The left hand drives a montuno-style pattern while the right hand plays the catchy organ riff that everyone knows.",
|
|
21
|
+
"structure": "Two-chord vamp throughout: Am7-D7 (8 bars with building intensity)",
|
|
22
|
+
"keyMoments": [
|
|
23
|
+
"Bar 1: The Am7 riff — instant recognition. This is the hook.",
|
|
24
|
+
"Bar 2: D7 — the only chord change. Simple but the groove is everything.",
|
|
25
|
+
"Bars 5-8: The riff opens up with more rhythmic energy and fills."
|
|
26
|
+
],
|
|
27
|
+
"teachingGoals": [
|
|
28
|
+
"Two-chord vamp — mastering a groove with minimal harmony",
|
|
29
|
+
"Latin rhythm feel — the montuno pattern",
|
|
30
|
+
"Building intensity through rhythm and dynamics, not chord changes"
|
|
31
|
+
],
|
|
32
|
+
"styleTips": [
|
|
33
|
+
"It's all about the groove — lock in the rhythm before worrying about notes",
|
|
34
|
+
"Left hand should be percussive and rhythmic",
|
|
35
|
+
"Think organ, not piano — keep the touch light and bouncy"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"measures": [
|
|
39
|
+
{
|
|
40
|
+
"number": 1,
|
|
41
|
+
"rightHand": "A4:e C5:e A4:e R:e A4:e C5:e A4:e R:e",
|
|
42
|
+
"leftHand": "A2:q E3 A3 C4:q A2:q E3 A3 C4:q",
|
|
43
|
+
"dynamics": "mf",
|
|
44
|
+
"teachingNote": "Am7 — the riff. Staccato and bouncy. This IS the song."
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"number": 2,
|
|
48
|
+
"rightHand": "A4:e B4:e A4:e R:e G4:e A4:e G4:e R:e",
|
|
49
|
+
"leftHand": "D3:q F#3 A3 C4:q D3:q F#3 A3 C4:q",
|
|
50
|
+
"teachingNote": "D7 — the riff shifts down. Keep the same rhythmic energy."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"number": 3,
|
|
54
|
+
"rightHand": "A4:e C5:e A4:e R:e A4:e C5:e A4:e R:e",
|
|
55
|
+
"leftHand": "A2:q E3 A3 C4:q A2:q E3 A3 C4:q",
|
|
56
|
+
"teachingNote": "Am7 — back to the main riff. Consistency is groove."
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"number": 4,
|
|
60
|
+
"rightHand": "A4:e B4:e A4:e R:e G4:e A4:e G4:e R:e",
|
|
61
|
+
"leftHand": "D3:q F#3 A3 C4:q D3:q F#3 A3 C4:q",
|
|
62
|
+
"dynamics": "f",
|
|
63
|
+
"teachingNote": "D7 — push the dynamics up slightly. Building energy."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"number": 5,
|
|
67
|
+
"rightHand": "A4:e C5:e D5:e C5:e A4:e C5:e A4:e R:e",
|
|
68
|
+
"leftHand": "A2:q E3 A3 C4:q A2:q E3 A3 C4:q",
|
|
69
|
+
"dynamics": "f",
|
|
70
|
+
"teachingNote": "Am7 — melody reaches higher to D5. The riff is evolving."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"number": 6,
|
|
74
|
+
"rightHand": "B4:e D5:e B4:e A4:e G4:e A4:e B4:e R:e",
|
|
75
|
+
"leftHand": "D3:q F#3 A3 C4:q D3:q F#3 A3 C4:q",
|
|
76
|
+
"teachingNote": "D7 — more active melody. Let the energy build naturally."
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"number": 7,
|
|
80
|
+
"rightHand": "E5:e C5:e A4:e C5:e E5:e C5:e A4:e R:e",
|
|
81
|
+
"leftHand": "A2:q E3 A3 C4:q A2:q E3 A3 C4:q",
|
|
82
|
+
"dynamics": "ff",
|
|
83
|
+
"teachingNote": "Am7 — peak energy. E5 at the top of the riff. Full excitement."
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"number": 8,
|
|
87
|
+
"rightHand": "A4:e B4:e A4:e G4:e A4:q R:h",
|
|
88
|
+
"leftHand": "D3:q F#3 A3 C4:q A2:h",
|
|
89
|
+
"dynamics": "f",
|
|
90
|
+
"teachingNote": "D7 to Am — the ending tag. The rest lets the groove echo in your head."
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "peacherine-rag",
|
|
3
|
+
"title": "Peacherine Rag",
|
|
4
|
+
"genre": "ragtime",
|
|
5
|
+
"composer": "Scott Joplin",
|
|
6
|
+
"difficulty": "intermediate",
|
|
7
|
+
"key": "C major",
|
|
8
|
+
"tempo": 112,
|
|
9
|
+
"timeSignature": "4/4",
|
|
10
|
+
"durationSeconds": 17,
|
|
11
|
+
"tags": ["ragtime", "joplin", "lively", "syncopated"],
|
|
12
|
+
"source": "Claude arrangement — simplified interpretation",
|
|
13
|
+
"musicalLanguage": {
|
|
14
|
+
"description": "A lively and bright rag published in 1901, Peacherine Rag showcases Joplin's gift for infectious melody. The right hand carries a bouncy syncopated tune over a steady oom-pah bass.",
|
|
15
|
+
"structure": "A section excerpt (8 bars)",
|
|
16
|
+
"keyMoments": ["Syncopated opening motif in measure 1", "Chromatic passing tone in measure 5"],
|
|
17
|
+
"teachingGoals": ["Practice steady oom-pah bass pattern", "Develop right-hand syncopation independence"],
|
|
18
|
+
"styleTips": ["Keep left hand strictly rhythmic and even", "Right hand should bounce lightly on syncopated notes"]
|
|
19
|
+
},
|
|
20
|
+
"measures": [
|
|
21
|
+
{
|
|
22
|
+
"number": 1,
|
|
23
|
+
"rightHand": "R:e C5:e E5:e G5:e C6:q R:q",
|
|
24
|
+
"leftHand": "C3:q E4 G4:q C3:q E4 G4:q",
|
|
25
|
+
"dynamics": "f"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"number": 2,
|
|
29
|
+
"rightHand": "E5:e C5:e D5:e E5:e G5:q E5:q",
|
|
30
|
+
"leftHand": "G2:q B3 D4:q G2:q B3 D4:q",
|
|
31
|
+
"dynamics": "mf"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"number": 3,
|
|
35
|
+
"rightHand": "C5:e D5:e E5:e G5:e A5:q G5:q",
|
|
36
|
+
"leftHand": "C3:q E4 G4:q C3:q E4 G4:q",
|
|
37
|
+
"dynamics": "mf"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"number": 4,
|
|
41
|
+
"rightHand": "F5:e E5:e D5:e C5:e D5:h",
|
|
42
|
+
"leftHand": "F2:q A3 C4:q G2:q B3 D4:q",
|
|
43
|
+
"dynamics": "mf"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"number": 5,
|
|
47
|
+
"rightHand": "R:e C5:e E5:e G5:e C6:q R:q",
|
|
48
|
+
"leftHand": "C3:q E4 G4:q C3:q E4 G4:q",
|
|
49
|
+
"dynamics": "f"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"number": 6,
|
|
53
|
+
"rightHand": "E5:e C5:e D5:e Eb5:e E5:q G5:q",
|
|
54
|
+
"leftHand": "A2:q C4 E4:q A2:q C4 E4:q",
|
|
55
|
+
"dynamics": "mf"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"number": 7,
|
|
59
|
+
"rightHand": "A5:e G5:e F5:e E5:e D5:q 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
|
+
}
|