-
Posts
875 -
Joined
-
Last visited
Content Type
Forums
Events
Store
Video Gallery
Posts posted by JulioHerrlein
-
-
-
Thank you, David.
I used many functions from Opusmodus in the piece !
Happy 2024 !
-
Thanks, Janusz !
-
Video about 5-note voicings with drop-voicing function (in portuguese)
- jesele, Stephane Boussuge and opmo
-
3
-
Interesting. Both the notations are correct, but I prefer the second most. The first could be achieved by (3h 3q tie 3q 3h).
My solution in the moment was to change the time sig to 2/4 (then the triplets appeared right) and then changing back to 4/4 in musescore. Fortunately it was a simple thing... The problem is when you have multiple time signature changes and have to change all manually...
Best !
-
Dear friends,
How can I get my tuplets as the second way (all like the bar 2) ?
The code is the same (3h), but yields different results...
Thanks !
Julio
((3h c4 e4 g4 h c4e4g4b4 ) (-q q c5 3h a4 g4 e4))
-
Maybe using the windows file explorer to sort...
-
-
-
I´m using multiple workspace files.
A good idea would be to have the possibility to sort the opmo files by date (recent to old and vice versa).
Sometimes I have difficulty to find my files (I have too many...). But I´d like to find the ones I worked recently, so a good thing would be to sort by date.
Is it possible ?
Best,
Julio
-
Dear Etu,
The midi works differently in Mac. Actually, Mac can share the midi drivers among different softwares.
In Windows, once a midi driver is used by one application, it can´t be used by other application.
So, I helped Janusz and the team of programmers to develop a different approach for Windows systems.
With this option for selecting inputs and outputs, you can manage to map the midi inputs and outputs to
match the best option for your system.
For example, I have the hardware controllers input drivers going in the input of Reaper, that also hosts all my sound libraries and other VSTs.
From Reaper I configured the output of just my little keyboard midi controller to input in Opusmodus, via the loopback software.
In Mac you can map everything using the MIDI/Audio studio configuration inside OSX.
All the best,
Julio Herrlein
-
Dear All,
I think there is a much needed basic function in Opusmodus:
a function to perform diatonic transposition, like
(pitch-transpose-to-set (1) '(c4 d4 e4) :set '(c4 major)) result: (d4 e4 f4) (pitch-transpose-to-set (2) '(c4 d4 e4) :set '(c4 major)) result: (e4 f4 g4) (pitch-transpose-to-set (1) '(c4 d4 e4) :set '(d4 major)) result: (cs4 e4 fs4) (pitch-transpose-to-set (2) '(c4 d4 e4) :set '(cs4 whole-tone) :round up) result: (cs4 ds4 f4)
It could be also have the possibility of being octave independent in relation to the set, like
(pitch-transpose-to-set (1) '(c2 d6 e5) :set '(c4 major) :octave-free t) result: (d2 e6 f5)
Actually, the diatonic transposition (or transposition by any other set) is a more sophisticated thing than the simple transposition.
And I think that is an essential function for music.
I know that is possible to make it via tonality-map but I miss a more easier way to apply the idea over existing material.
Best !
P.S. If this function already exist, please let me know.
-
Dear Cliff,
I finished the book in October 2022. Now, it´s in the revision and translation stage, according to Marco and Janusz.
Looking forward ! The plan is to release in the same publishing house of the first Opusmodus book.
All the best ! Thanks for the interest.
-
Try to install a FOXIT PDF reader (it´s free) and make it your default PDF reader. Hope it helps.
Free PDF Reader & Viewer - Online Download | Foxit Software
WWW.FOXIT.COM
The best free PDF reader & viewer used by over 700 million users. Download Foxit PDF Reader for Windows, Mac, Android & more today! -
Thanks, Stephane !!
Is there some documentation about it ?
Very good to know.
Best,
Julio
-
Dear friends,
I got the result
(z^w c2 z^h c4 q g5 g5 z^h d4 q g5 g5)
in this operation, using André´s function. What is the meaning of z and ^ in the OMN language ?
THanks,
best,
Julio
-
Thanks, Janusz
There is a lot of impact of using this in the notation indeed, specially when editing for the publishing work. The example provided in the beginning of this post is about this.
I´ll try to make a function or use search/replace in order to do this .
-
There is any form to aply the :merge-ties only to a selected range of lengths ? (only in longer notes, for example ?).
The time signature is irrelevant in this case, only to separate the lists... Best Thanks
-
Dear All,
Still trying to deal with this...
Help is appreciated. Thanks
;;; Question How to use DICTUM to filter the use of omn-to-time-signature ? ;;; MAterial (setf vl1 '((-s) (e. gs4 s as4 h. e4 tie) (h e4 d4 tie) (q d4 e ds4 s fs4 hs b4 tie) (h b4 s gs4 g4 a4 qs c5 tie) (q c5 s as4 e a4 cs4 e. d4 d4 s) (w g4 tie) (q g4 h. d5) (e b4 s g4 h.s f4 tie) (q f4 s ds4 e4 f4 hs fs4) (s c5 e as4 ds5 e. cs5 fs4 s g4 q fs4 tie) (w fs4) (h. g4 e gs4 s a4 d5 tie) (w d5) (s b4 g4 a4 hs s gs4 e as4 s e4 tie) (s e4 e. d4 ds4 s fs4 h b4 tie) (h. b4 q gs4 tie) (h gs4 e g4 s a4 qs c5 tie) (h. c5 s as4 a4 cs4 d4 tie) (h d4 s e e g4 e. d5))) ;;; Filter works rigth in this example: pitch transposing only long notes (dictum '((:range (h w.) :apply (pitch-transpose -24 x)) ) vl1) ;;; I´d like to aply this merge-ties nil only to the longer notes, not in the entire example. Can I use DICTUM as a filter to apply only in longer notes ? (omn-to-time-signature vl1 '((2 4 2) (4 4 1) (2 4 8) (1 4 1)) :merge-ties nil) ;;; HOW ??? ;;; This won´t work... What I missed ? (dictum '(:range (h w.) :apply (omn-to-time-signature vl1 '((2 4 2) (4 4 1) (2 4 8) (1 4 1)) :merge-ties nil)))
-
Dear All,
Please, help !
;;; Question How to use DICTUM to filter the use of omn-to-time-signature ? ;;; MAterial (setf vl1 '((-s) (e. gs4 s as4 h. e4 tie) (h e4 d4 tie) (q d4 e ds4 s fs4 hs b4 tie) (h b4 s gs4 g4 a4 qs c5 tie) (q c5 s as4 e a4 cs4 e. d4 d4 s) (w g4 tie) (q g4 h. d5) (e b4 s g4 h.s f4 tie) (q f4 s ds4 e4 f4 hs fs4) (s c5 e as4 ds5 e. cs5 fs4 s g4 q fs4 tie) (w fs4) (h. g4 e gs4 s a4 d5 tie) (w d5) (s b4 g4 a4 hs s gs4 e as4 s e4 tie) (s e4 e. d4 ds4 s fs4 h b4 tie) (h. b4 q gs4 tie) (h gs4 e g4 s a4 qs c5 tie) (h. c5 s as4 a4 cs4 d4 tie) (h d4 s e e g4 e. d5))) ;;; Filter works rigth in this example: pitch transposing only long notes (dictum '((:range (h w.) :apply (pitch-transpose -24 x)) ) vl1) ;;; I´d like to aply this merge-ties nil only to the longer notes, not in the entire example. Can I use DICTUM as a filter to apply only in longer notes ? (omn-to-time-signature vl1 '((2 4 2) (4 4 1) (2 4 8) (1 4 1)) :merge-ties nil) ;;; HOW ??? ;;; This won´t work... What I missed ? (dictum '(:range (h w.) :apply (omn-to-time-signature vl1 '((2 4 2) (4 4 1) (2 4 8) (1 4 1)) :merge-ties nil)))
-
Looks perfect now, Janusz !
No more hanging notes.
Best !
Julio
-
Dear Janusz,
I experienced the hanging of notes when evaluating the Zvony Pluton file above in both of my windows computers. The notebook and the desktop.
The hanging of the notes occur when pausing the notation editor. When rewinding the notation player the notes are still hanging until the cursor pass from the point where stopped.
Possibly this means that some note off information is missing when the pause is pressed.
All the best !
Julio
The port was set to IGNORE PORTS
-
Yes, Janusz
With other files all seems to work ok !
I did exported it from musescore. Maybe musescore export with some different header.
All is ok in this beautiful Opusmodus Version !
Now the PDFs are permiting copy.
The audio going to VLC player is not a problem at all.
Best !
Julio
-
Yes, probably windows stuff.
I have no problems with notation viewer and live coding player. Everything works great except the the midi player.
Also
1) when navigating to the media content at the (M) button of the workspace the aiff files are launched in my system player instead of the Opusmodus Lispworks interface player. I have VLC player installed.
2) when navigating the documentation, the documents appear to be inside my FOXIT pdf reader (my favorite free reader installed). So I need to right-click and set it to read mode. Windows does not have a default pdf reader when system is installed. Do you recommend some reader. Actually I like the appearance of FOXIT reader + Opusmodus but I have to change to read mode every time I need to copy code from the docs.
Best,
Julio
Eclat pour petit ensemble
in Made In Opusmodus
Posted
Beautiful !
Any chance to get the code ?
Happy 2024, Stephane !