共有 0 个贴子
没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
www.trustie.net/open_source_projects | 主页 > 开源项目社区 > audio-ex |
audio-ex
|
0 | 0 | 3 |
贡献者 | 讨论 | 代码提交 |
Audio-exaudio 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