Fork of vvopensource with MIDI timestamps and OSC service type option #7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
Firstly, big thanks for your work on vv, I've found it real useful in my own project! In working on that project (it's a sequencer for OSX) I made this fork with a few updates to vvopensource – just thought I would send it over and see if it's of interest. No problem if it doesn't fit with your plan, I can keep it separate.
The main changes I've made are:
MIDI messages always get sent with a timestamp
I was actually kind of surprised this wasn't done already, as many people would consider it an invalid message to do so (although most software won't care)
You can specify that timestamp
This means you can schedule MIDI messages ahead of time (in my sequencer app I have a 10ms buffer) to make sure they get there exactly when they should.
OSC service type can be specified
This was fairly unique to my use case. I'm working with the monome hardware which for some reason shows up as '_monome-osc._udp' rather than the usual '_osc._udp' I'm guessing it could be useful in other cases too though.
Note
I'm not an iOS developer so I haven't checked that side of it to see if I broke anything :)
So yeah take a look and let me know what you think!
Mark