ashish0309 / AutoVideoPlayer

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

How to add Mute button on Tableview cell ? #13

Closed JolChrSA closed 4 years ago

JolChrSA commented 4 years ago

I've added one button for Mute - Unmute Video, but not able to do it .

func mutePressed(indexPath: IndexPath) { guard let cell = feedTbl.cellForRow(at: indexPath) as? HomeVideoCell else { return } cell.playerController?.mute = cell.playerController?.mute ?? false ? false : true }

Please give me a solution for that.

JolChrSA commented 4 years ago

cell.videoLayer.player?.isMuted = false

This worked for me.