Strudelify
Ma Belle Amie cover art

1970 · Ma Belle Amie - single version

Ma Belle Amie

The Tee Set

KeyG majorTempo86 bpm
0:00/0:00
// Ma Belle Amie — The Tee Set
// 86 bpm, 4/4, key G major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(86/4)

const chords = arrange(
  // intro (1 bars)
  [1, "<D7>"],
  // chorus (14 bars)
  [14, "<G [Em@2 A@2] D G [Em@2 A@2] D C!2 G!2 Am!2 [C@2 Dsus D] G>"],
  // trans (1 bars)
  [1, "<[Bb@2 Eb Bb]>"],
  // verse (10 bars)
  [10, "<[Bb@2 Eb Bb]!2 [Bb@2 Dm@2] [Cm@2 F@2] [Bb@2 Bb7@2] [Eb@2 Ebm@2] [Bb@2 Eb Ebm] [Bb@2 Eb@2] [Bb@2 Eb Ebm] Bb>"],
  // trans (1 bars)
  [1, "<D7>"],
  // chorus (14 bars)
  [14, "<G [Em@2 A@2] D G [Em@2 A@2] D C!2 G!2 Am!2 [C@2 Dsus D] G>"],
  // trans (1 bars)
  [1, "<[Bb@2 Eb Bb]>"],
  // verse (10 bars)
  [10, "<[Bb@2 Eb Bb]!2 [Bb@2 Dm@2] [Cm@2 F@2] [Bb@2 Bb7@2] [Eb@2 Ebm@2] [Bb@2 Eb Ebm] [Bb@2 Eb@2] [Bb@2 Eb Ebm] Bb>"],
  // trans (1 bars)
  [1, "<D7>"],
  // chorus (16 bars)
  [16, "<G [Em@2 A@2] D G [Em@2 A@2] D C!2 G!2 Am!2 [C@2 Dsus D] G [C@2 Dsus D] G>"],
)
const bassline = arrange(
  [1, "<d2>"],
  [14, "<g2 [e2@2 a2@2] d2 g2 [e2@2 a2@2] d2 c2!2 g2!2 a2!2 [c2@2 d2@2] g2>"],
  [1, "<bb2>"],
  [10, "<bb2!2 [bb2@2 a2@2] [g2@2 f2@2] bb2 eb2 [bb2 ab2 g2 gb2] [f2@2 eb2@2] [bb2 ab2 g2 gb2] f2>"],
  [1, "<d2>"],
  [14, "<g2 [e2@2 a2@2] d2 g2 [e2@2 a2@2] d2 c2!2 g2!2 a2!2 [c2@2 d2@2] g2>"],
  [1, "<bb2>"],
  [10, "<bb2!2 [bb2@2 a2@2] [g2@2 f2@2] bb2 eb2 [bb2 ab2 g2 gb2] [f2@2 eb2@2] [bb2 ab2 g2 gb2] f2>"],
  [1, "<d2>"],
  [16, "<g2 [e2@2 a2@2] d2 g2 [e2@2 a2@2] d2 c2!2 g2!2 a2!2 [c2@2 d2@2] g2 [c2@2 d2@2] 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] [sd hh] [bd hh] [sd hh]").gain(0.8)

stack(keys, bass, drums)