Search found 25 matches
- 06 Jun 2013 19:54
- Forum: Projects
- Topic: HarmEx 2.0 released
- Replies: 6
- Views: 2462
Re: HarmEx 2.0 released
Thank you Hodari! Good idea... unfortunately, the project has reached a complexity that I find very difficult to handle given the current state of the Lemur desktop editor. (It's a pain in the ass tbh, having to deal with code all painted red because of an error without being given a hint what the ...
- 05 May 2013 07:36
- Forum: Projects
- Topic: HarmEx 2.0 released
- Replies: 6
- Views: 2462
Re: HarmEx 2.0 released
Thank you!
- 27 Apr 2013 22:09
- Forum: Projects
- Topic: HarmEx 2.0 released
- Replies: 6
- Views: 2462
HarmEx 2.0 released
New and improved in Version 2.0 - Chord Matrix for managing chord notes and chord progressions - FatMo Midi input monitor displaying incoming chords and melody notes/intervals - Rewritten Chordbank and Progressionsequencer now allowing for 16 progressions * 10 Chords triggered in up to 20 sequences ...
- 05 Apr 2013 05:14
- Forum: Projects
- Topic: HarmEx 1.4 released
- Replies: 2
- Views: 954
Re: HarmEx 1.4 released
Thanks alot for letting me know! I've fixed the file, had difficulties uploading a screenshot and messed it all up
- 04 Apr 2013 20:18
- Forum: Projects
- Topic: HarmEx 1.4 released
- Replies: 2
- Views: 954
HarmEx 1.4 released
Changes in this version: Contacting the author: - you can now contact me directly, see the email adress mentioned in the manual Redesigned Interface: - scale pads are now located at the bottom of the screen for a more traditional layout and easier jamming - scale change buttons removed, chord ...
- 02 Apr 2013 09:39
- Forum: Troubleshooting
- Topic: hard times with time
- Replies: 9
- Views: 1693
Re: hard times with time
I have a variable defined: t1 = floor(time/minutes*bpm*quarters) t2 = empty I have an onframe Event where I do if (t1 != t2) { t2 = t1; ... do the sequencing stuff } The resolution of the timing depends on the bpm and quarters settings. I don't think that omitting t1 and calculating the complete ...
- 02 Apr 2013 09:27
- Forum: General Discussion
- Topic: Smart guitar with Lemur?
- Replies: 3
- Views: 1107
Re: Smart guitar with Lemur?
I'd suggest using 6 horizontal rows of multipads, simulating 6 strings with each pad representing a fret or note. Add some extra controls for articulations and you're done :). Damn it, if I had more time I'd do it myself, I've had Vir2's Electri6ity installed for quite some time without using it ...
- 01 Apr 2013 16:58
- Forum: Troubleshooting
- Topic: hard times with time
- Replies: 9
- Views: 1693
Re: hard times with time
[...] However, the capability to be reasonably accurate should be there, 60FPS means a frame every 16.7ms, 30FPS means 33.4ms, so I guess you could run an onFrame Script that said "if time is greater than the expected time that this note should fire, fire the note and reset its expected firing time ...
- 01 Apr 2013 08:11
- Forum: Troubleshooting
- Topic: hard times with time
- Replies: 9
- Views: 1693
Re: hard times with time
It doesn't work without external clock, just tried it using a Monitor attached to midi_clocks, it gives you a vector of zeroes that don't change at all. Would be a nice feature though to have a single clock source both running free on its own and beeing syncable if required.
- 31 Mar 2013 11:05
- Forum: Troubleshooting
- Topic: hard times with time
- Replies: 9
- Views: 1693
Re: hard times with time
Probably yes, my mistake, I had thought that the midi clock only works when it's fed with an external clock signal. I'll try that, thanks for the tip. Yet I'd like to understand the difference between assigning a time calculation at designtime vs assigning it at runtime (in a script) and why the ...