Strudelify
I Found A Love cover art

1962 · I Found a Love

I Found A Love

The Falcons

KeyG majorTempo89 bpm
0:00/0:00
// I Found A Love — The Falcons
// 89 bpm, 12/8, key G major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(89/6)

const chords = arrange(
  // intro (6 bars)
  [6, "<G C G D Em G>"],
  // verse (8 bars)
  [8, "<G C G C G D Em G>"],
  // verse (8 bars)
  [8, "<G C G C G D Em G>"],
  // interlude (6 bars)
  [6, "<G C G D Em G>"],
  // verse (8 bars)
  [8, "<G C G C G D Em G>"],
  // verse (10 bars)
  [10, "<G C G C G D G D Em G>"],
)
const bassline = arrange(
  [6, "<g2 c2 g2 d2 e2 [g2@6 d2@6]>"],
  [8, "<g2 c2 g2 c2 g2 d2 e2 [g2@6 d2@6]>"],
  [8, "<g2 c2 g2 c2 g2 d2 e2 [g2@6 d2@6]>"],
  [6, "<g2 c2 g2 d2 e2 [g2@6 d2@6]>"],
  [8, "<g2 c2 g2 c2 g2 d2 e2 [g2@6 d2@6]>"],
  [10, "<g2 c2 g2 c2 g2 d2 g2 d2 e2 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 hh] [sd hh hh] [bd hh hh] [sd hh hh]").gain(0.8)

stack(keys, bass, drums)