Jatin Dave

Results 3 comments of Jatin Dave

Stop the stream when you go to background and restart it when you enter foreground again. -(void)appWillResignActive:(NSNotification_)note { [_session pauseCapture]; } -(void)appBecameActive:(NSNotification_)note { [_session resumeCapture]; }

i had a same problem so i remove all cookie from webview NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; for (NSHTTPCookie *cookie in [storage cookies]) { [storage deleteCookie:cookie]; } [[NSUserDefaults standardUserDefaults] synchronize];

@DanieleRatti hey dude have you got to save video on local or encode frames back to file?