I want to generate and play a continuous sound with specific frequencies and amplitudes that change over time. I don't want to have a delay between sounds. How can I do this with Delphi or C++ Builder?
feedback
|
|
By using WaveAudio library it's possible to generate a continous cosinus wave. I was gonna post some code but I can't figure out how to do it properly so I won't. But all you need to do is use TLiveAudioPlayer and then override the OnData event. And also set Async to true if there is no message pump. | |||
|
feedback
|
|
This very simple example should get you started.
Notice in particular the neat interface you get:
| |||
|
feedback
|
|
It seems this article explains how to stream blocks of audio data to windows... it's written for c/c++ though but with a little work it can probably be done in delphi tooooo... reading article now ;) :) http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=4422&lngWId=3 | |||
|
feedback
|
|
This delphi code snippet/example is kinda flawed. It plays a single wave, and then it stops. When a second call is made there is a noticeable plop and delay. Something better will have to be programmed for a continous tone to be played for many seconds, minutes, hours, days, weeks, months, years, decades, and so forth. The point being: somehow the soundblaster needs to be fed with wave buffers without causing plops or so.. or some other technique ? ;) | ||||
|
feedback
|