Strudelify
Journey To The Center Of The Mind cover art

1968 · Loaded For Bear

Journey To The Center Of The Mind

The Amboy Dukes

KeyA majorTempo148 bpm
0:00/0:00
// Journey To The Center Of The Mind — The Amboy Dukes
// 148 bpm, 4/4, key A major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(148/4)

const chords = arrange(
  // intro (16 bars)
  [16, "<A!2 C!2 A!2 C!2 A!2 C!2 A!2 C!2>"],
  // solo (14 bars)
  [14, "<A!2 C!2 A!2 C!2 A!2 C!2 A E>"],
  // verse (8 bars)
  [8, "<E!4 D!2 E!2>"],
  // chorus (7 bars)
  [7, "<A [C@2 B Bb] A [C@2 B Bb] A [C@2 B Bb] B>"],
  // verse (8 bars)
  [8, "<E!4 D!2 E!2>"],
  // chorus (7 bars)
  [7, "<A [C@2 B Bb] A [C@2 B Bb] A [C@2 B Bb] B>"],
  // bridge (15 bars)
  [15, "<E!4 C#m A F# E C#m A F# Bsus B!3>"],
  // solo (14 bars)
  [14, "<A!2 C!2 A!2 C!2 A!2 C!2 A E>"],
  // interlude (8 bars)
  [8, "<A5 E5 A5 E5 A5 E5 A5 E>"],
  // chorus (7 bars)
  [7, "<A [C@2 B Bb] A [C@2 B Bb] A [C@2 B Bb] B>"],
  // verse (22 bars)
  [22, "<E!4 D!2 E!2 D!2 E!4 A!2 C!2 A!2 C!2>"],
  // fadeout (8 bars)
  [8, "<A!2 B!6>"],
)
const bassline = arrange(
  [16, "<a2!2 c2!2 a2!2 c2!2 a2!2 c2!2 a2!2 c2!2>"],
  [14, "<a2!2 c2!2 a2!2 c2!2 a2!2 c2!2 a2 e2>"],
  [8, "<e2!4 d2!2 e2!2>"],
  [7, "<a2 [c2@2 b2 bb2] a2 [c2@2 b2 bb2] a2 [c2@2 b2 bb2] b2>"],
  [8, "<e2!4 d2!2 e2!2>"],
  [7, "<a2 [c2@2 b2 bb2] a2 [c2@2 b2 bb2] a2 [c2@2 b2 bb2] b2>"],
  [15, "<e2!4 c#2 a2 f#2 e2 c#2 a2 f#2 b2!4>"],
  [14, "<a2!2 c2!2 a2!2 c2!2 a2!2 c2!2 a2 e2>"],
  [8, "<a2 e2 a2 e2 a2 e2 a2 e2>"],
  [7, "<a2 [c2@2 b2 bb2] a2 [c2@2 b2 bb2] a2 [c2@2 b2 bb2] b2>"],
  [22, "<e2!4 d2!2 e2!2 d2!2 e2!4 a2!2 c2!2 a2!2 c2!2>"],
  [8, "<a2!2 b2!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)