mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
55 lines
1.7 KiB
Swift
55 lines
1.7 KiB
Swift
import AVKit
|
|
import Foundation
|
|
|
|
final class PiPDelegate: NSObject, AVPictureInPictureControllerDelegate {
|
|
var player: PlayerModel!
|
|
|
|
func pictureInPictureController(
|
|
_: AVPictureInPictureController,
|
|
failedToStartPictureInPictureWithError error: Error
|
|
) {
|
|
print(error.localizedDescription)
|
|
}
|
|
|
|
func pictureInPictureControllerWillStartPictureInPicture(_: AVPictureInPictureController) {}
|
|
|
|
func pictureInPictureControllerDidStartPictureInPicture(_: AVPictureInPictureController) {
|
|
player?.playingInPictureInPicture = true
|
|
player?.avPlayerBackend.startPictureInPictureOnPlay = false
|
|
}
|
|
|
|
func pictureInPictureControllerDidStopPictureInPicture(_: AVPictureInPictureController) {
|
|
guard let player = player else {
|
|
return
|
|
}
|
|
|
|
if player.avPlayerBackend.switchToMPVOnPipClose,
|
|
!player.currentItem.isNil
|
|
{
|
|
DispatchQueue.main.async {
|
|
player.avPlayerBackend.switchToMPVOnPipClose = false
|
|
player.saveTime {
|
|
player.changeActiveBackend(from: .appleAVPlayer, to: .mpv)
|
|
}
|
|
}
|
|
}
|
|
|
|
player.playingInPictureInPicture = false
|
|
}
|
|
|
|
func pictureInPictureControllerWillStopPictureInPicture(_: AVPictureInPictureController) {}
|
|
|
|
func pictureInPictureController(
|
|
_: AVPictureInPictureController,
|
|
restoreUserInterfaceForPictureInPictureStopWithCompletionHandler completionHandler: @escaping (Bool) -> Void
|
|
) {
|
|
if !player.currentItem.isNil {
|
|
player?.show()
|
|
}
|
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
|
|
completionHandler(true)
|
|
}
|
|
}
|
|
}
|