我们能否在特定空间而不是完整的ViewController中加载LIVE视频记录?
您能帮我解决这个问题吗?
我进行了很多搜索,但无法找到解决方案。
我找到了一些参考资料:https://github.com/omergul/LLSimpleCamera
但这里显示的是全屏视频录制。
最佳答案
这是你可以这样做
var videoPreviewLayer: AVCaptureVideoPreviewLayer?
videoPreviewLayer = AVCaptureVideoPreviewLayer(session: captureSession)
videoPreviewLayer?.videoGravity = AVLayerVideoGravity.resizeAspectFill
videoPreviewLayer?.frame = yourView.layer.bounds
yourView.layer.addSublayer(videoPreviewLayer!)
关于ios - 需要在特定的UIView中显示“录像”屏幕,而不是iOS中的完整ViewController问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51666007/