Amazing Audio Engine
- 授权协议: zlib
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: http://theamazingaudioengine.com
- 软件文档: http://theamazingaudioengine.com/doc/
软件介绍
Amazing Audio Engine 是基于 Core Audio 的远程 IO 系统用以提供低延迟的音频连接,通过内置的混音、过滤和生效。该框架支持大多数音频格式和比特率,同时提供音频输入、录制和监控功能。
示例代码:
// Create an instance of the audio controller
self.audioController = [[[AEAudioController alloc]
initWithAudioDescription:
[AEAudioController nonInterleaved16BitStereoAudioDescription]]
autorelease];
AEBlockChannel *channel = [AEBlockChannel channelWithBlock:
^(const AudioTimeStamp *time,
UInt32 frames,
AudioBufferList *audio) {
// Generate audio here
}];
// Add and start playing channel
[_audioController addChannels:[NSArray arrayWithObjects:channel, nil]];
// Start the audio engine.
[_audioController start:NULL];
BSD Hacks
Dru Lavigne / O'Reilly Media, Inc. / 2004-05-24 / USD 24.95
If you want more than your average BSD user--you want to explore and experiment, unearth shortcuts, create useful tools, and come up with fun things to try on your own--BSD Hacks is a must-have. This ......一起来看看 《BSD Hacks》 这本书的介绍吧!
