Jump to content

PAT MARTINO Idiomatic Jazz Lines Generator


Recommended Posts

This is for generating some jazz licks in the style of the LINEAR EXPRESSIONS, by jazz guitarist PAT MARTINO.

The rhythm slots of the example contain the same 16th value, but it can be worked out as Rhythmic Cells. I was testing straight 16th lines.

 

https://www.amazon.com/Linear-Expressions-Pat-Martino/dp/1423460898/ref=sr_1_1?ie=UTF8&qid=1539901867&sr=8-1&keywords=linear+expression+martino

 

;;; PAT MARTINO LINEAR Expressions Lick Generator JAZZ IDIOMS

   (setf r0 '(s)
	      r1 '(s s s s)
	      r2 '(s s s s s s s s)
              r3 '(s s s s)
              r4 '(s s s s)
              r5 '(s s s s s s s s)
              r6 '(s s s s s s s s)
              r7 '(s s s s s s s s)
              r8 '(s s s s s s s s)
              r9 '(s s s s s s s s)
              r10 '(s s s s s s s s))
	(setf p0 '(g3 a3 bb3 c4 cs4 d4 f4 d4)
	      p1 '(e4 fs4 g4 a4 c5 a4 bb4 d5)
	      p2 '(f5 a5 ab5 e5 g5 f5 e5 d5)
 	      p3 '(c5 a4 bb4 d5 a4 bb4 a4 g4)
              p4 '(a3 bb3 d4 f4 a4 bb4 a4 ab4)
              p5 '(g4 a4 bb4 c5 d5 f5 a5 c6)
              p6 '(bb5 d5 f5 a5 g5 gb5 f5 g5)
              p7 '(e5 f5 e5 d5 c5 a4 g4 a4)
              p8 '(d4 e4 fs4 a4 fs4 g4 a4 c5)
              p9 '(a4 bb4 d5 f5 a5 bb5 a5 ab5)
              p10 '(g5 f5 d5 ds5 e5 g5 bb5 d6))
	(setf v0 '(f)
	      v1 '(mp)
	      v2 '(f)
	      v3 '(pp)
	      v4 '(p f mf)
	      v5 '(fff)
              v6 '(fff)
              v7 '(mf)
              v8 '(p)
              v9 '(f)
              v10 '(ff))
	(setf sec (gen-repeat 10 (rnd-unique 12 '(0 1 2 3 4 5 6 7 8 9 10) 
              )))
	(setf r-list (assemble-section 'r sec))
	(setf p-list (assemble-section 'p sec))
	(setf v-list (assemble-section 'v sec))
	(setf phrases
	      (make-omn 
	       :length r-list
	       :pitch p-list
	       :velocity v-list))
	(def-score collage         
	            (:key-signature 'atonal
	             :time-signature '(2 4)
	             :tempo 144
	             :layout (piano-grand-layout 'piano))
	  (piano
	   :omn phrases
	   :channel 1
	   :sound 'gm
	   :program 0)
	  )

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

Terms of Use Privacy Policy