Skip to content
View in the app

A better way to browse. Learn more.

Opusmodus Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Interval/Pitch-Based Articulation

Featured Replies

A sketch: I generate noise and define a list of intervals (or pitches) that is applied to the noise pitches. Whenever one of these intervals (or pitches) is detected, its dynamic is changed to fff. This creates a form of articulation that is determined by the intervallic structure.

(setf intervals  '(-2 -1 1 2 5 -5))


(setf seq
 (loop repeat 200
       with alist = (filter-repeat 1 (vector-to-pitch '(a3 g5) (gen-noise  300)))
       with cnt = 0 
         
       when (memberp (car (pitch-to-interval (list (nth cnt alist)
                                             (nth  (1+ cnt) alist))))
                     intervals)

         append (make-omn :pitch (list (nth cnt alist)
                                       (nth  (1+ cnt) alist))
                          :length '(1/16 1/16)
                          :velocity '(fff fff))
         and do (incf cnt 1)
         

       else append (make-omn :pitch (list (nth cnt alist))
                             :length '(1/16)
                             :velocity '(ppp))
         
       do (incf cnt)))


(omn-list-plot seq :join-points t)

  • Author

Example with pitches (not intervals)


(progn 
(setf pitches (make-scale 'c4 12))

(setf seq
      (loop repeat 300
            with alist = (filter-repeat 1 (vector-to-pitch '(c4 c5) (gen-noise  400)))
            for cnt = 0 then (incf cnt)
            with cnt2 = 0 
              
            when (= (pitch-to-midi (nth cnt alist))
                    (pitch-to-midi (nth cnt2 pitches)))
                
              append (make-omn :pitch (list (nth cnt alist))
                               :length '(1/16)
                               :velocity '(fff))

              and do (incf cnt2)

              
            when (= cnt2 (length pitches))
              do (setf cnt2 0)
              
            else append (make-omn :pitch (list (nth cnt alist))
                                  :length '(1/16)
                                  :velocity '(p)))))


(omn-list-plot seq :join-points t)

  • AM changed the title to Interval/Pitch-Based Articulation

Create an account or sign in to comment


© 2014-2026 Opusmodus™ Ltd. All rights reserved.
Product features, specifications, system requirements and availability are subject to change without notice.
Opusmodus, the Opusmodus logo, and other Opusmodus trademarks are either registered trademarks or trademarks of Opusmodus Ltd.
All other trademarks contained herein are the property of their respective owners.

Powered by Invision Community

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.