Stephane Boussuge Posted August 22, 2024 Posted August 22, 2024 Hi friends, I've just posted a new video in video section, illustrating my way to use OM. Here's the link: And here's the scores attached to this post. Best wishes to all and happy Opusmodusing ! Etude1Edit2.pdf Etude1.opmo Remap-velocity.lisp rea-mark.lisp RST, jesele, opmo and 1 other 4 Quote
RST Posted August 23, 2024 Posted August 23, 2024 Looking forward to studying this! Thank you, Stephane!! Quote
acrawnsley Posted August 26, 2024 Posted August 26, 2024 Really helpful. The articulation mapping used here is excellent, will definitely be playing around with this method. Stephane Boussuge 1 Quote
Stephane Boussuge Posted August 28, 2024 Author Posted August 28, 2024 just added the source code for missing function rea-mark. opmo and JulioHerrlein 1 1 Quote
HenryT Posted September 27, 2024 Posted September 27, 2024 I tried to change rehearsal marks from numbers to letters. This is the advice from ChatGPT: 'reha is now put into right places, you can see it in omn, but there are no rehearsal marks in xml. Is there a bug with 'reha? Thanks for help! Näyttökuva 2024-09-27 kello 12.00.36.pdf Quote
Stephane Boussuge Posted September 27, 2024 Author Posted September 27, 2024 Doing the following test, I think maybe there's something wrong in rehearsal marks excepted "reh" who seems to be the only working one. We will check. (setf test '((q c4 mf reh d4 e4 f4) (q c4 mf reha d4 e4 f4) (q c4 mf reha-b d4 e4 f4) (q c4 mf rehn d4 e4 f4) (q c4 mf rehn-8 d4 e4 f4))) (ps 'gm :treble (list test)) Quote
opmo Posted September 27, 2024 Posted September 27, 2024 Numerical: starting number: reh+rehn-1 after reh (setf test '((q c4 mf reh+rehn-1 d4 e4 f4) (q c4 mf reh d4 e4 f4) (q c4 mf reh d4 e4 f4) (q c4 mf reh d4 e4 f4) (q c4 mf reh d4 e4 f4))) (ps 'gm :treble (list test)) Alphabetic: starting letter: reh+reha-a after reh (setf test '((q c4 mf reh+reha-a d4 e4 f4) (q c4 mf reh d4 e4 f4) (q c4 mf reh d4 e4 f4) (q c4 mf reh d4 e4 f4) (q c4 mf reh d4 e4 f4))) (ps 'gm :treble (list test)) Stephane Boussuge 1 Quote
Stephane Boussuge Posted September 28, 2024 Author Posted September 28, 2024 Ah thank you very much for the clarification ! Quote
HenryT Posted September 28, 2024 Posted September 28, 2024 This works in simple examples, but when put into Stephane's Etude, inside rea-mark, rehearsal numbers or letters do not show up in the same measures with tempo markings, which, I presume, has been the intention. The displacement begins on number 4 or letter D. From that on rehearsal number or letter comes 1 measure before tempo marking. First 'reh+reha-a and after that reh...reh... gives numbers, not letters. First 'reh+reha-a and after that reh+reha...reh+reha... gives letters. Some places for letters remain empty. So, in any case there is a basic problem of displacement of rehearsal marks and tempo markings to the same measure. Quote
Stephane Boussuge Posted September 28, 2024 Author Posted September 28, 2024 Yes, that's look logical. My function was made to deal only with basic reh. Personnaly if I need more advanced edit of the marks, I do it in my score editor. Quote
HenryT Posted September 28, 2024 Posted September 28, 2024 Yes, everything goes eventually to Dorico, and numbers can be easily changed to letters. That's not a big deal. But there remains an uncertanty: where does a new section begin? I have the impression that tempo markings are the decisive factor, and rehearsal number, if there is a difference, should be moved to the same measure with tempo marking. Is that right? Quote
Stephane Boussuge Posted September 28, 2024 Author Posted September 28, 2024 1 hour ago, HenryT said: Yes, everything goes eventually to Dorico, and numbers can be easily changed to letters. That's not a big deal. But there remains an uncertanty: where does a new section begin? I have the impression that tempo markings are the decisive factor, and rehearsal number, if there is a difference, should be moved to the same measure with tempo marking. Is that right? Yes you are right, the tempo marking are the reference. Best Stephane Quote
HenryT Posted September 28, 2024 Posted September 28, 2024 Thank you for your answers! There are very interesting things happening in Etude. Makes one think differently! Henry Stephane Boussuge 1 Quote
opmo Posted September 29, 2024 Posted September 29, 2024 I don't see any problems here. Example with Alphabetic markings: (setf mat '((5q eb6 reh+reha-a 5e e6 pp ped bb6 ped -5h.) (5q e5 pp ped bb5 f -5h.) (7q e5 ppp ped 7e bb5 f ped e5 mp ped 7q f5 pp b5 ff - cs6 mf eb6 pp) (7q d5 pp reh - e5 ff eb5 f d5 mf cs5 ped =) (7q d6 f ped 7h cs6 ff 7q c6 mp 7q. cs6 pp ped c6 mp) (7q fs6 mf ped+reh g6 mp ped fs6 p ped g6 ped 7q. fs6 f g6 p) (7q fs6 f -7h 7q c6 pp 7q. fs6 mp g6 mf))) (def-score reh-test (:key-signature 'chromatic :time-signature '(1 4) :tempo '((120 2) (88 1) (44 2) (88 1))) (ins :omn mat :channel 1 :sound 'gm :program 'acoustic-grand-piano)) In Stephane Etude score the markings are placed as they should. Quote
HenryT Posted September 29, 2024 Posted September 29, 2024 I noticed that I had two versions of rea-mark, one in Extensions and other one added to the beginning of Etude score. I redownloaded everything (Etude, rea-mark and remap-velocity) and put rea-mark and remap-velocity into Extensions. Rea-mark is now set up like this (is this correct?). Same problems as before... rea-mark.lisp Quote
Stephane Boussuge Posted September 29, 2024 Author Posted September 29, 2024 You just need to have rea-mark function evaluated somewhere . If it is in your extension, it’s fine. I added it to the file just to help people if someone don’t know where to put the function. But naturally, if you want to modify this function, you should take care and evaluate the one you modified. about the misalignment sometimes between marks and tempo changes, as i said before, the tempo changes are the master, so you can adjust things accordingly. It is also possible to add manually the rehearsal marks after the generation. But on Opusmodus side, rehearsal marks work’s fine. If you want, we can do a (free) zoom video meeting tomorrow together to discuss this score. Quote
HenryT Posted September 29, 2024 Posted September 29, 2024 I understand. I now have only one instance of rea-mark, which is in extensions, and that's what I've been modifying. But it doesn't add reh+reha-a into the first measure. I'm getting only numbers, two of the numbers are missing, and in most cases rehearsal number comes one measure before the tempo-marking. Four rehearsal numbers are correctly placed. Is rea-mark set up right: on first line reh+reha-a, on next line reh? Like the example in earlier example? Quote
Stephane Boussuge Posted September 29, 2024 Author Posted September 29, 2024 My function was made to deal only with reh, not the other types because it adds complexity in the definition of the function and i just wanted to see where new iterations appears. Using other kind of rehearsal marks is possible manually or by defining a new function for that but i don’t have time for that actually. For my purposes, the simple function was sufficient. Quote
HenryT Posted September 29, 2024 Posted September 29, 2024 Ok, I was already used to the thought that I should add markings manually sometimes, but then Opmo turned again the knife in my wound Thanks, Henry Stephane Boussuge 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.