资 源 简 介
Audio-ex
audio is c++ source library that provides simple methods to work with wave audio under windows
Provides simple interfaces for:
Recording audio in different formats
Playbacking audio
Working with audio buffers
Applying different effects on audio
```
int main()
{
audio::format wf(1,11025,8);
audio::header hd(wf,1);
audio::in xin(wf,WAVE_MAPPER);
audio::out xout(wf,WAVE_MAPPER);
xin.record(hd);
xout.play(hd);
return 0;
}
```
Can you so simply record and playback audio using WinAPI?
If interested, browse to Wiki and Source pages