Sound Synthesis ?

is sound synthesis possible with the Android SDK???

What do you mean by sound synthesis?

If you just mean playing sound/music files, the answer is yes.

i mean the same thing that java sound synthesis means

having a way to create a program by which the user will hit buttons (or whatever) to create dynamically generated sound

or simplier,
can you create a sound creator/mixer ?

i have been searching the APIs, cant find something relative,
maybe there is a way to port the Java Sound API to the Android platform?

thank you for your time

Looks like android.media.AudioTrack is your fella for PCM playback.

Kev

If you can coax Android into loading PCM data as a sound, then it’s pretty easy to do some simple sound generation manually. Check out this thread for some code.

thank you for the info!!!