Jump to content

Stephane Boussuge

Moderators
  • Posts

    1,062
  • Joined

  • Last visited

Everything posted by Stephane Boussuge

  1. Hi Tom, indeed, I've got this problem from few days now. I informed my son who is the admin of the website, he investigate actually to find the cause of this. Really sorry. Stéphane
  2. The windows version is coming soon. And yes, Nigel Morgan was a most excellent man, I agree totally. SB.
  3. Hi, normally, if you name your IAC-Port-1 Bus 1, you can send midi to this port from OM using :port "Bus 1" inside the score. Generally it is better to use named port because actually Bus 1 could be :port 0 but if you plug some other midi devices to your computer, this order could change, that's the reason why it is better to use named ports. Best ! Stéphane
  4. Hi Zvony, waiting the revision of pitch-variation function, you could use mapcar function to do that or also OM function gen-process: (setf chords (gen-repeat 4 '((c4e4g4 d4f4a4 g4b4d5)))) (assemble-seq (mapcar(lambda(x y z ch) (pitch-variation x y z ch)) '(0 2 1 2) '(0 1 1 0) '(2 3 4 3) chords ) ) (assemble-seq (gen-process '(pitch-variation a b c d) '((0 2 1 2)(0 1 1 0)(2 3 4 3) chords) ) ) Best ! S.
  5. Hi, Zoom into OM 4: gen-filter-euclidean is online now. Best ! Stéphane
  6. Hi Zvony, unfortunately I don't know where the score is and I was not able to found it ... Sorry. Best ! Stéphane
  7. Better doc: CLHS: Function FLOOR, FFLOOR, CEILING, FCEILING... WWW.LISPWORKS.COM
  8. Here's the doc: Simplified Common Lisp reference - round JTRA.CZ
  9. May be this can help a bit, I've tried this: (setf bass '(g2 c3 a2 e3 fs3)) (setf bassint (pitch-to-integer bass)) ;=> (-17 -12 -15 -8 -6) ;;; create a set of integers from interpolation ;;; between bass integers (bassint), ;;; then convert those to pitches (defun linear-interpolation (numbers steps) (let ((interpolated-numbers nil)) (loop for i from 0 below (- (length numbers) 1) for number = (nth i numbers) for next-number = (nth (1+ i) numbers) do (loop for j from 0 to steps do (push (+ (* (- next-number number) (/ (float j) steps)) number) interpolated-numbers) ) (push next-number interpolated-numbers)) (filter-repeat 1 (nreverse interpolated-numbers)))) (setf n-steps 4) (setf new-ints (mapcar 'round (linear-interpolation bassint n-steps))) (setf melody (integer-to-pitch new-ints)) (setf sop (filter-tie (make-omn :pitch (pitch-transpose 24 melody) :length '(e) :span :pitch ))) (setf bas (make-omn :pitch bass :length '(h) :span :pitch )) (ps 'gm :fl (list sop) :bn (list bas) :time-signature '(4 4)) SB.
  10. If you want to learn how to do a piece in less than one year with Opusmodus, I recommend my Online course: Introduction to Opusmodus (level 1) – Composer Workshop WWW.COMPOSERWORKSHOP.COM This course is an introduction to Opusmodus, going from interface discovery to music composition using the powerful functions of this incredible music composition environment. <h3>Who this course is for</h3> This course is for people who want to learn algorithmic music composition and generative music techniques. No prior programming experience needed but basic knowledge of music is recommended for... Best ! Stéphane
  11. Just to add an info, if it could help, you can force any chord to start on a pitch by using the function pitch-transpose-start… S.
  12. It works now, I've made an error with the shop system, all this is a bit new for me, but I'm learning and it works now. Best Stéphane
  13. Hi dear Opusmoduser, I've just added a new video course on composerworkshop.com about using Virtual Instruments with OM. http://www.composerworkshop.com Best ! Stéphane
  14. I'm offering to you 20mn of my time through a zoom session to help you to solve this problem. Please contact me at boussuge@opusmodus.com to arrange for the details. SB.
  15. All works fine here, I've just copied your code into a new file and Evaluate score to notation . SB. J111 question.mp4
  16. Hi Cliff, the files were added in new sections of the part 1 and last part of the course in "Resources" lessons. Best Stéphane
  17. Hi folks , the new Zoom into OM video session is now online: Best Stéphane
  18. Hi Cliff, The files will be available soon this week-end on the Composer workshop website. (Only accessible for people who already bought the course.) All the best ! Stéphane
  19. Hi Cliff, Thank you very much, I'm already working on a new pack of videos I hope to release soon. We already know the delay between videos but I've got the same experience on very famous Online learning platform with much more budget and technical facilities than me, so I suppose it comes from the plugin itself and may be not easy to improve. Anyway, I've sent your remarks to my website admin, we will see what we can do and if we can improve. Happy Opusmodusing SB.
  20. Hi David, the video is at the bottom of the main page, in the "Ou last videos" section: I'm working on the next one Best ! Stéphane
  21. Hi folks, I'm very happy to announce the release of the first video pack lesson "Introduction to Opusmodus" on composerworkshop.com. Composer Workshop WWW.COMPOSERWORKSHOP.COM This introduction start with a quick "Crash course" to dive quickly into the software to get fun rapidly. The second and third parts of this course goes more deeper into the exploration of the basics of Opusmodus like pitch generation, length generation, using MAKE-OMN, etc... This is an introductory course to our beloved software. I'm working now on future courses packs on a bunch of different subject. Naturally, the free Zoom into Opusmodus series continue with a weekly video release. Happy Opusmodusing ! SB.
  22. Dear all, the video of the fist Zoom into OM is now online. In future, the Zoom into OM will be only in video format delivered every weekend. Best Stéphane
  23. Thank you for your support, The video of the session will be soon available. In future, the Zoom into Opusmodus sessions will be released only in video format, I think live is not mandatory and videos are more easy to do and to control regarding the quality. But I will keep the 1 Zoom every weekend release rhythm Happy Opusmodusing ! Stéphane
×
×
  • Create New...

Important Information

Terms of Use Privacy Policy