bell sound
Date | 2006-03-09 17:19 |
From | Drweski nicolas |
Subject | bell sound |
Do somebody have the tables for a bell-like sound ( by gen's) or by additive synthesys. I have seen the propriety somowhere but I don't remember where. If you have ther way or making them it will be helpfull thanks Nicolas ___________________________________________________________________________ Nouveau : téléphonez moins cher avec Yahoo! Messenger ! Découvez les tarifs exceptionnels pour appeler la France et l'international. Téléchargez sur http://fr.messenger.yahoo.com |
Date | 2006-03-09 17:27 |
From | Rory Walsh |
Subject | Re: bell sound |
http://music.nuim.ie/musictec/docs/synth/additive.pdf Thanks Victor! Drweski nicolas wrote: > Do somebody have the tables for a bell-like sound ( by > gen's) > or by additive synthesys. I have seen the propriety > somowhere but I don't remember where. > If you have ther way or making them it will be > helpfull > > thanks > > Nicolas > > > > > > > ___________________________________________________________________________ > Nouveau : téléphonez moins cher avec Yahoo! Messenger ! Découvez les tarifs exceptionnels pour appeler la France et l'international. > Téléchargez sur http://fr.messenger.yahoo.com |
Date | 2006-03-09 17:33 |
From | Victor Lazzarini |
Subject | Re: bell sound |
No! thanks, J C Risset... At 17:27 09/03/2006, you wrote: >http://music.nuim.ie/musictec/docs/synth/additive.pdf > >Thanks Victor! > >Drweski nicolas wrote: >>Do somebody have the tables for a bell-like sound ( by >>gen's) >>or by additive synthesys. I have seen the propriety >>somowhere but I don't remember where. >>If you have ther way or making them it will be >>helpfull >>thanks >>Nicolas >> >> >> >> >>___________________________________________________________________________ >>Nouveau : téléphonez moins cher avec Yahoo! Messenger ! Découvez les >>tarifs exceptionnels pour appeler la France et l'international. >>Téléchargez sur http://fr.messenger.yahoo.com >-- >Send bugs reports to this list. >To unsubscribe, send email to csound-unsubscribe@lists.bath.ac.uk Victor Lazzarini Music Technology Laboratory Music Department National University of Ireland, Maynooth |
Date | 2006-03-09 17:36 |
From | Rory Walsh |
Subject | Re: bell sound |
Indeed. Victor Lazzarini wrote: > No! thanks, J C Risset... > > At 17:27 09/03/2006, you wrote: >> http://music.nuim.ie/musictec/docs/synth/additive.pdf >> >> Thanks Victor! >> >> Drweski nicolas wrote: >>> Do somebody have the tables for a bell-like sound ( by >>> gen's) >>> or by additive synthesys. I have seen the propriety >>> somowhere but I don't remember where. >>> If you have ther way or making them it will be >>> helpfull >>> thanks >>> Nicolas >>> >>> >>> >>> >>> ___________________________________________________________________________ >>> Nouveau : téléphonez moins cher avec Yahoo! Messenger ! Découvez les >>> tarifs exceptionnels pour appeler la France et l'international. >>> Téléchargez sur http://fr.messenger.yahoo.com >> -- >> Send bugs reports to this list. >> To unsubscribe, send email to csound-unsubscribe@lists.bath.ac.uk > > Victor Lazzarini > Music Technology Laboratory > Music Department > National University of Ireland, Maynooth |
Date | 2006-03-09 18:26 |
From | "Matt J. Ingalls" |
Subject | Re: bell sound |
here is what i have - i think i got it from csoundbook examples On Thu, 9 Mar 2006, Drweski nicolas wrote: > Do somebody have the tables for a bell-like sound ( by > gen's) > or by additive synthesys. I have seen the propriety > somowhere but I don't remember where. > If you have ther way or making them it will be > helpfull |
Date | 2006-03-10 03:29 |
From | Scott Lindroth |
Subject | Re: bell sound |
Here's a bell-like sound using modal synthesis. Changing the pole magnitude alters the ring time. SL |
Date | 2006-03-10 05:48 |
From | Anthony Kozar |
Subject | Re: bell sound |
This is not exactly what you asked for, but the fmbell opcode also produces some very nice tones all on its own. This example is adapted from the manual: ------------ ; fmbell.orc ; instr 1 from manual examples sr = 44100 kr = 4410 ksmps = 10 nchnls = 1 ; simple fmbell example instr 1 iamp = p4 ifreq = p5 imodindx = p6 ixfade = p7 ivdepth = 0.005 ivrate = 6 ifn1 = 1 ifn2 = 1 ifn3 = 1 ifn4 = 1 ivfn = 1 a1 fmbell iamp, ifreq, imodindx, ixfade, ivdepth, ivrate, \ ifn1, ifn2, ifn3, ifn4, ivfn out a1 endin ------------ ; fmbell.sco ; Table #1, a sine wave. f 1 0 32768 10 1 ; dur amp freq modindx xfade i1 0 3 10000 880 5 5 i1 + . . 440 5 5 i1 . . . . 3 5 i1 . . . . 1 5 i1 . . . . 0 5 e ------------ And this has even less to do with the original request, but in the spirit of sharing, I found that I got some interesting sounds by waveshaping the fmbell opcode: ------------- ; fmbell2.orc ; instr 2 adds waveshaping ; Anthony Kozar ; January 4, 2005 sr = 44100 kr = 4410 ksmps = 10 nchnls = 1 ; fmbell with waveshaping by sine function instr 2 iamp = p4 ifreq = p5 imodindx = p6 ; fm modulation index ixfade = p7 ; fm osc cross fade ishapeamt = p8 ; amplitude scaler for waveshaping input ivdepth = 0.005 ; vibrato depth ivrate = 6 ; vibrate rate ifn1 = 1 ifn2 = 1 ifn3 = 1 ifn4 = 1 ivfn = 1 andx fmbell 0.3, ifreq, imodindx, ixfade, ivdepth, ivrate, \ ifn1, ifn2, ifn3, ifn4, ivfn ishapefn = 1 ixmode = 1 ; normalized index ixoff = 0.5 ; table is centered iwrap = p9 ; 0 = no wraparound, 1 = wrapping a1 tablei ishapeamt*andx, ishapefn, ixmode, ixoff, iwrap out iamp*a1 endin ------------- ; fmbell2.sco ; Table #1, a sine wave. f 1 0 32768 10 1 ; dur amp freq modindx xfade shapeamt wrap? i2 0 3 10000 880 5 5 0.5 0 i2 + . . . . . 1.0 0 i2 . . . . . . 1.0 1 i2 . . . . . . 3.0 0 i2 . . . . . . 3.0 1 i2 . . . . . . 5.0 0 i2 . . . . . . 5.0 1 e ------------- Anthony Kozar anthonykozar AT sbcglobal DOT net Drweski nicolas wrote on 3/9/06 12:19 PM: > Do somebody have the tables for a bell-like sound ( by > gen's) or by additive synthesys. |
Date | 2006-03-10 05:58 |
From | Anthony Kozar |
Subject | Re: modal synthesis (was: bell sound) |
This is a fascinating example. Very convincing bell tones! I have to say that modal synthesis is one of the techniques that I know absolutely nothing about -- in fact, I have never even seen an explanation of what it is supposed to do. Searching online turned up a lot of relevant looking material though, so I plan to look into this :) Thanks. Anthony Kozar anthonykozar AT sbcglobal DOT net Scott Lindroth wrote on 3/9/06 10:29 PM: > Here's a bell-like sound using modal synthesis. Changing the pole > magnitude alters the ring time. |