Strudelify
Stoned Love cover art

1970 · New Ways But Love Stays

Stoned Love

The Supremes

KeyD majorTempo118 bpm
0:00/0:00
// Stoned Love — The Supremes
// 118 bpm, 4/4, key D major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(118/4)

const chords = arrange(
  // intro (3 bars)
  [3, "<~!3>"],
  // chorus (8 bars)
  [8, "<D Bm Em D!2 Bm Em D>"],
  // verse (13 bars)
  [13, "<D Bm Em D!2 Bm Em D!2 Bm Em D ~>"],
  // chorus (8 bars)
  [8, "<D Bm Em D!2 Bm Em D>"],
  // verse (16 bars)
  [16, "<D Bm Em D!2 Bm Em D!2 Bm Em D!2 Bm Em ~>"],
  // chorus (8 bars)
  [8, "<D Bm Em D!2 Bm Em D>"],
  // bridge (9 bars)
  [9, "<F#m D^7 Em!2 F#m D^7 Em!2 ~>"],
  // chorus (16 bars)
  [16, "<D Bm Em D!2 Bm Em D ~!4 D Bm Em D>"],
  // fadeout (7 bars)
  [7, "<D Bm Em D!2 Bm Em>"],
)
const bassline = arrange(
  [3, "<~!3>"],
  [8, "<d2 b2 e2 d2!2 b2 e2 d2>"],
  [13, "<d2 b2 e2 d2!2 b2 e2 d2!2 b2 e2 d2 ~>"],
  [8, "<d2 b2 e2 d2!2 b2 e2 d2>"],
  [16, "<d2 b2 e2 d2!2 b2 e2 d2!2 b2 e2 d2!2 b2 e2 ~>"],
  [8, "<d2 b2 e2 d2!2 b2 e2 d2>"],
  [9, "<f#2 d2 e2!2 f#2 d2 e2!2 ~>"],
  [16, "<d2 b2 e2 d2!2 b2 e2 d2 ~!4 d2 b2 e2 d2>"],
  [7, "<d2 b2 e2 d2!2 b2 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 The Supremes