Strudelify
Bust A Move cover art

1990 · Stone Cold Rhymin'

Bust A Move

Young MC

KeyE majorTempo117 bpm
0:00/0:00
// Bust A Move — Young MC
// 117 bpm, 4/4, key E major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(117/4)

const chords = arrange(
  // intro (8 bars)
  [8, "<E5 A5 E5 A5 E5 A5 E5 A5>"],
  // verse (8 bars)
  [8, "<E5 A5 E5 A5 E5 A5 E5 A5>"],
  // verse (8 bars)
  [8, "<[E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5>"],
  // chorus (8 bars)
  [8, "<[E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5>"],
  // verse (8 bars)
  [8, "<E5 A5 E5 A5 E5 A5 E5 A5>"],
  // verse (8 bars)
  [8, "<[E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5>"],
  // chorus (8 bars)
  [8, "<E5 A5 E5 A5 E5 A5 E5 A5>"],
  // verse (8 bars)
  [8, "<[E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5>"],
  // verse (8 bars)
  [8, "<E5 A5 E5 A5 E5 A5 E5 ~>"],
  // chorus (8 bars)
  [8, "<[E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5>"],
  // interlude (8 bars)
  [8, "<~!8>"],
  // chorus (8 bars)
  [8, "<[E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5>"],
  // verse (8 bars)
  [8, "<E5 A5 E5 A5 E5 A5 E5 A5>"],
  // verse (8 bars)
  [8, "<[E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5>"],
  // chorus (17 bars)
  [17, "<[E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 [E5@2 G5@2] A5 E5>"],
)
const bassline = arrange(
  [8, "<e2 a2 e2 a2 e2 a2 e2 a2>"],
  [8, "<e2 a2 e2 a2 e2 a2 e2 a2>"],
  [8, "<[e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2>"],
  [8, "<[e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2>"],
  [8, "<e2 a2 e2 a2 e2 a2 e2 a2>"],
  [8, "<[e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2>"],
  [8, "<e2 a2 e2 a2 e2 a2 e2 a2>"],
  [8, "<[e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2>"],
  [8, "<e2 a2 e2 a2 e2 a2 e2 ~>"],
  [8, "<[e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2>"],
  [8, "<~!8>"],
  [8, "<[e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2>"],
  [8, "<e2 a2 e2 a2 e2 a2 e2 a2>"],
  [8, "<[e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2>"],
  [17, "<[e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 [e2@2 g2@2] a2 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)