-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Populating / editting MIDI clip? ( maybe even modulations and automations? ) #4
Comments
You're absolutely right, this is not yet implemented ;( |
@stufisher would you mind guiding me a bit on how to implement that? I'm very confused, on how the implementation would be possible, at a first look it seems to be that editing Is there a "generic function" or way of implementing such a function so i could send "RAW Messages" to live, for instance creating the Thanks a lot for your help |
Hey hems, did you ever figure out how to send midi signals to live with this? |
@LeapGamer nope.. end up giving up on this.. i think perhaps there is other ways that would be less of a mess to achieve similar results! |
I've added basic support (get, add, remove) for note editing in #10. Up next is automation/envelopes, and hopefully some way of getting the time signature of the song or clip to help with displaying note timing/durations. |
Hi,
You can get the clips time signatures via clip LOM-object's
"signature_denominator" and "signature_numerator" properties
(get/set/changed). The same properties exist on Song-object as well.
Automations are documented to be available for only session clips. Those
are gotten as AutomationEnvelope -instances via clip's
automation_envelope(DeviceParameter) -method. Apparently the
AutomationEnvelope -instances only give you two methods, insert_step and
value_at_time, which seems a bit limited.. As well, the MidiCC-automations
seem inaccessible, which would be very unfortunate.
I guess you're using this API
http://www.julienbayle.net/PythonLiveAPI_documentation/Live9.6.xml already,
or reading the current API from Live -module (there are some changes in
9.7.2).
…-juho
On Sun, Jul 2, 2017 at 12:52 PM, Carlos Cerrillos ***@***.***> wrote:
I've added basic support (get, add, remove) for note editing in #10
<#10>.
Up next is automation/envelopes, and hopefully some way of getting the
time signature of the song or clip to help with displaying note
timing/durations.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AUGg8mcV7QgwTVqH46BNsytfXcRqwTDmks5sJ2hVgaJpZM4KIJe->
.
|
Is it possible to create a MIDI clip with notes inside using the standard functions already implemented through LiveOSC2 ?
i can see set_notes on the doc
but i fail to find a way of creating a midi clip using LiveOSC2 ?
Thank you
The text was updated successfully, but these errors were encountered: