Strudelify
Baby, You're Right cover art

1961 · Papa's Got A Brand New Bag

Baby, You're Right

James Brown

KeyD majorTempo64 bpm
0:00/0:00
// Baby, You're Right — James Brown
// 64 bpm, 4/4, key D major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(64/4)

const chords = arrange(
  // verse (4 bars)
  [4, "<D7!3 A7>"],
  // chorus (10 bars)
  [10, "<D7 [G7@2 E7@2]!5 D7 [G7@2 E7@2] [D7@2 A7@2]!2>"],
  // verse (4 bars)
  [4, "<D7!3 A7>"],
  // chorus (10 bars)
  [10, "<D7 [G7@2 E7@2]!5 D7 [G7@2 E7@2] [D7@2 A7@2]!2>"],
  // instrumental (4 bars)
  [4, "<D7!3 A7>"],
  // B (10 bars)
  [10, "<D7 [G7@2 E7@2]!5 D7 [G7@2 E7@2] [D7@2 A7@2]!2>"],
  // fadeout (6 bars)
  [6, "<[G7@2 E7@2]!6>"],
)
const bassline = arrange(
  [4, "<d2!3 a2>"],
  [10, "<d2 [g2@2 e2@2]!5 d2 [g2@2 e2@2] [d2@2 a2@2]!2>"],
  [4, "<d2!3 a2>"],
  [10, "<d2 [g2@2 e2@2]!5 d2 [g2@2 e2@2] [d2@2 a2@2]!2>"],
  [4, "<d2!3 a2>"],
  [10, "<d2 [g2@2 e2@2]!5 d2 [g2@2 e2@2] [d2@2 a2@2]!2>"],
  [6, "<[g2@2 e2@2]!6>"],
)

// 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 James Brown