Jump to content

Stephane Boussuge

Moderators
  • Posts

    1,057
  • Joined

  • Last visited

Everything posted by Stephane Boussuge

  1. Hi, Zoom into OM 4: gen-filter-euclidean is online now. Best ! Stéphane
  2. Hi Zvony, unfortunately I don't know where the score is and I was not able to found it ... Sorry. Best ! Stéphane
  3. Better doc: CLHS: Function FLOOR, FFLOOR, CEILING, FCEILING... WWW.LISPWORKS.COM
  4. Here's the doc: Simplified Common Lisp reference - round JTRA.CZ
  5. 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.
  6. 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
  7. 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.
  8. 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
  9. 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
  10. 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.
  11. All works fine here, I've just copied your code into a new file and Evaluate score to notation . SB. J111 question.mp4
  12. 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
  13. Hi folks , the new Zoom into OM video session is now online: Best Stéphane
  14. 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
  15. 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.
  16. 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
  17. 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.
  18. 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
  19. 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
  20. Hi Julio, I think you have to refresh the page because I've changed the YouTube link, normally, now it works. Here's the Opmo score. SB. Flixbus-V1-1.opmo
  21. On Saturday, January 14, I start a new free Zoom into Opusmodus series on composerworkshop.com This course is an every week zoom into Opusmodus, focusing on a specific point or technique each week, providing to audience a better understanding and practical view of using Opusmodus for music composition. Composer Workshop WWW.COMPOSERWORKSHOP.COM Best wishes, Stephane Boussuge
  22. Hi, here's a new piece composed during a (long) travel by Bus. It's made basically from 11 cells assembled and varied with the help of OM counterpoint function. SB.
  23. Sorry, the function euclidean-rhythms was one of my personal functions. Attached, you will find the function definition file. SB. euclidean-rhythms.lisp
  24. Dear Torsten, about Cluster Engine, have you got some plans to implement this wonderful tool into the new Opusmodus V3 ? as well as your great others libraries like Fenv and others ? Best Stéphane
×
×
  • Create New...

Important Information

Terms of Use Privacy Policy