Strudelify
Happy Man cover art

1982 · Kihntinued

Happy Man

Greg Kihn Band

KeyG majorTempo149 bpm
0:00/0:00
// Happy Man — Greg Kihn Band
// 149 bpm, 4/4, key G major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(149/4)

const chords = arrange(
  // intro (8 bars)
  [8, "<C!2 Em!2 C!2 Em!2>"],
  // verse (12 bars)
  [12, "<C!2 Em!2 C!2 D!2 C!2 G D>"],
  // chorus (11 bars)
  [11, "<E [G@2 D@2] E [G@2 D@2] A [G@2 D@2] B7 D [D@2 A@2] E [E@2 D@2]>"],
  // verse (12 bars)
  [12, "<C!2 Em!2 C!2 D!2 C!2 G D>"],
  // chorus (13 bars)
  [13, "<E [G@2 D@2] E [G@2 D@2] A [G@2 D@2] B7 D [D@2 A@2] E [E@2 A@2] E!2>"],
  // solo (12 bars)
  [12, "<C!2 Em!2 C!2 D!2 C!2 G D>"],
  // chorus (18 bars)
  [18, "<E [G@2 D@2] E [G@2 D@2] A [G@2 D@2] B7 D [D@2 A@2] E [G@2 D@2] E [G@2 D@2] A [G@2 D@2] B7 D [D@2 A@2]>"],
  // outro (19 bars)
  [19, "<E [E@2 A@2] E [E@2 A@2] E [E@2 A@2] E [E@2 A@2] E [E@2 A@2] E [E@2 A@2] E [E@2 A@2] E [E@2 A@2] E [E@2 A@2] E>"],
)
const bassline = arrange(
  [8, "<c2!2 e2!2 c2!2 e2!2>"],
  [12, "<c2!2 e2!2 c2!2 d2!2 c2!2 g2 d2>"],
  [11, "<e2 [g2@2 d2@2] e2 [g2@2 d2@2] a2 [g2@2 d2@2] b2 d2 [d2@2 a2@2] e2!2>"],
  [12, "<c2!2 e2!2 c2!2 d2!2 c2!2 g2 d2>"],
  [13, "<e2 [g2@2 d2@2] e2 [g2@2 d2@2] a2 [g2@2 d2@2] b2 d2 [d2@2 a2@2] e2 [e2@2 a2@2] e2!2>"],
  [12, "<c2!2 e2!2 c2!2 d2!2 c2!2 g2 d2>"],
  [18, "<e2 [g2@2 d2@2] e2 [g2@2 d2@2] a2 [g2@2 d2@2] b2 d2 [d2@2 a2@2] e2 [g2@2 d2@2] e2 [g2@2 d2@2] a2 [g2@2 d2@2] b2 d2 [d2@2 a2@2]>"],
  [19, "<e2 [e2@2 a2@2] e2 [e2@2 a2@2] e2 [e2@2 a2@2] e2 [e2@2 a2@2] e2 [e2@2 a2@2] e2 [e2@2 a2@2] e2 [e2@2 a2@2] e2 [e2@2 a2@2] e2 [e2@2 a2@2] 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)