[Csnd] how to allocate two different sounds via midi-key-number
Date | 2014-05-19 17:06 |
From | Stefan Thomas |
Subject | [Csnd] how to allocate two different sounds via midi-key-number |
Dear community, I want to allocate two different sounds to different midi-keys. My aim is to get one sound for the black and another sound for the white keys. I've started with the following code which works. But my question is: Is the maybe a more confortabe way to do this? If I use my method the if condition would be very long! Here is my code: <CsoundSynthesizer> <CsOptions> -odac -Ma -m0d </CsOptions> ; ============================================== <CsInstruments> sr = 44100 nchnls = 2 0dbfs = 1 gisine ftgen 0,0,2^13, 10, 1 alwayson 1 massign 0, 1 instr 1 iamp ampmidi 0.2 icps cpsmidi inotnum notnum iatt = 0.01 idur = 3 irel = 0.1 aenv linsegr 0,iatt,1,idur,0,irel,0 if ( (inotnum == 60) || (inotnum == 62) || (inotnum == 64) || (inotnum == 65) ) then aout poscil aenv*iamp,icps else aout rand aenv*iamp endif outs aout, aout endin </CsInstruments> ; ============================================== <CsScore> </CsScore> </CsoundSynthesizer> |
Date | 2014-05-19 17:10 |
From | Rory Walsh |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
You could save the note numbers in an array? That wouldn't bloat the code too much. On 19 May 2014 17:06, Stefan Thomas |
Date | 2014-05-19 17:22 |
From | Steven Yi |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
An array would be a good generic solution. For one specific to just black-key or white key, you might want to write a UDO that checks if a note num is a black key. Something like: opcode is_black_key, i, i inotenum xin ival = inotenum % 12 xout (ival == 1 || ival == 3 || ival == 6 || ival == 8 || ival == 10) endop On Mon, May 19, 2014 at 12:10 PM, Rory Walsh |
Date | 2014-05-19 17:25 |
From | mskala@ansuz.sooke.bc.ca |
Subject | Re: [Csnd] how to allocate two different sounds via |
On Mon, 19 May 2014, Stefan Thomas wrote: > Is the maybe a more confortabe way to do this? If I use my method the if > condition would be very long! Because the pattern of black and white notes repeats every 12 notes, you could take the note number modulo 12, and then test the result of that against five different values (for the black notes; anything else would be white), which should be a manageable size for the if condition. More concise ways of doing it are probably possible but might be harder to understand and thus create maintainability problems. -- Matthew Skala mskala@ansuz.sooke.bc.ca People before principles. http://ansuz.sooke.bc.ca/ |
Date | 2014-05-19 17:26 |
From | jpff@cs.bath.ac.uk |
Subject | [Csnd] Re: |
Attachments | None |
Date | 2014-05-19 18:23 |
From | joachim heintz |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
nice code - thanks. joachim Am 19.05.2014 18:22, schrieb Steven Yi: > An array would be a good generic solution. For one specific to just > black-key or white key, you might want to write a UDO that checks if a > note num is a black key. Something like: > > opcode is_black_key, i, i > inotenum xin > ival = inotenum % 12 > xout (ival == 1 || ival == 3 || ival == 6 || ival == 8 || ival == 10) > endop > > > > On Mon, May 19, 2014 at 12:10 PM, Rory Walsh |
Date | 2014-05-19 19:22 |
From | Richard Dobson |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
Given this either/or requirement, another way is to use a one-octave look-up table (a sort of sieve) identifying each note, e.g. 0,1,0,1,0,0,1,0,1,0,1,0), then use the modulo result from the midi note as the index into the table. This should keep the number of comparison tests to a minimum. Richard Dobson On 19/05/2014 18:23, joachim heintz wrote: > nice code - thanks. > joachim > > > Am 19.05.2014 18:22, schrieb Steven Yi: >> An array would be a good generic solution. For one specific to just >> black-key or white key, you might want to write a UDO that checks if a >> note num is a black key. Something like: >> >> opcode is_black_key, i, i >> inotenum xin >> ival = inotenum % 12 >> xout (ival == 1 || ival == 3 || ival == 6 || ival == 8 || ival == 10) >> endop >> >> >> |
Date | 2014-05-20 08:53 |
From | Stefan Thomas |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
Dear Rory, I've tried it with Your idea of using an array.iblackkeys[ ] fillarray 61,63,66,68,70 2014-05-19 18:10 GMT+02:00 Rory Walsh <rorywalsh@ear.ie>: You could save the note numbers in an array? That wouldn't bloat the |
Date | 2014-05-20 08:56 |
From | Stefan Thomas |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
Sorry, the mail was sended too early: again:I've created an array with (some) black keys: iblackkeys[ ] fillarray 61,63,66,68,70 But how can I check if inotnum is equal to one of the numbers in the array? I've tried it with: I've created an array with (some) black keys: iblackkeys[ ] fillarray 61,63,66,68,70 But this (as I expected) does not work. 2014-05-20 9:53 GMT+02:00 Stefan Thomas <kontrapunktstefan@gmail.com>:
|
Date | 2014-05-20 11:43 |
From | Rory Walsh |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
Looks like more of your email was cut? You tried with what? On 20 May 2014 08:56, Stefan Thomas |
Date | 2014-05-20 15:30 |
From | Stefan Thomas |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
Oh yes, sorry: The question is: how can I check, if a midinote number is one of the numbers of an array. 2014-05-20 12:43 GMT+02:00 Rory Walsh <rorywalsh@ear.ie>: Looks like more of your email was cut? You tried with what? |
Date | 2014-05-20 15:35 |
From | Rory Walsh |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
Yes, and most likely yes! I think the modulo idea is probably the best and most efficient. If you were dealing with array you could use any type of loop construct. There are quite a few options. On 20 May 2014 15:30, Stefan Thomas |
Date | 2014-05-20 20:17 |
From | Stefan Thomas |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
Dear Steven, I assume the modulo operator (%) does the same like in pyhon, right?2014-05-19 18:22 GMT+02:00 Steven Yi <stevenyi@gmail.com>: An array would be a good generic solution. For one specific to just |
Date | 2014-05-20 20:24 |
From | Steven Yi |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
Hi Stefan, Actually, I'm not sure if that UDO would work as-is, it might return a b-type (boolean) rather than an i-type. It might work due to the lack of type checking on xout, but whenever I can get to adding that type checking, it'd fail. You might try something like: opcode is_black_key, i, i inotenum xin ival = inotenum % 12 if (ival == 1 || ival == 3 || ival == 6 || ival == 8 || ival == 10) then ival = 1 else ival = 0 endif xout ival endop That way the UDO will return either 1 or 0, depending on if it is a black key. steven On Tue, May 20, 2014 at 3:17 PM, Stefan Thomas |
Date | 2014-05-21 09:16 |
From | Stefan Thomas |
Subject | Re: [Csnd] how to allocate two different sounds via midi-key-number |
Ok, I've got it! I will try Your code. Thanks a lot! 2014-05-20 21:24 GMT+02:00 Steven Yi <stevenyi@gmail.com>: Hi Stefan, |
Date | 2014-05-21 09:34 |
From | jpff@cs.bath.ac.uk |
Subject | [Csnd] Re: |
Attachments | None |
Date | 2014-05-21 19:48 |
From | joachim heintz |
Subject | Re: [Csnd] Re: |
so you use the note number input as index in the table ... very clever: |
Date | 2014-05-21 20:13 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: |
That would make a nice addition to the sections on arrays in the floss manual. On 21 May 2014 19:48, joachim heintz |
Date | 2014-05-21 20:41 |
From | joachim heintz |
Subject | Re: [Csnd] Re: |
right. and i bet you will beat me to add it ... =) j Am 21.05.2014 21:13, schrieb Rory Walsh: > That would make a nice addition to the sections on arrays in the floss manual. > > On 21 May 2014 19:48, joachim heintz |
Date | 2014-05-21 20:47 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: |
I walked right in to that one! On 21 May 2014 20:41, joachim heintz |
Date | 2014-05-21 20:52 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: |
I'm getting strange behavior when I log into floss? Can you access chapter at the moment? On 21 May 2014 20:47, Rory Walsh |
Date | 2014-05-22 19:05 |
From | joachim heintz |
Subject | Re: [Csnd] Re: |
yes, i can. what is the strange behaviour? did you disable ad blocker for this site? Am 21.05.2014 21:52, schrieb Rory Walsh: > I'm getting strange behavior when I log into floss? Can you access > chapter at the moment? > > On 21 May 2014 20:47, Rory Walsh |
Date | 2014-05-22 19:11 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: |
That could be it. Thanks, I'll try that. On 22 May 2014 19:05, joachim heintz |