ashish0309 / AutoVideoPlayer

Easily Play/Pause videos in any UIView subclass especially UITableViewCell subclass
MIT License
101 stars 17 forks source link

Audio not playing on mute button tap #19

Closed shashigupta751 closed 3 years ago

shashigupta751 commented 3 years ago

I want to still play audio on iPhone mute button is pressed. Does can you help me how can we achieve it.

shashigupta751 commented 3 years ago

I found the solution for this

you need to add below code do { try AVAudioSession.sharedInstance().setCategory(.playback) } catch(let error) { print(error.localizedDescription) } in ASVideoPlayerController line number after line number 116 in function name func playVideo(withLayer layer: AVPlayerLayer, url: String) {