[Csnd] fm with feedback
Date | 2010-05-29 20:17 |
From | Stefan Thomas |
Subject | [Csnd] fm with feedback |
Dear community, I wanted to create an fm-instrument with feedback. Unfotrunately it doesn't work as expected. Could someone give me a hint, what is wrong? Here is my example: <CsoundSynthesizer> <CsOptions> </CsOptions> <CsInstruments> sr = 48000 kr = 480 ksmps = 100 nchnls = 2 gamodulator init 0 massign 1, 101 instr 101 icps cpsmidi iamp ampmidi 10000 ; making the envelope aenv madsr 0.1, 12, 0, 0.1 ; the modulators amodulator = gamodulator iwave = 1 asig oscil 1, icps+amodulator, iwave amix = aenv*iamp*asig outs amix, amix gamodulator = asig endin </CsInstruments> <CsScore> f0 36 f1 0 8193 10 1 i101 0 36 </CsScore> </CsoundSynthesizer> |
Date | 2010-05-29 21:55 |
From | luis jure |
Subject | [Csnd] Re: fm with feedback |
on 2010-05-29 at 21:17 Stefan Thomas wrote: >I wanted to create an fm-instrument with feedback. >Unfotrunately it doesn't work as expected. >Could someone give me a hint, what is wrong? for feedback fm you should use a pair phasor/table for the carrier, instead of an oscil. amplitude should be normalized to 1 and beta (modulation index) converted to radians. the example bellow works as expected, you can modify it to include the midi opcodes. HTH, lj |
Date | 2010-05-30 01:37 |
From | luis jure |
Subject | [Csnd] Re: Re: fm with feedback |
on 2010-05-29 at 17:55 luis jure wrote: > the example bellow ugh! the result of typing looking at the keyboard instead of the screen... anyway, it's a funny sentence. could we generate some bellowing sounds with feedback FM? :-) 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" |
Date | 2010-05-31 11:12 |
From | Stefan Thomas |
Subject | [Csnd] Re: Re: Re: fm with feedback |
Dear Luis, thanks for Your reply. It's not easy for me to understand what You did, but I will try to. 2010/5/30 luis jure <ljc@internet.com.uy>
|
Date | 2010-07-03 15:45 |
From | moko@city-net.com |
Subject | [Csnd] ftable limit in score? |
I know this has been asked before, but I can't find the answer. Is there a limit (absolute or practical) to the number of GEN01 ftables in the score section of a .csd file? I'm using numerous short samples that will be selected according to parameters generated in the orc. Thanks-- --David Mooney |
Date | 2010-07-03 17:03 |
From | Rory Walsh |
Subject | [Csnd] Re: ftable limit in score? |
I can't give you an absolute answer but I would think it might depend on the available ram you have on your machine? Are you reaching a limit? On 3 July 2010 15:45, |
Date | 2010-07-03 17:10 |
From | Jacob Joaquin |
Subject | [Csnd] Re: Re: ftable limit in score? |
Doing a quick test, I found that I can create a table of size (2 ^ 24), but it breaks if I try to create a table of size (2 ^ 25). Says, "ftable 1: illegal table length." Here's the score line: f 1 0 [2 ^ 25] 10 1 I'm using "Csound version 5.12 (float samples) Jun 4 2010" for OS X. Best, Jake |
Date | 2010-07-03 17:59 |
From | k_o_m_p |
Subject | [Csnd] Re: Re: Re: ftable limit in score? |
The limit used to be 2^24. I think it hasn't changed yet. luís Jacob Joaquin schrieb: > Doing a quick test, I found that I can create a table of size (2 ^ > 24), but it breaks if I try to create a table of size (2 ^ 25). Says, > "ftable 1: illegal table length." Here's the score line: > > f 1 0 [2 ^ 25] 10 1 > > I'm using "Csound version 5.12 (float samples) Jun 4 2010" for OS X. > > Best, > Jake > |
Date | 2010-07-03 18:24 |
From | Joel Ross |
Subject | [Csnd] Re: Re: Re: Re: ftable limit in score? |
David, did you mean the number of separate ftables? I'm not sure that table length is quite the same issue. -Joel On 3 July 2010 17:59, k_o_m_p |
Date | 2010-07-04 18:26 |
From | moko@city-net.com |
Subject | [Csnd] Re: Re: Re: Re: Re: ftable limit in score? |
Correct. The number of separate tables, not the size. --David > David, did you mean the number of separate ftables? > I'm not sure that table length is quite the same issue. > > -Joel > > On 3 July 2010 17:59, k_o_m_p |