如何在 iPhone 应用程序中自动录制视频而无需用户交互
我正在开发一个 iPhone 应用程序,需要自动录制视频。
我使用了移动核心服务框架并使用它。我使其进入视频模式并单击录制选项,开始捕获视频。但我想要它自动,也就是说......我应该能够录制视频而无需单击录制选项。当视频模式出现时,它会自动开始录制视频。
有人可以帮忙吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 UIImagePickerControllers startVideoCapture 方法,该方法用于开始从相机拍摄视频,当您不使用相机标准控制器并且提供覆盖视图时,将使用此方法。这是参考UIImagePickerCOntroller 参考。如果这对您来说还不够,您可能需要研究 AVFoundation 框架,它可以让您更好地控制视频捕获过程...希望有帮助
You can look at UIImagePickerControllers startVideoCapture method which is used to start taking video from the camera, this is to be used when you arent using the camera standard controlors and you provide and overlay view. Here is a reference UIImagePickerCOntroller ref. If this is not enough for you, you might want to look into AVFoundation framework which gives you a lot more control over video capturing process...hope that helps