Strudelify
Hey Stoopid cover art

1991 · Hey Stoopid

Hey Stoopid

Alice Cooper

KeyC minorTempo128 bpm
0:00/0:00
// Hey Stoopid — Alice Cooper
// 128 bpm, 4/4, key C minor. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(128/4)

const chords = arrange(
  // intro (14 bars)
  [14, "<~!14>"],
  // intro b (8 bars)
  [8, "<Am!2 F!2 C!2 G!2>"],
  // verse (16 bars)
  [16, "<Am!2 F!2 C!2 G!2 Am!2 F!2 C!2 G!2>"],
  // pre-chorus (8 bars)
  [8, "<Am Dm F G Am Dm F G>"],
  // chorus (12 bars)
  [12, "<Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Fm Gm Cm Bb>"],
  // verse (16 bars)
  [16, "<Am!2 F!2 C!2 G!2 Am!2 F!2 C!2 G!2>"],
  // pre-chorus (8 bars)
  [8, "<Am Dm F G Am Dm F G>"],
  // chorus (12 bars)
  [12, "<Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Fm Gm Cm!2>"],
  // solo (8 bars)
  [8, "<G A Bm D G A F#m!2>"],
  // bridge (12 bars)
  [12, "<G!2 A!2 G!2 A!2 F#m!2 F#!2>"],
  // chorus (10 bars)
  [10, "<~!4 Cm C5!3 Fm Gm>"],
  // chorus (10 bars)
  [10, "<Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Fm Gm>"],
  // chorus (11 bars)
  [11, "<Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Cm [Ab@2 Bb@2] Fm Gm ~>"],
)
const bassline = arrange(
  [14, "<~!14>"],
  [8, "<a2!2 f2!2 c2!2 g2!2>"],
  [16, "<a2!2 f2!2 c2!2 g2!2 a2!2 f2!2 c2!2 g2!2>"],
  [8, "<a2 d2 f2 g2 a2 d2 f2 g2>"],
  [12, "<c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] f2 g2 c2 bb2>"],
  [16, "<a2!2 f2!2 c2!2 g2!2 a2!2 f2!2 c2!2 g2!2>"],
  [8, "<a2 d2 f2 g2 a2 d2 f2 g2>"],
  [12, "<c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] f2 g2 c2!2>"],
  [8, "<g2 a2 b2 d2 g2 a2 f#2!2>"],
  [12, "<g2!2 a2!2 g2!2 a2!2 f#2!2 a2 c#2>"],
  [10, "<~!4 c2!4 f2 g2>"],
  [10, "<c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] f2 g2>"],
  [11, "<c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] c2 [ab2@2 bb2@2] f2 g2 ~>"],
)

// 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 Alice Cooper