Iphone SDK:录制系统声音

时间:2011-05-13 18:24:01

标签: iphone audio system record

目前我正在开发一个鼓机应用程序。唯一剩下要做的就是“笨蛋”。

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

 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

1 个答案:

答案 0 :(得分:0)

可能与这篇文章重复了吗? Record Internal Sound iPhone SDK

这不容易但仍然可行。如果您对C ++有信心,可以查看FMOD库,它还允许您写入原始声音缓冲区。如果您不想使用第三方库,可以查看apple的CoreAudio框架。

希望它会有所帮助!