gpt4 book ai didi

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

转载 作者:IT王子 更新时间:2023-10-29 07:30:35 24 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 目录 (DiskAid for Mac) 中提取 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/4401232/

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