iphone - AVAudioRecorder 如何在 iphone 中获得麦克风电平?
<p><p>我正在为 iphone 6+ 开发录音应用。<br/>
问题1:(AVAudioRecorder)音频录制在模拟器中可以正常工作,但在设备中无法正常工作.. </p>
<p>音频设置:</p>
<pre><code> forKey:AVFormatIDKey];
forKey:AVSampleRateKey];
forKey:AVNumberOfChannelsKey];
forKey:AVEncoderAudioQualityKey];
</code></pre>
<p>问题 2:麦克风在我的 ipad 上正常工作之前。但是当我使用这段代码时</p>
<pre><code> [ setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];
;
</code></pre>
<p>麦克风在 ipad 中不工作.. 如何在 ipad/iphone 中重置或获取我的麦克风电平</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在我的 <code>- (void)setUpAudio</code> 方法中,我创建了一个字典,其中包含 AVAudioRecorder 的设置。(它有点干净)您上面的代码几乎是正确的,但并不完全正确。见下文。 </p>
<pre><code>// empty URL
NSURL *url = ;
// define settings for AVAudioRecorder
NSDictionary *settings = [NSDictionary dictionaryWithObjectsAndKeys:
, AVSampleRateKey,
, AVFormatIDKey,
, AVNumberOfChannelsKey,
, AVEncoderAudioQualityKey,
nil];
NSError *error;
// init and apply settings
recorder = [ initWithURL:url settings:settings error:&error];
// This here is what you are missing, without it the mic input will work in the simulator,
// but not on a device.
AVAudioSession *audioSession = ;
[audioSession setCategory:AVAudioSessionCategoryPlayAndRecord
error:nil];
if (recorder) {
;
recorder.meteringEnabled = YES;
NSTimer *levelTimer = ;
;
} else {
NSLog();
}
</code></pre>
<p>然后在更新方法中,您可以像这样跟踪您的麦克风输入电平。 </p>
<pre><code>- (void)levelTimerCallback:(NSTimer *)timer {
;
NSLog(@"Average input: %f Peak input: %f", , );
}
</code></pre>
<p>如有任何问题或可以改进我的答案的方法,请告诉我。这里还是很新的。 </p></p>
<p style="font-size: 20px;">关于iphone - AVAudioRecorder 如何在 iphone 中获得麦克风电平?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/18202694/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/18202694/
</a>
</p>
页:
[1]