Strudelify
Nick Of Time cover art

1990 · Nick Of Time

Nick Of Time

Bonnie Raitt

KeyC majorTempo118 bpm
0:00/0:00
// Nick Of Time — Bonnie Raitt
// 118 bpm, 4/4, key C major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(118/4)

const chords = arrange(
  // intro (12 bars)
  [12, "<~!2 Dm7 [G@2 Am@2] Dm7 [Dm7@2 G7@2] Dm7 [G@2 Am@2] Dm7 [Dm7@2 G7@2] C!2>"],
  // verse (20 bars)
  [20, "<Dm7 C F6 C Dm7 C F6 C Dm7 C F6 C Dm7 C [E7b13@2 E7@2] Am Dm7 [Dm7@2 G7@2] C!2>"],
  // verse (20 bars)
  [20, "<Dm7 C F6 C Dm7 C F6 C Dm7 C F6 C Dm7 C [E7b13@2 E7@2] Am Dm7 [Dm7@2 G7@2] C!2>"],
  // bridge (16 bars)
  [16, "<Bb F C Dm Dm7 C [E7b13@2 E7@2] Am Dm7 [Dm7@2 G7@2] Dm7 [Dm7@2 G7@2] Dm7 [Dm7@2 G7@2] C!2>"],
  // verse (28 bars)
  [28, "<Dm7 C F6 C Dm7 C F6 C Dm7 C F6 C Dm7 C [E7b13@2 E7@2] Am Dm7 [Dm7@2 G7@2] Dm7 [Dm7@2 G7@2] Dm7 [Dm7@2 G7@2] Dm7 [Dm7@2 G7@2] Dm7 [Dm7@2 G7@2] C!2>"],
  // outro (8 bars)
  [8, "<Dm7 [G@2 Am@2] Dm7 [Dm7@2 G7@2] Dm7 [G@2 Am@2] Dm7 [Dm7@2 G7@2]>"],
  // fadeout (8 bars)
  [8, "<Dm7 [G@2 Am@2] Dm7 [Dm7@2 G7@2] Dm7 [G@2 Am@2] Dm7 [Dm7@2 G7@2]>"],
)
const bassline = arrange(
  [12, "<~!2 d2 [g2@2 a2@2] d2 [d2@2 g2@2] d2 [g2@2 a2@2] d2 [d2@2 g2@2] c2!2>"],
  [20, "<d2 e2 f2 g2 d2 e2 f2 g2 d2 e2 f2 g2 d2 e2 g#2 a2 d2 [d2@2 g2@2] c2!2>"],
  [20, "<d2 e2 f2 g2 d2 e2 f2 g2 d2 e2 f2 g2 d2 e2 g#2 a2 d2 [d2@2 g2@2] c2!2>"],
  [16, "<bb2 f2 c2 d2!2 e2 g#2 a2 d2 [d2@2 g2@2] d2 [d2@2 g2@2] d2 [d2@2 g2@2] c2!2>"],
  [28, "<d2 e2 f2 g2 d2 e2 f2 g2 d2 e2 f2 g2 d2 e2 g#2 a2 d2 [d2@2 g2@2] d2 [d2@2 g2@2] d2 [d2@2 g2@2] d2 [d2@2 g2@2] d2 [d2@2 g2@2] c2!2>"],
  [8, "<d2 [g2@2 a2@2] d2 [d2@2 g2@2] d2 [g2@2 a2@2] d2 [d2@2 g2@2]>"],
  [8, "<d2 [g2@2 a2@2] d2 [d2@2 g2@2] d2 [g2@2 a2@2] d2 [d2@2 g2@2]>"],
)

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

More by Bonnie Raitt