Jump to content

opmo

Administrators
  • Posts

    2,869
  • Joined

  • Last visited

Everything posted by opmo

  1. In the Listener you will see two values, but only the first one is the true output: (setf num (rnd-round 1 15)) num 12
  2. 2.0.25746 TONALITY-MAP – sort and root fix. At the moment there are two versions of Opusmodus app, one for macOS 10.15 (Catalina) and one for macOS 10.9 - 10.14 due to Apple Xcode bug. Best wishes, Janusz
  3. The score How-to in 100sec (5) works. You can find the original score next to the video. In your score parenthesis was missing. I would consider improving the style of your code. In doing so you will find your own typos (errors) much quicker. (setf mychords '( (q eb3g3bb3) (q c3eb3g3) (q c3eb3ab3) (q f3ab3c4) (q g3b3d4) (q a3c4e4) (q b3eb4gb4) (q g3c4e4) (q c3g4e5c5) (q d3a4d5f5) (q g2b4d5f5) (q c3g4c5e5) (q a2a4c5e5) (q fs2fs4a4c5) (q g2g4b4d5) (q a2fs4a4d5) (h b3ds5fs5a4) (h e3e4g4b4) )) (choralis mychords :rotation -1 :ambitus '(bass tenor alto soprano) :index 'v :interval 8 :path nil :seed 1282 :methods '( :sop ((ls (3 4)) (dyn)) ;; parenthesis was missing :alt ((d4 (1 2 3 4))) :ten ((ri (3 4))) :bass ((ri (3 4))) ) :edit '( :sop (((h e4 f4) (e a4 c5 c5 fs5 g5 d5 a5 d5)) (3 4)) :alt ((e c4 e4 c4 d4 c4 d4 f4 e4) 3) :ten ((-w) 3) :bass ((h g2 q a2 b2) 3) ) ) (ps 'gm :satb (list v1 v2 v3 v4) :tempo 60)
  4. In the Forums Downloads you will find the version for the licence you own. If you can't unlock your app again please let us know.
  5. You have serial number, therefore you and not Demo user. What is the problem. What version licence you own: 1.3 or 2.0 Send me your serial number by email (not here) and I will have a look on our server how many licences you have registered.
  6. Place the curser at the end of the expression and press return key. After you can call the last score with control-option-command-1 - this shortcut will play and display the last evaluated score. Use port 0 in the DEF-SCORE: (def-score choralis1 ( :key-signature 'chromatic :time-signature '(4 4) :flexible-clef nil :tempo 60 :layout (choir-satb-layout 'v1 'v2 'v3 'v4) ) (v1 :omn v1 :channel 1 :port 0) (v2 :omn v2 :channel 2) (v3 :omn v3 :channel 3) (v4 :omn v4 :channel 4) )
  7. CHORALIS script is not the usual OMN script. Only one chord can be used with addition lengths in a list. Every function needs to be understand how it works and what are the options doing.
  8. Look s like you made some edit to the score that produces the error. First I will start with the tutorials and the OMN language this will help you to move forwards.
  9. The port numbers are 0-based, therefore the "IAC1" port = 0, "Bus 2" = 1 etc... Use numbers instead of "names".
  10. Not all of them are IAC ports. Please show me your screenshot of your IAC Drives:
  11. what is your setup (the output): (midi-destinations)
  12. The PS (Preview Score) is for preview your work in progress. Here you can't set the ports, but you can create and define your own instrument-set - the PS and the DEF-INSTRUMENT-SET document explains How-To. The default port setup in the Preferences/Audition is for snippets only. Using ports in DEF-SCORE: (setf chords '((w c4e4g4) (h g4b4d5) (h c4e4g4) (-h) (q e4g4b4 q) (q a4c5e5 mp leg q leg) (q g4b4d5 leg) (q f4a4c5) (w d4f4a4) (w a4cs5e5 mf) (-q) (q d4f4a4 q q) (q a4c5e5) (h c4e4g4) (h d4f4a4) (q d4fs4a4 leg q leg q) (h g4b4d5 h) (-q) (q bb4d5f5 q q) (w eb4g4bb4) (-q) (q c4eb4g4 q) (q g4bb4d5) (h c4eb4g4) (h bb4d5f5) (w f4a4c5 h) (-q) (q d4fs4a4) (q g4bb4d5 q q q) (h d4fs4a4 h) (-q) (q g4bb4d5) (h c4eb4g4) (h g4bb4d5) (h d4fs4a4 h) (h. g4bb4d5) (-q) (w g4bb4d5) (h d4f4a4 h) (-q) (q a4c5e5) (q a4c5e5) (q a4c5e5) (h c4eb4g4) (h c4eb4g4) (h g4bb4d5) (q g4bb4d5) (q g4bb4d5) (h d4f4a4) (h d4f4a4) (-q) (q d4f4a4 mf) (q a4c5e5 f) (q d4f4a4 p) (h. b4d5fs5 p) (q d4f4a4 mp) (q f4a4c5 q q q) (w e4g4b4) (h a4c5e5) (-h) (h d4fs4a4) (q d4fs4a4 q) (h g4b4d5) (h g4b4d5) (h e4g4b4) (q e4g4b4) (q e4g4b4) (h. c4e4g4) (q c4e4g4) (h f4a4c5) (q f4a4c5) (q bb4d5f5) (h. g4b4d5) (q c4e4g4) (h a4cs5e5) (h d4f4a4) (q g4b4d5) (q d4fs4a4) (w g4b4d5 p) (w g4b4d5 pp))) (choralis chords :rotation 1 :index 'v :interval 8 :path '? :seed 826083 :methods '( :sop ((t5 6) (t-4 (31 32) (3 1)) (t-12 32 2)) :ten ((t4 (31 32) (3 1))) :bass ((t-12 (1 2 3)) (t-12 4 (1 2))) ) ) (def-score choralis1 ( :key-signature 'chromatic :time-signature '(4 4) :flexible-clef nil :tempo 60 :layout (choir-satb-layout 'v1 'v2 'v3 'v4) ) (v1 :omn v1 :channel 1 :port 0) (v2 :omn v2 :channel 2) (v3 :omn v3 :channel 3) (v4 :omn v4 :channel 4) )
  13. 2.0.25744 - Out Now – Fixed: RHYTHM-LAYOUT – note placement (:lines 1). COUNTERPOINT – methods. CHORALIS – when shorts path returned NIL. HARMONIC-PROGRESSION – step sequence. Print - score right alignment. Use the direct Download link from the Forums menu.
  14. (setf thema '(s c4 leg d4 leg e4 leg f4 q g4 ff stacc)) (setf thema-repeat (gen-repeat 24 (list thema))) (setf scales '((c4 d4 e4 fs4 gs4 a4 b4) (c4 d4 eb4 f4 g4 ab4 bb4))) (setf path (tonality-series scales :closest '(down))) (setf thema-harm (tonality-map path thema-repeat)) LIST was missing: (list thema)
  15. opmo

    Default Sound

    You can change the snippet audition Port in the Preferences:
  16. Remove the old 'Load CLM Instruments.lisp' file from your Opusmodus/Extensions folder and replace with the new one. The new file you will find in the Opusmodus/CLM folder.
  17. Example please. No. Integer (number) can't be variable.
  18. You need Opusmodus 2.0 to run on macOS 10.15.4
×
×
  • Create New...

Important Information

Terms of Use Privacy Policy