Posts posted by o_e
-
-
-
Hi,
I just wanted to make use of the string quartet score layout and copied the following from layout into my def-score:
:layout (string-ensemble-layout '(violin-1 violin-2) 'viola 'cello ())
that throws the following error:
Error: Too few arguments in call to #<Compiled-function string-ensemble-layout #x3000014660AF>: > 3 arguments provided, at least 4 required. > While executing: string-ensemble-layout, in process Listener-1(8). > Type cmd-. to abort, cmd-\ for a list of available restarts.
what am I missing?
And where are the score templates listed above e.g. where do I find string-quartet.opmo?
best
ole
-
-
is this useful?
;;; piano phase steve reich beginning bars (setf pitches '(e4 fs4 b4 cs5 d5 fs4 e4 cs5 b4 fs4 d5 cs5)) (setf phase (make-omn :length '(1/16) :pitch pitches :span :pitch)) ;;; piano1 (assemble-seq (gen-repeat 4 phase)(gen-repeat 28 phase)) ;;; piano2 (assemble-seq '(-12/16)(gen-repeat 28 phase);in the 28 repetitions the second piano gradually ;shifts so that after 28 repetitions it is a 16th note later e.g. the f-sharp (second pitch) ;is sounding together with the e (first pitch) from the 1. piano ;tempo q.=72
May be like that:
(setf phrase1 (gen-repeat 24 '((16/128 d4 fs4 gs4 b4 a4 fs4 gs4 e4)))) (setf phrase2 (gen-repeat 24 '((8/63 d4 fs4 gs4 b4 a4 fs4 gs4 e4)))) (def-score phases (:time-signature '(4 4) :key-signature 'atonal :tempo 132) (p1 :omn phrase1 :channel 1 :sound 'gm :program 0) (p2 :omn phrase2 :channel 2 :sound 'gm :program 0))Hi Stephane,
I just listened to your example, sounds like it is the direction I would like to go. Thanks!
How did you come up with the length-values, can you explain a little?
best
ole
-
Hi,
I want an effect like when bells ringing or two mechanical metronomes are started together- the are together (rhythmical unison) than getting out of phase than coming together again..
There are many pieces who make use of such a technique: Ligetis Piece for 100 Metronomes, Phase Music by Steve Reich, many Conlon Nancarrow Pieces..
How can these little ongoing displacements be programmed in OM?
thanks,
ole
-
-
-
Hi,
I want the following rhymical structure of tied length values ( see attached .jpg). When I write it like this:
(setf laengen-oben-zwei '((q. e tie) (q 3q 3q_3q_q. e tie) (q. e_h tie) (e q._h)))
the ties are ignored by the mapping
see:
(setf laengen-oben-zwei '((q. e tie) (q 3q 3q_3q_q. e tie) (q. e_h tie) (e q._h))) (setf toene-oben-zwei '(c4 d4 e4 fs4 gs4 bb4)) (make-omn :length laengen-oben-zwei :pitch toene-oben-zwei)
how can I express the length-values so that the ties are taken in account?
thanks for a hint!
best
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Hi,
This seems to be a rather simple problem but I can't find a solution myself:
I have a list of 16th notes and 16th rests and I want to make sublists every nth 16th (note or rest),
like so:
(setf list '(1/16 1/16 -1/16 1/16 1/16 1/16 -1/16 1/16 1/16 -1/16 1/16 1/16 1/16 -1/16 1/16 1/16 1/16 -1/16 1/16 1/16 1/16 1/16 1/16 -1/16)) (make-sublists '4 list) -> ((1/16 1/16 -1/16 1/16) (1/16 1/16 -1/16 1/16) (1/16 -1/16 1/16 1/16) (1/16 -1/16 1/16 1/16) (1/16 -1/16 1/16 1/16) (1/16 1/16 1/16 -1/16))thanks for hints,
best
ole
-
Templates & Layout
in Score and Notation
Ahh, thanks a lot!