Jump to content

Recommended Posts

Inspired by the example from this thread but I could not find the related function been shipped with the OM application.

 

The code requires OM3.0 because of LispWorks specific API but the concept should be simple enough to be implemented in Clozure CL.

 

After some midi objects has been compiled and inserted to the playlist one can use run-playlist to start play. While it is still playing one

can feed more midi objects queued to the playlist. When the playlist is empty and after the specified seconds of timeout, the player process would exit.

 

(setq midi1 (compile-score 'score1))
(setq midi2 (compile-score 'score2))
(setq midi3 (compile-score 'score3))

(defparameter *playlist* (mp:make-mailbox))

(defun push-to-list (item)
  (let ((midi (cond ((eq (type-of item) 'midi:midi)
                     item)
                    ((symbolp item)
                     (compile-score item))
                    ((or (stringp item) (pathnamep item))
                     (midi:read-midi-file item)))))
    (mp:mailbox-send *playlist* midi)))

(defun run-playlist (&key (timeout 5) (ignore-ports nil))
  (mp:process-run-function
   "Playing..." ()
   (lambda ()
     (loop
        (let ((current (mp:mailbox-read *playlist* "Wait for feed tracks" timeout)))
          (if current
              (mp:process-join (start-midi current :ignore-ports ignore-ports))
            (return)))))))

(push-to-list midi1)
(push-to-list midi2)

(run-playlist 5)

(push-to-list midi3)

 

Link to comment
Share on other sites

Ok I have change push-to-list a bit so it would either compile the core, use the midi object, or read from a file.

 

(defun push-to-list (item)
  (let ((midi (cond ((eq (type-of item) 'midi:midi)
                     item)
                    ((symbolp item)
                     (compile-score item))
                    ((or (stringp item) (pathnamep item))
                     (midi:read-midi-file item)))))
    (mp:mailbox-send *playlist* midi)))

 

 

Link to comment
Share on other sites

thanx, that's great!!!.... there is only one problem (but you don't have to solve it for me): the port/channel-settings are deleted 🙂  so only the internal midiplayer is playing, and no other midi-destinations via preseted port/channels (in the midi-file) are possible...?

 

(i'm working on a generative-live-scoring project (open forms) and with OPMO i can generate/simulate different generative-grammars of my "musical material" (organzied/read as/from an array). so your solution would be very practical to develop and test the "form-grammar" of the work - THANX!!)

Link to comment
Share on other sites

17 minutes ago, AM said:

the port/channel-settings are deleted

 

(setf *audition-ignore-ports* nil) should do the trick

 

However, let me make a further modification so you can set it as an argument to the call to play lists.

 

(defun run-playlist (&key (timeout 5) (ignore-ports nil))
  (mp:process-run-function
   "Playing..." ()
   (lambda ()
     (loop
        (let ((current (mp:mailbox-read *playlist* "Wait for feed tracks" timeout)))
          (if current
              (mp:process-join (start-midi current :ignore-ports ignore-ports))
            (return)))))))

;; example call
(run-playlist :timeout 2 :ignore-ports t)

(run-playlist) ; won't ignore port settings now

 

 

If you have more ideas one how this should be improved please let me know.

Link to comment
Share on other sites

thx for your work - but the ports are always changed to "internal" - but you don't have to try any further, the (score player)-function (OPMO) has the same problem, will certainly be "repaired" sometime...

 

greetings

andré

 

 

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