Search found 47 matches

by strangeChild
Sat Nov 28, 2015 8:06 pm
Forum: General
Topic: Turning a micro computer system into MIDI device
Replies: 31
Views: 53290

Re: Turning a micro computer system into MIDI device

Sorry... i didn't mean the code from above but the concept of passing the messages you don't want to filter or treat...

def event i
m = @midiInput.to_array
if (m[0] == 144) || (m[0] == 128)
output Midi.new m[0],m[1],m[2],m[3] if m[2 ...
by strangeChild
Thu Nov 26, 2015 3:20 pm
Forum: General
Topic: Turning a micro computer system into MIDI device
Replies: 31
Views: 53290

Re: Turning a micro computer system into MIDI device

... I mentioned that streaming midi event (notes, pitchband, mode-wheel) through a Ruby based midi sequencer cause the pitchband and modewheel commands to disappear. If you try to connect your midi hardware straight to project's main midi output with an additional input link (to capture the ...
by strangeChild
Tue Nov 24, 2015 5:14 am
Forum: General
Topic: Turning a micro computer system into MIDI device
Replies: 31
Views: 53290

Re: Turning a micro computer system into MIDI device

I couldn't get my tablet's browser to translate the page... There's a contact page, try that.

When you say your plan is a Windows tablet... not sure how that would work if it a usb device instead of a host.

The external problem we've been talking about goes away, but I don't know if Flowstone ...
by strangeChild
Sat Nov 21, 2015 9:32 pm
Forum: General
Topic: Turning a micro computer system into MIDI device
Replies: 31
Views: 53290

Re: Turning a micro computer system into MIDI device

http://www.sevillasoft.es
There's a device on this page (in spanish) that looks like it's the very thing. Can't find any others besides the big box ones you already know about.
by strangeChild
Sat Nov 23, 2013 11:43 am
Forum: General
Topic: spaaaaaaaaaam!
Replies: 10
Views: 20889

Re: spaaaaaaaaaam!

I think they can turn off new users on SM... you can't even dl program anymore so why would there be new users?

Then they need to put up a better skull-testing question up here and change it once in a while. Maybe it could rotate randomly with each registration...
by strangeChild
Sun Nov 17, 2013 1:25 am
Forum: General
Topic: Input names in Ruby code?
Replies: 2
Views: 7974

Re: Input names in Ruby code?

Thanks... while I still don't understand everything about what's going on at least I know where to look.
by strangeChild
Sat Nov 16, 2013 6:23 pm
Forum: General
Topic: Input names in Ruby code?
Replies: 2
Views: 7974

Input names in Ruby code?

It's useful to be able to name connectors, not only for readability (so it's clear what the data represents)
but also because in the case of input connectors the label can be used within your Ruby code as a
variable or as a reference to an input.
That made perfect sense when I red it the first ...
by strangeChild
Sun Nov 03, 2013 9:18 pm
Forum: General
Topic: How to add guitar a like pickey attacks?
Replies: 8
Views: 18324

Re: How to add guitar a like pickey attacks?

you mean, this karplus thing is something else? Karplus Strong is a method of generating a sound. It takes a burst of noise or other complex sound and simplifies it over the duration of the envelope as it is fed-back through a delay.

My first post was three different suggestions.. which I did not ...
by strangeChild
Sun Nov 03, 2013 6:54 pm
Forum: General
Topic: How to add guitar a like pickey attacks?
Replies: 8
Views: 18324

Re: How to add guitar a like pickey attacks?

Actually joejoe's explanation is essentially what I was trying to say in my comments about using a low-pass scaled and tied to an envelope generator but he just did a much better job of it.

Karplus-Strong is a really cool algorithm for making plucky sounds but it's likely not what you were looking ...