我正在尝试将AVCaptureSession的音频静音和取消静音。一旦我开始会话,我就可以启用和禁用音频连接,但是一旦我回放视频,所有音频部分都会在视频的前面被推回到背面,只留下视频的结尾没有声音。这似乎是一个时间戳问题,但我不知道它是怎么回事。以防万一我试图调整音频样本缓冲区的PTS以匹配先前的视频缓冲区。
暂停
if (self.muted) {
[self.session beginConfiguration];
self.audioConnection.enabled = NO;
[self.session commitConfiguration];
} else {
[self.session beginConfiguration];
self.audioConnection.enabled = YES;
[self.session commitConfiguration];
}
为了调整时间戳,我抓住了上一个时间戳
if ( connection == self.videoConnection ) {
// Get timestamp
CMTime timestamp = CMSampleBufferGetPresentationTimeStamp( sampleBuffer );
testPreviousTimeStamp = timestamp;
然后我调整样本缓冲区的时间戳
CMSampleBufferSetOutputPresentationTimeStamp (sampleBuffer,testPreviousTimeStamp);
if (![self.assetWriterAudioIn appendSampleBuffer:sampleBuffer]) {
[self showError:[self.assetWriter error]];
NSLog(@"Problem writing audio sample buffer");
}
任何想法可能是什么问题以及如何解决它?
答案 0 :(得分:2)
而不是调整我没有运气的时间戳。我只是将零写入数据缓冲区。它有效,这样我就不需要禁用/启用任何连接。
// Write audio data to file
if (readyToRecordAudio && readyToRecordVideo) {
if (self.muted) {
CMBlockBufferRef buffRef = CMSampleBufferGetDataBuffer(sampleBuffer);
char fillByte = 0;
CMBlockBufferFillDataBytes(fillByte,buffRef,0,CMBlockBufferGetDataLength(buffRef));
}
[self writeSampleBuffer:sampleBuffer ofType:AVMediaTypeAudio];
}