iphone – iPad上的AVAudioRecorder米延迟

iphone – iPad上的AVAudioRecorder米延迟,第1张

概述我无法从AVAudioRecorder获得准确的抄表(在iPad上进行测试). 在音量上升时似乎工作正常,但是当音量下降时会发生延迟.例如:我对着麦克风说话,然后慢慢提高声音.正如我所希望的那样,读数从-35.567增加到-34.678到-10.579,但是当我停止说话时,它会延迟1到2秒,然后再下降到-35.567(或者无论发生什么). NSLog继续从循环更新,但即使声音已经结束,仪表编号在延 我无法从AVAudioRecorder获得准确的抄表(在iPad上进行测试).

在音量上升时似乎工作正常,但是当音量下降时会发生延迟.例如:我对着麦克风说话,然后慢慢提高声音.正如我所希望的那样,读数从-35.567增加到-34.678到-10.579,但是当我停止说话时,它会延迟1到2秒,然后再下降到-35.567(或者无论发生什么).
NSLog继续从循环更新,但即使声音已经结束,仪表编号在延迟期间保持不变.

我已经添加了下面代码的要点,如果需要,我很乐意提供完整的代码.

我像这样初始化录音机:

AVAudioSession * audioSession = [AVAudioSession sharedInstance];[audioSession setcategory:AVAudioSessioncategoryPlayAndRecord error: &error];[audioSession setActive:YES error: &error];NSMutableDictionary* recordSetting = [[NSMutableDictionary alloc] init];[recordSetting setValue :[NSNumber numberWithInt:kAudioFormatAppleIMA4] forKey:AVFormatIDKey];[recordSetting setValue:[NSNumber numberWithfloat:44100.0] forKey:AVSampleRateKey]; [recordSetting setValue:[NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];recordedTmpfile = [NSURL fileURLWithPath:[NstemporaryDirectory()  stringByAppendingPathComponent: [Nsstring stringWithString: @"Recording.caf"]]];recorder = [[ AVAudioRecorder alloc] initWithURL:recordedTmpfile settings:recordSetting error:&error];[recorder setDelegate:self];[recorder preparetoRecord];[recorder setMeteringEnabled:YES];[recorder record];

并循环更新仪表:

-(voID) loop:(ccTime)dt {    if(isRecording == YES)    {                //get volume levels        [recorder updateMeters];        float level = [recorder peakPowerForChannel:0];        NSLog(@"Vol: %f",level);    }}

编辑:我还应该提到我正在使用循环的Cocos2d计划:

[self schedule:@selector(loop:)];

有什么想法会有这么长的延迟?

编辑:我已尝试使用平均峰值功率,这没有延迟.所以我可以用它作为一种解决方法.但是我宁愿不使用和平均峰值功率,也很好理解发生了什么.

解决方法 我敢肯定,大多数人已经想到这一点,但如果你想减少你的计量延迟,你需要使用AudioQueue或RemoteIO.在这里看到更好的解释:

Confusion with meters in AVAudioRecorder

总结

以上是内存溢出为你收集整理的iphone – iPad上的AVAudioRecorder米延迟全部内容,希望文章能够帮你解决iphone – iPad上的AVAudioRecorder米延迟所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1019013.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存