[Csnd] midi driven event instrument..
Date | 2010-02-19 14:33 |
From | Rory Walsh |
Subject | [Csnd] midi driven event instrument.. |
The following csd is crashing whenever I trigger instr 1 with my mdi keyboard: |
Date | 2010-02-19 14:44 |
From | Victor Lazzarini |
Subject | [Csnd] Re: midi driven event instrument.. |
It is a bug with the --midi-** options. You need to 'consume' p4 and p5 (say i1 = p4 and i2 = p5) and then it does not crash. Or remove the options. Thanks for the report. Victor On 19 Feb 2010, at 14:33, Rory Walsh wrote: > |
Date | 2010-02-19 14:46 |
From | Rory Walsh |
Subject | [Csnd] Re: Re: midi driven event instrument.. |
Thanks for the speedy reply. On 19 February 2010 14:44, Victor Lazzarini |
Date | 2010-02-19 14:49 |
From | Iain McCurdy |
Subject | [Csnd] RE: midi driven event instrument.. |
Hi Rory, If you remove --midi-key=4 --midi-velocity-amp=5 (which aren't used anyway) from your CsOptions it doesn't crash. Alternatively if you add p4, p5 onto the event_i line it won't crash either. Obviously it's not ideal that event_i is fussy like this. Bye, Iain > From: rorywalsh@ear.ie > Date: Fri, 19 Feb 2010 14:33:44 +0000 > To: csound@lists.bath.ac.uk > Subject: [Csnd] midi driven event instrument.. > > The following csd is crashing whenever I trigger instr 1 with my mdi keyboard: > > <CsoundSynthesizer> > <CsOptions> > -M1 --midi-key=4 --midi-velocity-amp=5 -m0d > </CsOptions> > <CsInstruments> > ; Initialize the global variables. > sr = 44100 > ksmps = 32 > nchnls = 2 > > massign 0, 1 > > instr 1 > event_i "i", 2, 0, 10 > endin > > instr 2 > a1 diskin2 "one.wav", 1, 0, 0 > outs a1, a1 > endin > > </CsInstruments> > <CsScore> > f0 3600 > </CsScore> > </CsoundSynthesizer> > > I've tested both instruments separately and they work fine. This is > the error I get: > > writing 512-byte blks of shorts to dac > SECTION 1: > Csound tidy up: Segmentation violation > pm_winmm_term called > begin closing open devices... > > I'm running Csound 5.11 on windows. > > > Send bugs reports to this list. > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" Not got a Hotmail account? Sign-up now - Free |
Date | 2010-02-19 14:53 |
From | Iain McCurdy |
Subject | [Csnd] RE: RE: midi driven event instrument.. |
Ahh, 'lightning' Lazzarini got there first... From: i_mccurdy@hotmail.com To: csound@lists.bath.ac.uk Date: Fri, 19 Feb 2010 14:49:43 +0000 Subject: [Csnd] RE: midi driven event instrument.. Hi Rory, If you remove --midi-key=4 --midi-velocity-amp=5 (which aren't used anyway) from your CsOptions it doesn't crash. Alternatively if you add p4, p5 onto the event_i line it won't crash either. Obviously it's not ideal that event_i is fussy like this. Bye, Iain > From: rorywalsh@ear.ie > Date: Fri, 19 Feb 2010 14:33:44 +0000 > To: csound@lists.bath.ac.uk > Subject: [Csnd] midi driven event instrument.. > > The following csd is crashing whenever I trigger instr 1 with my mdi keyboard: > > <CsoundSynthesizer> > <CsOptions> > -M1 --midi-key=4 --midi-velocity-amp=5 -m0d > </CsOptions> > <CsInstruments> > ; Initialize the global variables. > sr = 44100 > ksmps = 32 > nchnls = 2 > > massign 0, 1 > > instr 1 > event_i "i", 2, 0, 10 > endin > > instr 2 > a1 diskin2 "one.wav", 1, 0, 0 > outs a1, a1 > endin > > </CsInstruments> > <CsScore> > f0 3600 > </CsScore> > </CsoundSynthesizer> > > I've tested both instruments separately and they work fine. This is > the error I get: > > writing 512-byte blks of shorts to dac > SECTION 1: > Csound tidy up: Segmentation violation > pm_winmm_term called > begin closing open devices... > > I'm running Csound 5.11 on windows. > > > Send bugs reports to this list. > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" Not got a Hotmail account? Sign-up now - Free Do you want a Hotmail account? Sign-up now - Free |
Date | 2010-02-19 14:54 |
From | Rory Walsh |
Subject | [Csnd] Re: RE: midi driven event instrument.. |
I don't mind how fussy it is so long as there is a workaround. I didn't see this info in the manual? Rory. On 19 February 2010 14:49, Iain McCurdy |
Date | 2010-02-19 15:30 |
From | Victor Lazzarini |
Subject | [Csnd] Re: RE: RE: midi driven event instrument.. |
I read the word 'bug' and can't wait to check out... :) On 19 Feb 2010, at 14:53, Iain McCurdy wrote:
|
Date | 2010-02-19 15:31 |
From | Victor Lazzarini |
Subject | [Csnd] Re: Re: RE: midi driven event instrument.. |
I guess it's not event_i that is the culprit here, but the midi flags. It seems to be a nasty bug. Victor On 19 Feb 2010, at 14:54, Rory Walsh wrote: > I don't mind how fussy it is so long as there is a workaround. I > didn't see this info in the manual? > > Rory. > > > On 19 February 2010 14:49, Iain McCurdy |