Strudelify
Happy Jack cover art

1967 · Meaty, Beaty, Big And Bouncy

Happy Jack

The Who

KeyD majorTempo260 bpm
0:00/0:00
// Happy Jack — The Who
// 260 bpm, 4/4, key D major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(260/4)

const chords = arrange(
  // intro (5 bars)
  [5, "<~ D!4>"],
  // verse (11 bars)
  [11, "<D!2 [A@2 D@2] D!5 [D@2 A@2] D!2>"],
  // trans (4 bars)
  [4, "<~!2 D!2>"],
  // verse (11 bars)
  [11, "<D!2 [A@2 D@2] D!5 [D@2 A@2] D!2>"],
  // trans (8 bars)
  [8, "<D!8>"],
  // pre-chorus (12 bars)
  [12, "<G!2 A!2 G!2 A!6>"],
  // chorus (11 bars)
  [11, "<D!2 [A@2 D@2] D!5 [D@2 A@2] D!2>"],
  // interlude (14 bars)
  [14, "<A!2 D!2 A!2 D!2 A!2 D!2 A!2>"],
  // trans (4 bars)
  [4, "<D!4>"],
  // chorus (11 bars)
  [11, "<D!2 [A@2 D@2] D!5 [D@2 A@2] D!2>"],
  // interlude (22 bars)
  [22, "<A!2 D!2 A!2 D!2 G!2 A D G!2 A!8>"],
  // pre-chorus (12 bars)
  [12, "<G!2 A!2 G!2 A!6>"],
  // chorus (11 bars)
  [11, "<D!2 [A@2 D@2] D!5 [D@2 A@2] D!2>"],
  // coda (3 bars)
  [3, "<~!2 D>"],
)
const bassline = arrange(
  [5, "<~ d2!4>"],
  [11, "<d2!2 [a2@2 d2@2] d2!5 [d2@2 a2@2] d2!2>"],
  [4, "<~!2 d2!2>"],
  [11, "<d2!2 [a2@2 d2@2] d2!5 [d2@2 a2@2] d2!2>"],
  [8, "<d2!8>"],
  [12, "<g2!2 a2!2 g2!2 a2!6>"],
  [11, "<d2!2 [a2@2 d2@2] d2!5 [d2@2 a2@2] d2!2>"],
  [14, "<a2!2 d2!2 a2!2 d2!2 a2!2 d2!2 a2!2>"],
  [4, "<d2!4>"],
  [11, "<d2!2 [a2@2 d2@2] d2!5 [d2@2 a2@2] d2!2>"],
  [22, "<a2!2 d2!2 a2!2 d2!2 g2!2 a2 d2 g2!2 a2!8>"],
  [12, "<g2!2 a2!2 g2!2 a2!6>"],
  [11, "<d2!2 [a2@2 d2@2] d2!5 [d2@2 a2@2] d2!2>"],
  [3, "<~!2 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)

More by The Who