在我的应用程序中,我正在使用AvAudioplayer播放音频,在播放音频后,我必须录制来自AvAudioplayer的音频以及任何其他外部声音以及音频。
我该怎么做。
谢谢
答案 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"];