我正在使用AVAssetWriter
录制视频和音频,分别追加来自CMSampleBuffer
和AVCaptureVideoDataOutput
的{{1}}。我想要做的是在录制过程中由用户自行决定静音。
我假设最好的方法是创建一个空的AVCaptureAudioDataOutput
之类的
CMSampleBuffer
但这不起作用,所以我假设我需要创建一个静音音频缓冲区。我该怎么做,有更好的方法吗?
答案 0 :(得分:3)
我之前通过调用一个处理SampleBuffer中的数据并将其全部归零的函数来完成此操作。如果您的音频格式不使用SInt16样本,可能需要修改此项。
您也可以使用相同的技术以其他方式处理音频。
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection
{
if(isMute){
[self muteAudioInBuffer:sampleBuffer];
}
}
- (void) muteAudioInBuffer:(CMSampleBufferRef)sampleBuffer
{
CMItemCount numSamples = CMSampleBufferGetNumSamples(sampleBuffer);
NSUInteger channelIndex = 0;
CMBlockBufferRef audioBlockBuffer = CMSampleBufferGetDataBuffer(sampleBuffer);
size_t audioBlockBufferOffset = (channelIndex * numSamples * sizeof(SInt16));
size_t lengthAtOffset = 0;
size_t totalLength = 0;
SInt16 *samples = NULL;
CMBlockBufferGetDataPointer(audioBlockBuffer, audioBlockBufferOffset, &lengthAtOffset, &totalLength, (char **)(&samples));
for (NSInteger i=0; i<numSamples; i++) {
samples[i] = (SInt16)0;
}
}