I've just developed a function to ring frequencies, but I can't make it sound like a guitar string, I can only change it's frequency. Is there some way to change other parameters of a generated sound?

function sineGenerateSound(event:SampleDataEvent):void
        {

            for (var i:int=0; i<4092; i++)
            {

                var n:Number = Math.sin((i + event.position) * Math.PI / (44100 / (freq*2) )) * volume;

                event.data.writeFloat(n);
                // sound crackles and pops;
                event.data.writeFloat(n);
            }

        }
link|improve this question

71% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I would recommend SiON, as a good synthesis library, which includes a Guitar Synthesis module which you may find useful, as always YMMV.

link|improve this answer
Will I have to use a swc component? I donwloaded it and it's not showing up on the components panel – Lucas Apr 6 '11 at 19:38
I've accomplished it already. Now I can't generate guitar sounds, only simple musical notes. Have someone ever used it before? – Lucas Apr 6 '11 at 20:12
SiON also includes a Guitar Physical modeling synthesizer based on Karplus strong algorism. Look at this class included, libspark.org/svn/as3/SiOPM/trunk/src/org/si/sound/synthesizers/… - as you can see the code is marked (NOT IMPLEMENTED) however, experiment with the whole code library *not as a SWC, and uncomment the implementation. As I'd mentioned before, this is complex stuff, Ascension Systems Wonderfl. link is a good helper too. – Slomojo Apr 6 '11 at 21:28
feedback

Here you are with demos + sources:

http://blog.andre-michelle.com/2009/karplus-strong-algorithm/

//Very advanced version for Audio Tool, no source for this but something to aspire to and also evidence directly contrary to Slomojo's answer, and the reason I marked it down

http://lab.andre-michelle.com/karplus-strong-guitar

And here is a wonder.fl project with source that should have you well on your way: http://wonderfl.net/c/jcyp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.