iphonesdk:录制系统声音

iphonesdk:录制系统声音,iphone,audio,system,record,Iphone,Audio,System,Record,目前我正在开发drumm应用程序。唯一剩下要做的就是“活套” 我想通过“记录系统”来制作活套。(记录鼓声) 我知道如何录制麦克风(我用它来录制声音: TempRecFile = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingPathComponent:[NSString stringWithString:@"VoiceFile"]]]; recorder1 = [[AVAudioRecorder

目前我正在开发drumm应用程序。唯一剩下要做的就是“活套”

我想通过“记录系统”来制作活套。(记录鼓声) 我知道如何录制麦克风(我用它来录制声音:

 TempRecFile = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingPathComponent:[NSString stringWithString:@"VoiceFile"]]];

        recorder1 = [[AVAudioRecorder alloc] initWithURL:TempRecFile settings:nil error:nil];
        [recorder1 setDelegate:self];
        [recorder1 prepareToRecord];
        [recorder1 record];
)

我如何做同样的事情,但与系统的声音

谢谢,这是事先准备好的


-DD

这篇文章可能会重复?

<>这不容易,但仍然是可能的。如果你对C++有信心,你可以检查FMOD库,它也允许你写入原始声音缓冲区。如果你不想使用第三方图书馆,你可以查看苹果的CoreAudio框架


希望这会有帮助

请有人回答!!上面的投票并不是一个真正的帮助:)给它加一份赏金??