You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On iOS 16 this solution is working perfectly, but on iOS 15 got an error when using startCapture method in completionHandler: ReplayKit error: Code=-5833 "Failed to start due to audio/video capture failure"
This error only occurs when there is active JitsiMeetView on the screen.
Can you help me?
part of my code: RPScreenRecorder.shared().startCapture { sampleBuffer, sampleBufferType, error in if let error { return } guard sampleBufferType == .video else { return } sampleHandler.processSampleBuffer(sampleBuffer, with: sampleBufferType) } completionHandler: { [weak self] error in if let error { } else { sampleHandler.broadcastStarted() } }
The text was updated successfully, but these errors were encountered:
Hi,
I've try to use
RPScreenRecorder startCaptureWithHandler:completionHandler:
in order to record screen and send the frames using app groups container, like described in guide: https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-ios-sdk/#setting-up-the-socket-connection but without using broadcast extension and recording only my application screen (not the whole device's screen).On iOS 16 this solution is working perfectly, but on iOS 15 got an error when using
startCapture
method incompletionHandler
:ReplayKit error: Code=-5833 "Failed to start due to audio/video capture failure"
This error only occurs when there is active JitsiMeetView on the screen.
Can you help me?
part of my code:
RPScreenRecorder.shared().startCapture { sampleBuffer, sampleBufferType, error in if let error { return } guard sampleBufferType == .video else { return } sampleHandler.processSampleBuffer(sampleBuffer, with: sampleBufferType) } completionHandler: { [weak self] error in if let error { } else { sampleHandler.broadcastStarted() } }
The text was updated successfully, but these errors were encountered: