0x6A75616E
0x6A75616E

Reputation: 4716

Is it possible to set AVPlayer to allow the device to go to sleep during video playback?

I am working on an application that involves using AVPlayer to have a video in the background of an interface.

We've found that while video is playing, the app will never go to sleep. Is there a way to tell AVPlayer to allow the app to go to sleep regardless?

Upvotes: 6

Views: 1610

Answers (1)

Fabian
Fabian

Reputation: 7003

Set preventsDisplaySleepDuringVideo to false or NO on the AVPlayer instance.

https://developer.apple.com/documentation/avfoundation/avplayer/2990522-preventsdisplaysleepduringvideop

Upvotes: 2

Related Questions