Strudelify
Wish Someone Would Care cover art

1964 · Wish Someone Would Care

Wish Someone Would Care

Irma Thomas

KeyD majorTempo55 bpm
0:00/0:00
// Wish Someone Would Care — Irma Thomas
// 55 bpm, 4/4, key D major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(55/4)

const chords = arrange(
  // intro (4 bars)
  [4, "<Bm D Bm D>"],
  // verse (8 bars)
  [8, "<D Bm G A7 D Bm G A7>"],
  // chorus (4 bars)
  [4, "<D Bm D [Bm@2 A@2]>"],
  // verse (10 bars)
  [10, "<D Bm D Bm D Bm D Bm G A>"],
  // chorus (2 bars)
  [2, "<D Bm>"],
  // fadeout (2 bars)
  [2, "<D Bm>"],
)
const bassline = arrange(
  [4, "<b2 d2 b2 d2>"],
  [8, "<d2 b2 g2 a2 d2 b2 g2 a2>"],
  [4, "<d2 b2 d2 [b2@2 a2@2]>"],
  [10, "<d2 b2 d2 b2 d2 b2 d2 b2 g2 a2>"],
  [2, "<d2 b2>"],
  [2, "<d2 b2>"],
)

// 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)