Strudelify

Pink Cadillac

Bruce Springsteen

KeyE majorTempo128 bpm
0:00/0:00
// Pink Cadillac — Bruce Springsteen
// 127.5 bpm, 4/4, key E major. Source: midi.
// Generated by strudelify. One cycle = one bar.
// note: pitch bends are ignored
// note: Full arrangement: all 117 bars on a 16-step grid, each part at one level. Source detail keeps the original performance.
setcpm(127.5/4)

// Notation: c3@3 lasts 3 steps · ~ is a rest · [...]/2 spreads a riff over 2 bars.
// A part's distinct bars are riffs (A, B, C...) played in order: edit a riff to change every repeat.

// bass · electric bass finger
const bass = note(`<
  ~ A@12 B@4 A@4 C@4 A@4 B@2 A@2 C@2 A@12 B@4 A@4 C@4 A@4 B@2 A@2 C@2 A@14 B@4 A@4 C@4 A@4 B@2 A@2 C@2 A@9 D@3
>`.pickRestart({
  A: "e1!2 g#1 e1 a1 e1 a#1 b1", B: "a1!2 c#2 a1 d2 a1 d#2 e2", C: "b1!2 d#2 b1 e2 b1 f2 f#2",
  D: "[e1 g#1 b1 e2 ~@2 e1@16 ~@2]/3",
})).s("gm_electric_bass_finger").gain(0.46)

// other · baritone sax
const baritone_sax = note("<~@70 A@5 ~@31 B@8 ~@3>".pickRestart({
  A: "[~@14 d3@13 ~ c#3@2 b2@4 ~@2 e2@2 e2@2 e2@2 e2@2 ~@2 d3@13 ~ c#3@2 b2@6 ~@12]/5",
  B: "[~@14 d3@13 ~ c#3@2 b2@4 ~@12 d3@13 ~ c#3@2 b2@4 ~@12 d3@13 ~ c#3@2 b2@4 ~@12 d3@13 ~ c#3@2 b2@2]/8",
})).s("gm_baritone_sax").gain(0.46).pan(0.4)

// drums · kick
const kick = s("bd").struct("<~ [x ~@3 x!2 ~@2]!35 [x ~@2 x!2 ~@3] [x ~@3 x!2 ~@2]!77 [x!4 ~@2 x ~] [~@13 x ~@2] ~>")
  .gain(0.41)

// drums · snare
const snare = s("sd").struct("<~ [~ x ~ x]!35 [~@2 x ~@2 x!2 ~] [~ x ~ x]!77 [x ~@2 x ~@2 x ~] ~@2>").gain(0.41)

// drums · low tom
const low_tom = s("lt").struct("<~@114 [~ x ~@2] [~@12 x!2 ~@2] ~>").gain(0.41)

// drums · hihat
const hihat = s("hh").struct("<[x!3 ~] [x!8]!113 ~@3>").gain(0.31)

// drums · mid tom
const mid_tom = s("mt").struct("<~@114 [x ~ x!2 ~@12] [~@11 x!2 ~@3] ~>").gain(0.41)

// drums · crash
const crash = s("cr").struct("<~@25 A ~@11 A ~@21 A ~@35 A ~@18 B ~@2>".pickRestart({
  A: "x", B: "~@3 x",
})).gain(0.46)

stack(bass, baritone_sax, kick, snare, low_tom, hihat, mid_tom, crash)

More by Bruce Springsteen