gpt4 book ai didi

ios - AVFoundation, captureStillImageAsynchronouslyFromConnection 时如何关闭快门声音?

转载 作者:IT老高 更新时间:2023-10-28 12:12:27 28 4
gpt4 key购买 nike

我正在尝试在实时预览期间从相机捕捉图像,来自 AVFoundation captureStillImageAsynchronouslyFromConnection .到目前为止,该程序按预期工作。但是,如何使快门声音静音?

最佳答案

我曾使用此代码捕获 iOS 默认快门声音(这里是声音文件名列表 https://github.com/TUNER88/iOSSystemSoundsLibrary):

NSString *path = @"/System/Library/Audio/UISounds/photoShutter.caf";
NSString *docs = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSData *data = [NSData dataWithContentsOfFile:path];
[data writeToFile:[docs stringByAppendingPathComponent:@"photoShutter.caf"] atomically:YES];

然后我使用第三方应用程序从 Documents 目录(Mac 的 DiskAid)中提取 photoShutter.caf。下一步我在 Audacity 音频编辑器中打开了 photoShutter.caf 并应用了反转效果,它在高缩放时看起来像这样:

enter image description here

然后我将此声音保存为 photoShutter2.caf 并尝试在 captureStillImageAsynchronouslyFromConnection 之前播放此声音:

static SystemSoundID soundID = 0;
if (soundID == 0) {
NSString *path = [[NSBundle mainBundle] pathForResource:@"photoShutter2" ofType:@"caf"];
NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];
AudioServicesCreateSystemSoundID((__bridge CFURLRef)filePath, &soundID);
}
AudioServicesPlaySystemSound(soundID);

[self.stillImageOutput captureStillImageAsynchronouslyFromConnection:
...

这真的有效!我运行了几次测试,每次都没有听到快门声:)

您可以从以下链接获得已经在 iPhone 5S iOS 7.1.1 上捕获的反转声音:https://www.dropbox.com/s/1echsi6ivbb85bv/photoShutter2.caf

关于ios - AVFoundation, captureStillImageAsynchronouslyFromConnection 时如何关闭快门声音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23758875/

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