gpt4 book ai didi

ios - 录音时静音音频 AVAssetWriterInput

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:14:27 25 4
gpt4 key购买 nike

我正在使用 AVAssetWriter 分别从 AVCaptureVideoDataOutputAVCaptureAudioDataOutput 附加 CMSampleBuffer 来录制视频和音频。我想做的是在录制过程中由用户自行决定是否静音。

我假设最好的方法是创建一个空的 CMSampleBuffer 就像

CMSampleBufferRef sb;
CMSampleBufferCreate(kCFAllocatorDefault, NULL, YES, NULL, NULL, NULL, 0, 1, &sti, 0, NULL, &sb);
[_audioInputWriter appendSampleBuffer:sb];
CFRelease(sb);

但这不起作用,所以我假设我需要创建一个无声音频缓冲区。我该怎么做,是否有更好的方法?

最佳答案

我之前通过调用一个函数来完成此操作,该函数处理 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;
}

}

关于ios - 录音时静音音频 AVAssetWriterInput,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11759076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com