Strudelify
Carry Me cover art

1975 · Wind on the Water

Carry Me

David Crosby,Graham Nash

KeyE majorTempo94 bpm
0:00/0:00
// Carry Me — David Crosby,Graham Nash
// 94 bpm, 4/4, key E major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(94/4)

const chords = arrange(
  // intro (8 bars)
  [8, "<E E6 Bm7 E!2 E6 Bm7 E>"],
  // verse (16 bars)
  [16, "<E B A [C#m7@2 C#7sus@2] E B A [C#m7@2 A6@2] E B A [C#m7@2 A6@2] E B A [C#m7@2 A^7@2]>"],
  // chorus (8 bars)
  [8, "<E E6 Bm7 E!2 E6 Bm7 E>"],
  // verse (16 bars)
  [16, "<E B A [C#m7@2 C#7sus@2] E B A [C#m7@2 A6@2] E B A [C#m7@2 B7@2] E B A [C#m7@2 A^7@2]>"],
  // chorus (8 bars)
  [8, "<E E6 Bm7 E!2 E6 Bm7 E>"],
  // verse (16 bars)
  [16, "<E B A [C#m7@2 C#7sus@2] E B A [C#m7@2 A69@2] E B A [C#m7@2 A@2] E B A [C#m7@2 A^7@2]>"],
  // chorus (10 bars)
  [10, "<E E6 Bm7 E!2 E6 [Bm7@2 A69@2]!3 E>"],
)
const bassline = arrange(
  [8, "<e2!8>"],
  [16, "<e2 b2 a2 c#2 e2 b2 a2 [c#2@2 a2@2] e2 b2 a2 [c#2@2 a2@2] e2 b2 a2 [c#2@2 a2@2]>"],
  [8, "<e2!8>"],
  [16, "<e2 b2 a2 c#2 e2 b2 a2 [c#2@2 a2@2] e2 b2 a2 [c#2@2 b2@2] e2 b2 a2 [c#2@2 a2@2]>"],
  [8, "<e2!8>"],
  [16, "<e2 b2 a2 c#2 e2 b2 a2 [c#2@2 a2@2] e2 b2 a2 [c#2@2 a2@2] e2 b2 a2 [c#2@2 a2@2]>"],
  [10, "<e2!6 [e2@2 a2@2]!3 e2>"],
)

// chords · gm_piano
const keys = chord(chords).voicing().s("gm_piano").gain(0.8)
// bass · gm_electric_bass_finger
const bass = note(bassline).s("gm_electric_bass_finger").gain(0.9)
// drums
const drums = s("[bd hh] [sd hh] [bd hh] [sd hh]").gain(0.8)

stack(keys, bass, drums)