Strudelify
I Wouldn't Have Missed It For The World cover art

1981 · There's No Gettin' Over Me

I Wouldn't Have Missed It For The World

Ronnie Milsap

KeyG majorTempo114 bpm
0:00/0:00
// I Wouldn't Have Missed It For The World — Ronnie Milsap
// 114 bpm, 4/4, key G major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(114/4)

const chords = arrange(
  // intro (4 bars)
  [4, "<G C G C>"],
  // verse (16 bars)
  [16, "<Am!2 G!2 C^7!2 G!2 Em!2 C!2 Am!2 [D@2 C@2] [Bm@2 Am@2]>"],
  // chorus (17 bars)
  [17, "<G C Am [D@2 B7@2] Em!2 Am Dsus G C Am [D@2 B7@2] Em!2 Am Dsus!2>"],
  // trans (4 bars)
  [4, "<G C G C>"],
  // verse (16 bars)
  [16, "<Am!2 G!2 C^7!2 G!2 Em!2 C!2 Am!2 [D@2 C@2] [Bm@2 Am@2]>"],
  // chorus (17 bars)
  [17, "<G C Am [D@2 B7@2] Em!2 Am Dsus G C Am [D@2 B7@2] Em!2 Am Dsus!2>"],
  // solo (8 bars)
  [8, "<G C Am [D@2 B7@2] Em!2 Am Dsus>"],
  // chorus (9 bars)
  [9, "<G C Am [D@2 B7@2] Em!2 Am Dsus!2>"],
  // fadeout (8 bars)
  [8, "<G C Am [D@2 B@2] Em!2 Am Dsus>"],
)
const bassline = arrange(
  [4, "<g2 c2 g2 c2>"],
  [16, "<a2!2 g2!2 c2!2 g2!2 e2!2 c2!2 a2!2 [d2@2 c2@2] [b2@2 a2@2]>"],
  [17, "<g2 c2 a2 [d2@2 d#2@2] e2 d2 a2 d2 g2 c2 a2 [d2@2 d#2@2] e2 d2 a2 d2!2>"],
  [4, "<g2 c2 g2 c2>"],
  [16, "<a2!2 g2!2 c2!2 g2!2 e2!2 c2!2 a2!2 [d2@2 c2@2] [b2@2 a2@2]>"],
  [17, "<g2 c2 a2 [d2@2 d#2@2] e2 d2 a2 d2 g2 c2 a2 [d2@2 d#2@2] e2 d2 a2 d2!2>"],
  [8, "<g2 c2 a2 [d2@2 d#2@2] e2 d2 a2 d2>"],
  [9, "<g2 c2 a2 [d2@2 d#2@2] e2 d2 a2 d2!2>"],
  [8, "<g2 c2 a2 [d2@2 d#2@2] e2 d2 a2 d2>"],
)

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