Csound Csound-dev Csound-tekno Search About

[Csnd] [OT?] Driving MIDI synth from a python program.

Date2012-04-28 23:22
FromTobiah
Subject[Csnd] [OT?] Driving MIDI synth from a python program.
I bought 'Reaktor', which seems pretty nifty.  I'm just
starting to look into the docs.  One of the first things
that came to my mind was how I'd get a python program to
drive it, I suppose to send MIDI events to it.  Moreover,
I'd like to operate as I do with Csound where I just
create the score then let it run.  I suppose I could
use csound for this as always, but just have it send
the MIDI on to the Reaktor program.  Would that be possible?

MIDI in itself bothers me, because it is bound so heavily
to 12 equal steps in an octave.  I can send pitch bend, but
that in itself is awkward and can not be applied to individual
notes.  I could wrap midi note + pitch bend in a python function
in order to specify raw frequency as I am accustomed (I imagine
that this is how the soundfont opcode does it) but the
individual tuning of individual notes seems as though it is
difficult.

Thanks,

Tobiah

Date2012-04-29 00:48
FromMichael Gogins
SubjectRe: [Csnd] [OT?] Driving MIDI synth from a python program.
I used to use Reaktor sometimes. At that time, it supported OSC. Perhaps it still does. You might look in the documentation or on their Web site for hints about that.

Another possibility is VST. Reaktor at that time was both standalone and a VST plugin. If it still is that, you could write a host that would encapsulate the sending of pitch in a way more suited to your needs. The VST MIDI event has 2 fields. One is the MIDI key, and one is detune (integral values plus or minus 63 cents). But that might not be precise enough for you.

I found Reaktor was pretty good and there were actually a number of people posting patches for it that were algorithmic compositions.

Regards,
Mike

On Sat, Apr 28, 2012 at 6:22 PM, Tobiah <toby@tobiah.org> wrote:
I bought 'Reaktor', which seems pretty nifty.  I'm just
starting to look into the docs.  One of the first things
that came to my mind was how I'd get a python program to
drive it, I suppose to send MIDI events to it.  Moreover,
I'd like to operate as I do with Csound where I just
create the score then let it run.  I suppose I could
use csound for tReghis as always, but just have it send
the MIDI on to the Reaktor program.  Would that be possible?

MIDI in itself bothers me, because it is bound so heavily
to 12 equal steps in an octave.  I can send pitch bend, but
that in itself is awkward and can not be applied to individual
notes.  I could wrap midi note + pitch bend in a python function
in order to specify raw frequency as I am accustomed (I imagine
that this is how the soundfont opcode does it) but the
individual tuning of individual notes seems as though it is
difficult.

Thanks,

Tobiah


Send bugs reports to the Sourceforge bug tracker
          https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"




--
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com

Date2012-04-29 18:56
FromTobiah
SubjectRe: [Csnd] [OT?] Driving MIDI synth from a python program.
> VST MIDI event has 2 fields. One is the MIDI key, and one is detune
> (integral values plus or minus 63 cents). But that might not be precise
> enough for you.

Ah, that would be quite precise enough for most things.  Now, I haven't
looked into the VST opcodes extensively, but am I to understand that
I'd be able to express this per-note detuning using the VST for csound
opcodes?  That would put me where I'd like to be.

Thanks,

Tobiah

Date2012-04-29 23:15
FromMichael Gogins
SubjectRe: [Csnd] [OT?] Driving MIDI synth from a python program.
Yes. The vst4cs code converts Csound pitches in real-valued MIDI key numbers into VSTEvent integer-valued MIDI key number and detune in cents. This only works if the hosted plugin understands detune to be cents, but I think they do.

Regards,
Mike

On Sun, Apr 29, 2012 at 1:56 PM, Tobiah <toby@tobiah.org> wrote:
VST MIDI event has 2 fields. One is the MIDI key, and one is detune
(integral values plus or minus 63 cents). But that might not be precise
enough for you.

Ah, that would be quite precise enough for most things.  Now, I haven't
looked into the VST opcodes extensively, but am I to understand that
I'd be able to express this per-note detuning using the VST for csound
opcodes?  That would put me where I'd like to be.


Thanks,

Tobiah


Send bugs reports to the Sourceforge bug tracker
          https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"




--
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com

Date2012-04-30 02:20
FromTobiah
SubjectRe: [Csnd] [OT?] Driving MIDI synth from a python program.
On 4/29/2012 3:15 PM, Michael Gogins wrote:
> Yes. The vst4cs code converts Csound pitches in real-valued MIDI key
> numbers into VSTEvent integer-valued MIDI key number and detune in
> cents. This only works if the hosted plugin understands detune to be
> cents, but I think they do.

I made a score using floating point MIDI key values between
60 and 61.  Using a couple of random free synths from the net
along with the Akoustik piano from Native instruments, each
event delivered either 60 or 61, with nothing in between.

Using Kontakt, and Absynth from Native Instruments, I got
no sound at all, unless I delivered an integer note number.

Thanks,

Tobiah