2022-05-21 02:53:14 +05:30
|
|
|
import AVKit
|
|
|
|
import Foundation
|
2022-08-06 02:07:38 +05:30
|
|
|
import SwiftUI
|
2022-05-21 02:53:14 +05:30
|
|
|
|
|
|
|
final class PiPDelegate: NSObject, AVPictureInPictureControllerDelegate {
|
|
|
|
var player: PlayerModel!
|
|
|
|
|
|
|
|
func pictureInPictureController(
|
|
|
|
_: AVPictureInPictureController,
|
|
|
|
failedToStartPictureInPictureWithError error: Error
|
|
|
|
) {
|
|
|
|
print(error.localizedDescription)
|
|
|
|
}
|
|
|
|
|
|
|
|
func pictureInPictureControllerWillStartPictureInPicture(_: AVPictureInPictureController) {}
|
|
|
|
|
2022-05-22 02:28:11 +05:30
|
|
|
func pictureInPictureControllerDidStartPictureInPicture(_: AVPictureInPictureController) {
|
|
|
|
player?.playingInPictureInPicture = true
|
|
|
|
player?.avPlayerBackend.startPictureInPictureOnPlay = false
|
|
|
|
}
|
2022-05-21 02:53:14 +05:30
|
|
|
|
|
|
|
func pictureInPictureControllerDidStopPictureInPicture(_: AVPictureInPictureController) {
|
2022-05-30 01:43:21 +05:30
|
|
|
guard let player = player else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if player.avPlayerBackend.switchToMPVOnPipClose,
|
2022-05-30 02:00:00 +05:30
|
|
|
!player.currentItem.isNil
|
|
|
|
{
|
2022-05-30 01:43:21 +05:30
|
|
|
DispatchQueue.main.async {
|
|
|
|
player.avPlayerBackend.switchToMPVOnPipClose = false
|
|
|
|
player.saveTime {
|
|
|
|
player.changeActiveBackend(from: .appleAVPlayer, to: .mpv)
|
2022-05-21 02:53:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-22 02:28:11 +05:30
|
|
|
|
2022-05-30 01:43:21 +05:30
|
|
|
player.playingInPictureInPicture = false
|
2022-05-21 02:53:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func pictureInPictureControllerWillStopPictureInPicture(_: AVPictureInPictureController) {}
|
|
|
|
|
|
|
|
func pictureInPictureController(
|
|
|
|
_: AVPictureInPictureController,
|
2022-05-22 02:28:11 +05:30
|
|
|
restoreUserInterfaceForPictureInPictureStopWithCompletionHandler completionHandler: @escaping (Bool) -> Void
|
|
|
|
) {
|
2022-05-31 00:30:53 +05:30
|
|
|
var delay = 0.0
|
|
|
|
#if os(iOS)
|
2022-08-06 02:07:38 +05:30
|
|
|
if !player.presentingPlayer {
|
2022-05-31 00:30:53 +05:30
|
|
|
delay = 0.5
|
|
|
|
}
|
2022-08-06 02:07:38 +05:30
|
|
|
if player.currentItem.isNil {
|
|
|
|
delay = 1
|
|
|
|
}
|
2022-05-31 00:30:53 +05:30
|
|
|
#endif
|
|
|
|
|
2022-06-08 02:57:48 +05:30
|
|
|
if !player.currentItem.isNil, !player.musicMode {
|
2022-05-30 01:43:21 +05:30
|
|
|
player?.show()
|
|
|
|
}
|
2022-05-30 02:00:00 +05:30
|
|
|
|
2022-08-06 02:07:38 +05:30
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [weak self] in
|
|
|
|
withAnimation(.linear(duration: 0.3)) {
|
|
|
|
self?.player.playingInPictureInPicture = false
|
|
|
|
}
|
|
|
|
|
2022-05-29 20:08:37 +05:30
|
|
|
completionHandler(true)
|
|
|
|
}
|
2022-05-22 02:28:11 +05:30
|
|
|
}
|
2022-05-21 02:53:14 +05:30
|
|
|
}
|