Post

Replies

Boosts

Views

Activity

Comment on AVFoundationErrorDomain Code=-11800 NSOSStatusErrorDomain Code=-17507
I've been struggling to make a recording from an external video stream. I use this func to handle auth, do you think it is improper? I am able to save empty/corrupt files so I assume I am able to save files suddenly when I try this method to set CMSampleBuffer timestamp it fails with this unknown error private func handlePhotoLibraryAuth() {     if PHPhotoLibrary.authorizationStatus() != .authorized {       PHPhotoLibrary.requestAuthorization { authStatus in         if authStatus != .authorized {           print(authStatus)           // I never get this error         }       }     }   }
Dec ’21