如何录制播放音乐播放器的音频

时间:2010-09-20 05:25:20

标签: iphone avaudiorecorder

在我的应用程序中,我正在使用AvAudioplayer播放音频,在播放音频后,我必须录制来自AvAudioplayer的音频以及任何其他外部声音以及音频。

我该怎么做。

谢谢

1 个答案:

答案 0 :(得分:0)

使用此功能播放声音

- (AVAudioPlayer *)getNoteFromFilename:(NSString *)name andoftype:(NSString *)type{
NSString *soundPath = [[NSBundle mainBundle] pathForResource:name
                                                      ofType:type];
NSURL *fileURL = [NSURL fileURLWithPath:soundPath];
AVAudioPlayer *note = [[[AVAudioPlayer alloc] initWithContentsOfURL:fileURL
                                                              error:nil] autorelease];
return note;

你可以像这样调用这个函数

self.btn_do = [self getNoteFromFilename:@"MusicFileName" andoftype:@"mp3"];