Strudelify
I Second That Emotion cover art

1968 · The King of R&B

I Second That Emotion

The Miracles

KeyD majorTempo96 bpm
0:00/0:00
// I Second That Emotion — The Miracles
// 96 bpm, 4/4, key D major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(96/4)

const chords = arrange(
  // intro (4 bars)
  [4, "<[A@2 G@2] G D!2>"],
  // verse (8 bars)
  [8, "<D!6 [G@2 A@2] D>"],
  // pre-chorus (4 bars)
  [4, "<G D G D>"],
  // chorus (8 bars)
  [8, "<D [A@2 G@2] G D!2 [A@2 G@2] G D>"],
  // trans (1 bars)
  [1, "<[A@2 G@2]>"],
  // verse (8 bars)
  [8, "<D!6 [G@2 A@2] D>"],
  // pre-chorus (4 bars)
  [4, "<G D G D>"],
  // chorus (8 bars)
  [8, "<D [A@2 G@2] G D!2 [A@2 G@2] G D>"],
  // trans (5 bars)
  [5, "<[A@2 G@2] D [A@2 G@2] G D>"],
  // pre-chorus (4 bars)
  [4, "<G D G D>"],
  // chorus (8 bars)
  [8, "<D [A@2 G@2] G D!2 [A@2 G@2] G D>"],
  // fadeout (4 bars)
  [4, "<[A@2 G@2] D [A@2 G@2] D>"],
)
const bassline = arrange(
  [4, "<[a2@2 g2@2] g2 d2!2>"],
  [8, "<d2!6 [g2@2 a2@2] d2>"],
  [4, "<g2 d2 g2 d2>"],
  [8, "<d2 [a2@2 g2@2] g2 d2!2 [a2@2 g2@2] g2 d2>"],
  [1, "<[a2@2 g2@2]>"],
  [8, "<d2!6 [g2@2 a2@2] d2>"],
  [4, "<g2 d2 g2 d2>"],
  [8, "<d2 [a2@2 g2@2] g2 d2!2 [a2@2 g2@2] g2 d2>"],
  [5, "<[a2@2 g2@2] d2 [a2@2 g2@2] g2 d2>"],
  [4, "<g2 d2 g2 d2>"],
  [8, "<d2 [a2@2 g2@2] g2 d2!2 [a2@2 g2@2] g2 d2>"],
  [4, "<[a2@2 g2@2] d2 [a2@2 g2@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 Miracles