Posted August 29, 20231 yr Hi! Is there a function like merge-voices that would work for omn sequences with articulations? If I merge two sequences with merge-voices containing articulations they are lost in the merging process.
September 4, 20231 yr Try creating omn material, naming it with setf and then combining with (append x y z ...) (setf m1 (make-omn :pitch p :length l :articulation a)) (setf m2 (make-omn :pitch p2 :length l2 :articulation a2)) (append m1 m2)
September 5, 20231 yr Author Hi! Thanks for your help. However, I don't want to append two sequences, one after the other. Instead, I would like to merge them vertically, as merge-voices does. But that function, when applied to omn sequences that contain articulations, erases them. That's why I am looking for an alternative.
Create an account or sign in to comment