Strudelify
Living It Down cover art

1976 · Voices of Americana (The Crazy Cajun Recordings)

Living It Down

Freddy Fender

KeyC majorTempo83 bpm
0:00/0:00
// Living It Down — Freddy Fender
// 83 bpm, 4/4, key C major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(83/4)

const chords = arrange(
  // intro (4 bars)
  [4, "<C F C G7>"],
  // chorus (16 bars)
  [16, "<C C7 F!2 C D7 Dm7 G7 C C7 F [F@2 F#o7@2] C G7 F [C@2 G7@2]>"],
  // verse (16 bars)
  [16, "<C C7 F!2 C D7 Dm7 G7 C C7 F F#o7 C G7 F C>"],
  // chorus (16 bars)
  [16, "<C C7 F!2 C D7 Dm7 G7 C C7 F [F@2 F#o7@2] C G7 F C>"],
)
const bassline = arrange(
  [4, "<c2 f2 c2 g2>"],
  [16, "<c2!2 f2!2 c2 d2!2 g2 c2!2 f2 [f2@2 f#2@2] g2!2 f2 [c2@2 g2@2]>"],
  [16, "<c2!2 f2!2 c2 d2!2 g2 c2!2 f2 f#2 g2!2 f2 c2>"],
  [16, "<c2!2 f2!2 c2 d2!2 g2 c2!2 f2 [f2@2 f#2@2] g2!2 f2 c2>"],
)

// 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 Freddy Fender