ios - AVAssetWriter 不录制音频
<p><p>我无法在 iPhone 上使用 avassetwriter 将音频录制到视频中。我可以在手机上从相机录制视频没有问题,但是当我尝试添加音频时,我什么也得不到,而且相册应用程序中视频中显示的持续时间也显示出一些非常不正常的东西,一个 4 秒的视频会显示 15:54:01 或类似的内容,即使视频更短,在该数字之后制作的每个视频都会增加。我一直在尝试遵循我在此处的其他问题中看到的内容,但没有运气。</p>
<p>这就是我设置音频输入的方式</p>
<pre><code>captureSession = [ init];
//set up audio input
AVCaptureDevice *audioDevice = ;
AVCaptureDeviceInput *audioInput = ;
audioOutput = [ init];
if()
{
;
}
;
</code></pre>
<p>这是我如何设置 AVAssetWriter</p>
<pre><code>videoWriter = [ initWithURL: fileType:AVFileTypeQuickTimeMovie error:&error];
AudioChannelLayout acl;
bzero( &acl, sizeof(acl));
acl.mChannelLayoutTag = kAudioChannelLayoutTag_Mono;
NSDictionary* audioOutputSettings = audioOutputSettings = [NSDictionary dictionaryWithObjectsAndKeys:
[ NSNumber numberWithInt: kAudioFormatMPEG4AAC], AVFormatIDKey,
[ NSNumber numberWithInt: 1 ], AVNumberOfChannelsKey,
[ NSNumber numberWithFloat: 44100.0 ], AVSampleRateKey,
[ NSData dataWithBytes: &acl length: sizeof( acl ) ], AVChannelLayoutKey,
[ NSNumber numberWithInt: 64000 ], AVEncoderBitRateKey,
nil];
</code></pre>
<p>然后这是我如何使用 audioOutput 回调发送的 CMSampleBufferRef 编写音频样本缓冲区</p>
<pre><code>- (void) captureAudio:(CMSampleBufferRef)sampleBuffer
{
if(){
;
}
}
</code></pre>
<p>非常感谢任何帮助,我整天都被困在这个问题上。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我没有看到你调用 <code></code>,当 <code>audioWriterInput</code> 没有准备好时,你也正在丢弃音频样本缓冲区(这不可能你想要什么)。</p>
<p>所以您的问题在于您所写内容的 PTS(演示时间戳)。您可以使用 <code>startSessionAtSourceTime</code> 告诉输出您的时间线从给定时间 t 开始,或者您可以修改附加的缓冲区,使其具有从零开始的presentationTimeStamps。</p></p>
<p style="font-size: 20px;">关于ios - AVAssetWriter 不录制音频,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9235936/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9235936/
</a>
</p>
页:
[1]