Amazing Audio Engine

码农软件 · 软件分类 · 音频声效(Audio) · 2019-07-09 07:59:06

软件介绍

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];

 

本文地址:https://www.codercto.com/soft/d/9732.html

Weaving the Web

Weaving the Web

Tim Berners-Lee / Harper Paperbacks / 2000-11-01 / USD 15.00

Named one of the greatest minds of the 20th century by Time , Tim Berners-Lee is responsible for one of that century's most important advancements: the world wide web. Now, this low-profile genius-wh......一起来看看 《Weaving the Web》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具