1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Shared/PlayerViewController.swift

91 lines
2.6 KiB
Swift
Raw Normal View History

2021-07-19 04:02:46 +05:30
import AVKit
import Logging
import SwiftUI
final class PlayerViewController: UIViewController {
var video: Video!
var playerLoaded = false
var playingFullScreen = false
var player = AVPlayer()
var playerState: PlayerState! = PlayerState()
var playerViewController = AVPlayerViewController()
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
if !playerLoaded {
loadPlayer()
}
try? AVAudioSession.sharedInstance().setCategory(.playback, mode: .default)
try? AVAudioSession.sharedInstance().setActive(true)
}
override func viewDidDisappear(_ animated: Bool) {
#if os(iOS)
if !playingFullScreen {
playerViewController.player?.replaceCurrentItem(with: nil)
playerViewController.player = nil
}
#endif
super.viewDidDisappear(animated)
}
func loadPlayer() {
playerState.player = player
playerViewController.player = playerState.player
playerState.loadVideo(video)
#if os(tvOS)
present(playerViewController, animated: false)
#else
playerViewController.exitsFullScreenWhenPlaybackEnds = true
playerViewController.view.frame = view.bounds
addChild(playerViewController)
view.addSubview(playerViewController.view)
playerViewController.didMove(toParent: self)
#endif
playerViewController.delegate = self
playerLoaded = true
}
}
extension PlayerViewController: AVPlayerViewControllerDelegate {
func playerViewControllerShouldDismiss(_: AVPlayerViewController) -> Bool {
true
}
2021-07-30 03:58:28 +05:30
func playerViewControllerDidEndDismissalTransition(_: AVPlayerViewController) {
playingFullScreen = false
2021-07-19 04:02:46 +05:30
dismiss(animated: false)
}
func playerViewController(
_: AVPlayerViewController,
2021-07-30 03:58:28 +05:30
willBeginFullScreenPresentationWithAnimationCoordinator coordinator: UIViewControllerTransitionCoordinator
2021-07-19 04:02:46 +05:30
) {
2021-07-30 03:58:28 +05:30
coordinator.animate(alongsideTransition: nil) { context in
if !context.isCancelled {
self.playingFullScreen = true
}
}
2021-07-19 04:02:46 +05:30
}
func playerViewController(
_: AVPlayerViewController,
2021-07-30 03:58:28 +05:30
willEndFullScreenPresentationWithAnimationCoordinator coordinator: UIViewControllerTransitionCoordinator
2021-07-19 04:02:46 +05:30
) {
2021-07-30 03:58:28 +05:30
coordinator.animate(alongsideTransition: nil) { context in
if !context.isCancelled {
self.playingFullScreen = false
}
}
2021-07-19 04:02:46 +05:30
}
}