Vidhi
Vidhi

Reputation: 2034

How to record video when application is in background ios

How can i record / capture video from application and once start recording, when i press home button and application goes to background, recording video should be continued even if application is in background.

How can GPUImage framework help in this?

Upvotes: 3

Views: 1914

Answers (1)

Brad Larson
Brad Larson

Reputation: 170319

You can't.

Applications running in the background don't have access to the camera. Also, GPUImage requires access to OpenGL ES, which is also something that background applications are not allowed to use.

Upvotes: 2

Related Questions