ios - AVFoundation, captureStillImageAsynchronousl

我正在尝试在实时预览期间从相机捕捉图像,来自 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 并应用了反转效果,它在高缩放时看起来像这样:

然后我将此声音保存为 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/

相关文章:

objective-c - 在objective-c/cocoa中抛出异常

ios - 如何隐藏 UINavigationBar 1px 底线

objective-c - 比较浮点值有多危险?

ios - 在 iOS 中获取当前设备语言?

ios - 应用程序在应用程序启动结束时应该有一个 Root View Controller

objective-c - Objective-C 中的#import 和#include 有什么区

ios - @import 与 #import - iOS 7

c - 是否可以使用 NSLog C 结构(如 CGRect 或 CGPoint)?

objective-c - "__block"关键字是什么意思?

ios - 文件是通用的(三个切片),但它不包含 iOS 上静态库的(n)ARMv7-s 切片错误,