All Activity
- Yesterday
-
quinsin joined the community
- Last week
-
Looks like the test variable was use with different data. Bug report needs to be reproducible.
-
After restarting OM it works fine here too, can I see from the error warning if it's worth to restart the program.. ( I discovered it more accidentally that a restart helps)?
-
opmo started following omn-to-time-signature??
-
Hi, When I use omn-to-time-signature with (4 4), everything is fine: (setf test '(w fs5 q. e5 d5 q c5 e c5 h. b4 e a4 h a4 e q. gs4 q. gs4 e fs4 h e4 h e4 q. d4 e c4 h c4 e e fs5 q e5 e e5 q. d5 h c5)) (omn-to-time-signature test '(4 4)) =>((w fs5) (q. e5 d5 q c5) (e c5 h. b4 e a4) (h a4 e q. gs4) (q. gs4 e fs4 h e4) (h e4 q. d4 e c4) (h c4 e e fs5 q e5) (e e5 q. d5 h c5)) but when I use (5 4)or (3 4): (omn-to-time-signature test '(5 4)) => when called with arguments: > (nil) > While executing: #<ccl::st
-
Interested in continuing Zoom into OM on own expenses?
Stephane Boussuge replied to o_e's topic in Zoom into Opusmodus
You can have a look on that page: https://opusmodus.com/forums/lessons/ -
Interested in continuing Zoom into OM on own expenses?
MarcCodron replied to o_e's topic in Zoom into Opusmodus
Hello Stephane, Thank you for your message. Yes, I appreciate your proposal, just let me know further about it, Marc Thanks ! -
YiyangW joined the community
-
Mauricio joined the community
-
Interested in continuing Zoom into OM on own expenses?
Stephane Boussuge replied to o_e's topic in Zoom into Opusmodus
Hi Marc, I've stopped now the Zoom into OM but you can still take private lessons with me et en Français Stéphane -
Interested in continuing Zoom into OM on own expenses?
o_e replied to o_e's topic in Zoom into Opusmodus
We are just finished a serie of 10 lessons. Maybe you could gather some other new participants and start a new serie, you could contact Stéphane Boussuge via PM and ask him if he is interested and what his conditions are..? best ole -
MarcCodron started following Opusmodus and Emacs-Slime Setup and Interested in continuing Zoom into OM on own expenses?
-
Interested in continuing Zoom into OM on own expenses?
MarcCodron replied to o_e's topic in Zoom into Opusmodus
Interested to participate, Best -
o_e reacted to a post in a topic: find-bar..
-
opmo started following Opusmodus 2.1.26235, find-bar.., find-everyother?? and 1 other
-
Is fixed already with FT function inside - next update. (ft '(1 3 6..9 11)) => (1 3 6 7 8 9 11) (ft '0..12) => (0 1 2 3 4 5 6 7 8 9 10 11 12) (ft '0..-12) => (0 -1 -2 -3 -4 -5 -6 -7 -8 -9 -10 -11 -12) (ft '(1 3 6..9 11)) => (1 3 6 7 8 9 11) (ft '(0..12 11..0)) => (0 1 2 3 4 5 6 7 8 9 10 11 12 11 10 9 8 7 6 5 4 3 2 1 0)
-
i know i'm not a programmer, but it probably makes sense to be able to enter both variants/formats for some functions, but not for others...
-
exactly that's what I've shown in my first post But most of the function work as well with an 'naked' integer as with a quoted list, and like this it is described in the doc of 'find-bar'. I assume it should be consistent among the functions, thats why I've pointed it out..
-
you have to put the bar-numbers into a list... i makes sense in my opinion - perhaps you want to "find" more then one bar... (find-bar '(1 2) mat) => ((c4 db4 ab4 f4 g4 bb4) (a4 eb4 b4 e4 d4 gb4))
-
I know this is only a (very) minor issue, nevertheless I'd like to know if I'am the only one having this problem.. Thanks!
- Earlier
-
o_e reacted to a post in a topic: find-everyother??
-
Hi, I'am examing find-bar and I don't get the following: ;from the docs: (setf mat '((c4 db4 ab4 f4 g4 bb4) (a4 eb4 b4 e4 d4 gb4) (db4 ab4 f4 g4 bb4 a4) (eb4 b4 e4 d4 gb4 c4))) (find-bar 1 mat) => Error: The value (1) is not of the expected type number. > While executing: ccl::+-2-into, in process Listener-1(7). > Type cmd-. to abort, cmd-\ for a list of available restarts. > Type :? for other options. ;this works fine: (find-bar '(1) mat) =>((c4 db4 ab4 f4 g4 bb4)) ?? best ole
-
Fixed in 2.1.26237
-
Found it in the meantime, thanks! (gen-divide 2 (flatten (find-everyother 2 '(((1 2) (3 4) (5 6) (7 8)) ((1 2) (3 4) (5 6) (7 8) (9 10) (11)))))) =>((1 2) (5 6) (1 2) (5 6) (9 10))
-
Thanks! Do you can propose a workaround until the next update, by chance?
-
It flatten the lists after I added the events here. Will add a condition to fix this.
-
Assembling Long Streams of generated material
JulioHerrlein replied to JulioHerrlein's topic in Function Examples
Looks great, Janusz ! The new functions omn-dictum looks great. I´m going to investigate this. Thank you ! -
JulioHerrlein reacted to a post in a topic: Assembling Long Streams of generated material
-
Assembling Long Streams of generated material
opmo replied to JulioHerrlein's topic in Function Examples
Depends on what you want to do with the generated material. Useful function: unfold, omn-dictum, find-bar, position-item, position-replace, position-swap Many functions allow you to edit selected bars: :section (numbers) (pprint-last-score) could help as well with bar numbers. Enable 'Bar Number Display' in the Preferences/Notation -
Hi, The doc states: ;Note the handling of further nested sublists: (find-everyother 2 '(((1 2) (3 4) (5 6) (7 8)) ((1 2) (3 4) (5 6) (7 8) (9 10) (11)))) => (((1 2) (5 6)) ((1 2) (5 6) (9 10))) when I evaluate it I get: (find-everyother 2 '(((1 2) (3 4) (5 6) (7 8)) ((1 2) (3 4) (5 6) (7 8) (9 10) (11)))) =>((1 2 5 6) (1 2 5 6 9 10)) What am I missing or how can I achive the upper example? Thanks! ole
-
– New Function: BAR-TO-SEC - converts bar span to seconds values. – Revision: OMN-DICTUM - changed to dictum grammar, additional functionality – Fixed: OMN-REPLACE - ignored tie attribute when edition articulations. OMN-DICTUM (revision) (:all <value>) replaces all values of its type with a new value. (<value><value>) replaces a value with a new one if found. ((:values <values>) <value>) replaces values with a new one if found. (:remove <value>) removes a value from the sequence if found. (
-
Dear Friends, I´m seriously doing a composition for String Quartet now. I was procastinating it for more than one year, but now I´m really finding good results that could be part of a composition. The question is that I generate some VERY LONG (sometimes 200 bars) of material and, inside this stream I´d like to use ONE or TWO measures of this particular stream, and more 6 measures generated by other process, interpolate some Free material in between, and so on. In general, this is the expression I use to compile each voice of the quartet: vh1 (VL), vh2 (VL2)
-
torstenanders reacted to a post in a topic: Microtonal notations
-
Ah, great. I just noted that this was already documented and I simply missed it. So, thanks for sharing -- very much appreciated! I hope I soon find some time to play with this! Best, Torsten