-
Is it possible to export a om# score into openmusic, in order to be able to export it to other formats? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
There is currently no OM# -> OM export possibilities unfortunately 😞 |
Beta Was this translation helpful? Give feedback.
-
@j-bresson is there some documentation on the format of OM# objects, like voices? I would like to try to generate the code in haskell or supercollider. It's totally possible with OM objects, I believe with the correct information, it won't be a problem to implement it with OM#. Just point out to me where to find it. For OM objects, I could, for example, try this as a Haskell module (using quasiquotations in this case):
|
Beta Was this translation helpful? Give feedback.
OM# storage format is supposed to be fairly readable: you can look at it by creating a simple patch with the object, and open the patch file as text (you can use the File / "Open as Text…" menu to do that within OM#).
In order to get the formatted content of just a specific object, you can connect it to
omng-save
: this is the function called internally to format the contents in text files. You can then route the output ofomng-save
to aTEXTBUFFER
and usesave-as-text
to export!