I am playing video from a controller like this:
func playMovie() {
let path = Bundle.main.path(forResource: "xyz", ofType:"mov")
let url = URL(fileURLWithPath: path!)
self.player = AVPlayer(url: url)
let layer: AVPlayerLayer = AVPlayerLayer(player: self.player)
layer.frame = self.view.frame
layer.videoGravity = AVLayerVideoGravityResizeAspectFill
self.view.layer.addSublayer(layer)
self.player.play()
}
Even after the controller is destroyed and no longer in use, I get this log message every second or so:
AQDefaultDevice (173): skipping input stream 0 0 0x0
I am not asking how to hide these logs. I know how to do that by setting OS_ACTIVITY_MODE
to disable
(See this for how to hide these logs). My concern is that the movie may be still playing somehow even after the controller is destroyed. Is there anything wrong in the way I am playing the movie. Or do I need to perform any additional cleanup?