Strudelify
Stop This Game cover art

1980 · All Shook Up

Stop This Game

Cheap Trick

KeyE majorTempo131 bpm
0:00/0:00
// Stop This Game — Cheap Trick
// 131 bpm, 4/4, key E major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(131/4)

const chords = arrange(
  // intro (21 bars)
  [21, "<E!21>"],
  // trans (10 bars)
  [10, "<Em!2 G!2 Em!2 C!4>"],
  // verse (10 bars)
  [10, "<E!3 C E!3 C Am B>"],
  // chorus (8 bars)
  [8, "<E E7 E6 C E E7 E6 C>"],
  // verse (10 bars)
  [10, "<E!3 C E!3 C Am B>"],
  // chorus (9 bars)
  [9, "<E E7 E6 C E E7 E6 C!2>"],
  // bridge (8 bars)
  [8, "<A [A@3 D] A [A@3 D] B [B@3 D] B!2>"],
  // trans (10 bars)
  [10, "<Em!2 G!2 Em!2 C!4>"],
  // chorus (8 bars)
  [8, "<E E7 E6 C E E7 E6 C>"],
  // chorus (8 bars)
  [8, "<E E7 E6 C E E7 E6 C>"],
  // chorus (8 bars)
  [8, "<E E7 E6 C E E7 E6 C>"],
  // chorus (8 bars)
  [8, "<E E7 E6 C E E7 E6 C>"],
  // fadeout (9 bars)
  [9, "<E E7 E6 C E E7 E6 C E>"],
)
const bassline = arrange(
  [21, "<e2!21>"],
  [10, "<e2!2 g2!2 e2!2 c2!4>"],
  [10, "<e2!3 c2 e2!3 c2 a2 b2>"],
  [8, "<e2 d2 c#2 c2 e2 d2 c#2 c2>"],
  [10, "<e2!3 c2 e2!3 c2 a2 b2>"],
  [9, "<e2 d2 c#2 c2 e2 d2 c#2 c2!2>"],
  [8, "<a2 [a2@3 d2] a2 [a2@3 d2] b2 [b2@3 d2] b2!2>"],
  [10, "<e2!2 g2!2 e2!2 c2!4>"],
  [8, "<e2 d2 c#2 c2 e2 d2 c#2 c2>"],
  [8, "<e2 d2 c#2 c2 e2 d2 c#2 c2>"],
  [8, "<e2 d2 c#2 c2 e2 d2 c#2 c2>"],
  [8, "<e2 d2 c#2 c2 e2 d2 c#2 c2>"],
  [9, "<e2 d2 c#2 c2 e2 d2 c#2 c2 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)

More by Cheap Trick