如何在iOS中导出有效的音频文件

时间:2015-06-10 04:05:50

标签: ios audio avaudioengine

我使用AVAudioEngine播放多音频文件。 我想导出这个声音(包括效果和多个文件正在播放)而不录制。

我怎么能这样做?

这是我使用AVAudioEngine的代码

//1. Create engine
_audioEngine  = [[AVAudioEngine alloc] init];

//2. Create player nodes , unit
_mainPlayer = [[AVAudioPlayerNode alloc] init];
_aPlayer = [[AVAudioPlayerNode alloc] init];
_bPlayer = [[AVAudioPlayerNode alloc] init];

_effectTimePitch = [[AVAudioUnitTimePitch alloc] init];
AVAudioMixerNode *mixerNode = [[AVAudioMixerNode alloc] init];

//3. Attach node to engine
[_audioEngine attachNode:_mainPlayer];
[_audioEngine attachNode:_aPlayer];
[_audioEngine attachNode:_bPlayer];
[_audioEngine attachNode:mixerNode];
[_audioEngine attachNode:_effectTimePitch];

//4. Connect player node to engine's main mixer
NSDictionary *setting = @{
                          AVFormatIDKey: @(AVAudioPCMFormatFloat32),
                          AVSampleRateKey: @(1),
                          AVNumberOfChannelsKey: @(1)
                          };
_audioFormat = [[AVAudioFormat alloc] initWithSettings:setting];

[_audioEngine connect:_mainPlayer to:mixerNode format:_audioFormat];
[_audioEngine connect:_aPlayer to:mixerNode format:_audioFormat];
[_audioEngine connect:_bPlayer to:mixerNode format:_audioFormat];
[_audioEngine connect:mixerNode to:_effectTimePitch format:_audioFormat];
[_audioEngine connect:_effectTimePitch to:_audioEngine.mainMixerNode format:_audioFormat];

//5. Start engine
NSError *error;
NSAssert([_audioEngine startAndReturnError:&error], @"couldn't start engine, %@", [error localizedDescription]);

//6 Play Audio
AVAudioFile *audioFile = [[AVAudioFile alloc] initForReading: _mainURL error: nil];
[_mainPlayer scheduleFile:audioFile atTime:nil completionHandler:nil];
AVAudioFile *aFile = [[AVAudioFile alloc] initForReading: _mainURL error: nil];
[_aPlayer scheduleFile:aFile atTime:nil completionHandler:nil];
AVAudioFile *bFile = [[AVAudioFile alloc] initForReading: _mainURL error: nil];
[_bPlayer scheduleFile:bFile atTime:nil completionHandler:nil];

[_mainPlayer play];
[_aPlayer play];
[_bPlayer play];

1 个答案:

答案 0 :(得分:1)

您必须设置AVAudioFile才能写入。然后在链中的某个后期点(例如最后一个效果节点)安装一个点击,并从该缓冲区写入输出文件。