2021-10-05 20:20:09 +00:00
|
|
|
|
import AVKit
|
2021-12-26 21:14:46 +00:00
|
|
|
|
import CoreData
|
2022-01-02 19:43:30 +00:00
|
|
|
|
#if os(iOS)
|
|
|
|
|
import CoreMotion
|
|
|
|
|
#endif
|
2021-10-05 20:20:09 +00:00
|
|
|
|
import Defaults
|
2021-06-14 18:05:02 +00:00
|
|
|
|
import Foundation
|
2021-06-15 16:35:21 +00:00
|
|
|
|
import Logging
|
2021-10-28 20:18:23 +00:00
|
|
|
|
import MediaPlayer
|
2021-10-16 22:48:58 +00:00
|
|
|
|
import Siesta
|
2021-10-23 16:49:45 +00:00
|
|
|
|
import SwiftUI
|
2021-10-16 22:48:58 +00:00
|
|
|
|
import SwiftyJSON
|
2022-01-02 19:43:30 +00:00
|
|
|
|
#if !os(macOS)
|
|
|
|
|
import UIKit
|
|
|
|
|
#endif
|
2021-06-14 18:05:02 +00:00
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
|
final class PlayerModel: ObservableObject {
|
2022-07-10 22:24:56 +00:00
|
|
|
|
enum PlaybackMode: String, CaseIterable, Defaults.Serializable {
|
|
|
|
|
case queue, shuffle, loopOne, related
|
|
|
|
|
|
|
|
|
|
var systemImage: String {
|
|
|
|
|
switch self {
|
|
|
|
|
case .queue:
|
|
|
|
|
return "list.number"
|
|
|
|
|
case .shuffle:
|
|
|
|
|
return "shuffle"
|
|
|
|
|
case .loopOne:
|
|
|
|
|
return "repeat.1"
|
|
|
|
|
case .related:
|
|
|
|
|
return "infinity"
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-08-25 23:59:42 +00:00
|
|
|
|
|
|
|
|
|
var description: String {
|
|
|
|
|
switch self {
|
|
|
|
|
case .queue:
|
|
|
|
|
return "Queue"
|
|
|
|
|
case .shuffle:
|
|
|
|
|
return "Queue, shuffled"
|
|
|
|
|
case .loopOne:
|
|
|
|
|
return "Loop one"
|
|
|
|
|
case .related:
|
|
|
|
|
return "Autoplay next"
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-07-10 22:24:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-02 17:24:59 +00:00
|
|
|
|
static let availableRates: [Float] = [0.5, 0.67, 0.8, 1, 1.25, 1.5, 2]
|
2021-11-07 13:32:01 +00:00
|
|
|
|
let logger = Logger(label: "stream.yattee.app")
|
2021-06-15 16:35:21 +00:00
|
|
|
|
|
2022-02-27 20:31:17 +00:00
|
|
|
|
var avPlayerView = AppleAVPlayerView()
|
2021-12-29 18:55:41 +00:00
|
|
|
|
var playerItem: AVPlayerItem?
|
2021-06-15 21:21:57 +00:00
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
var mpvPlayerView = MPVPlayerView()
|
|
|
|
|
|
2022-08-29 13:49:27 +00:00
|
|
|
|
@Published var presentingPlayer = false
|
2022-02-16 20:23:11 +00:00
|
|
|
|
@Published var activeBackend = PlayerBackendType.mpv
|
|
|
|
|
|
|
|
|
|
var avPlayerBackend: AVPlayerBackend!
|
|
|
|
|
var mpvBackend: MPVBackend!
|
2022-08-14 16:53:03 +00:00
|
|
|
|
#if !os(macOS)
|
|
|
|
|
var mpvController = MPVViewController()
|
|
|
|
|
#endif
|
2022-02-16 20:23:11 +00:00
|
|
|
|
|
|
|
|
|
var backends: [PlayerBackend] {
|
|
|
|
|
[avPlayerBackend, mpvBackend]
|
|
|
|
|
}
|
2021-06-18 10:17:01 +00:00
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
var backend: PlayerBackend! {
|
|
|
|
|
switch activeBackend {
|
|
|
|
|
case .mpv:
|
|
|
|
|
return mpvBackend
|
|
|
|
|
case .appleAVPlayer:
|
|
|
|
|
return avPlayerBackend
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-18 22:40:46 +00:00
|
|
|
|
var playerBackendView = PlayerBackendView()
|
|
|
|
|
|
2022-03-27 11:42:20 +00:00
|
|
|
|
@Published var playerSize: CGSize = .zero { didSet {
|
2022-08-14 16:59:04 +00:00
|
|
|
|
#if !os(tvOS)
|
|
|
|
|
backend.setSize(playerSize.width, playerSize.height)
|
|
|
|
|
#endif
|
2022-03-27 11:42:20 +00:00
|
|
|
|
}}
|
2022-07-10 01:15:15 +00:00
|
|
|
|
@Published var aspectRatio = VideoPlayerView.defaultAspectRatio
|
2021-10-05 20:20:09 +00:00
|
|
|
|
@Published var stream: Stream?
|
2022-02-16 20:23:11 +00:00
|
|
|
|
@Published var currentRate: Float = 1.0 { didSet { backend.setRate(currentRate) } }
|
2021-06-15 16:35:21 +00:00
|
|
|
|
|
2022-08-29 11:55:23 +00:00
|
|
|
|
@Published var qualityProfileSelection: QualityProfile? { didSet { handleQualityProfileChange() } }
|
2022-08-14 17:06:22 +00:00
|
|
|
|
|
2021-12-19 17:17:04 +00:00
|
|
|
|
@Published var availableStreams = [Stream]() { didSet { handleAvailableStreamsChange() } }
|
2021-10-23 16:49:45 +00:00
|
|
|
|
@Published var streamSelection: Stream? { didSet { rebuildTVMenu() } }
|
2021-10-16 22:48:58 +00:00
|
|
|
|
|
2022-06-26 14:46:29 +00:00
|
|
|
|
@Published var queue = [PlayerQueueItem]() { didSet { handleQueueChange() } }
|
2022-01-09 15:05:05 +00:00
|
|
|
|
@Published var currentItem: PlayerQueueItem! { didSet { handleCurrentItemChange() } }
|
2022-08-29 11:55:23 +00:00
|
|
|
|
@Published var videoBeingOpened: Video? { didSet { seek.reset() } }
|
2021-12-26 21:14:46 +00:00
|
|
|
|
@Published var historyVideos = [Video]()
|
2021-06-15 16:35:21 +00:00
|
|
|
|
|
2021-12-17 20:01:05 +00:00
|
|
|
|
@Published var preservedTime: CMTime?
|
2021-06-17 22:43:29 +00:00
|
|
|
|
|
2021-10-23 16:49:45 +00:00
|
|
|
|
@Published var sponsorBlock = SponsorBlockAPI()
|
|
|
|
|
@Published var segmentRestorationTime: CMTime?
|
|
|
|
|
@Published var lastSkipped: Segment? { didSet { rebuildTVMenu() } }
|
|
|
|
|
@Published var restoredSegments = [Segment]()
|
|
|
|
|
|
2022-06-07 21:27:48 +00:00
|
|
|
|
@Published var musicMode = false
|
2022-07-11 16:10:51 +00:00
|
|
|
|
@Published var playbackMode = PlaybackMode.queue { didSet { handlePlaybackModeChange() } }
|
2022-07-10 22:24:56 +00:00
|
|
|
|
@Published var autoplayItem: PlayerQueueItem?
|
|
|
|
|
@Published var autoplayItemSource: Video?
|
|
|
|
|
@Published var advancing = false
|
|
|
|
|
|
2022-03-19 23:04:56 +00:00
|
|
|
|
@Published var returnYouTubeDislike = ReturnYouTubeDislikeAPI()
|
|
|
|
|
|
2022-06-18 12:39:49 +00:00
|
|
|
|
@Published var isSeeking = false { didSet {
|
2022-06-24 23:39:29 +00:00
|
|
|
|
backend.setNeedsNetworkStateUpdates(true)
|
2022-06-18 12:39:49 +00:00
|
|
|
|
}}
|
|
|
|
|
|
2022-07-10 23:26:35 +00:00
|
|
|
|
#if os(iOS)
|
|
|
|
|
@Published var lockedOrientation: UIInterfaceOrientationMask?
|
2022-08-07 11:48:50 +00:00
|
|
|
|
@Default(.rotateToPortraitOnExitFullScreen) private var rotateToPortraitOnExitFullScreen
|
2022-07-10 23:26:35 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2021-10-16 22:48:58 +00:00
|
|
|
|
var accounts: AccountsModel
|
2021-12-04 19:35:41 +00:00
|
|
|
|
var comments: CommentsModel
|
2022-02-16 20:23:11 +00:00
|
|
|
|
var controls: PlayerControlsModel { didSet {
|
|
|
|
|
backends.forEach { backend in
|
|
|
|
|
var backend = backend
|
|
|
|
|
backend.controls = controls
|
2022-08-07 11:48:50 +00:00
|
|
|
|
backend.controls.player = self
|
2022-02-16 20:23:11 +00:00
|
|
|
|
}
|
|
|
|
|
}}
|
2022-06-18 12:39:49 +00:00
|
|
|
|
var playerTime: PlayerTimeModel { didSet {
|
|
|
|
|
backends.forEach { backend in
|
|
|
|
|
var backend = backend
|
|
|
|
|
backend.playerTime = playerTime
|
|
|
|
|
backend.playerTime.player = self
|
|
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
var networkState: NetworkStateModel { didSet {
|
|
|
|
|
backends.forEach { backend in
|
|
|
|
|
var backend = backend
|
|
|
|
|
backend.networkState = networkState
|
|
|
|
|
backend.networkState.player = self
|
|
|
|
|
}
|
|
|
|
|
}}
|
2022-08-29 11:55:23 +00:00
|
|
|
|
var seek: SeekModel { didSet {
|
|
|
|
|
backends.forEach { backend in
|
|
|
|
|
var backend = backend
|
|
|
|
|
backend.seek = seek
|
|
|
|
|
backend.seek.player = self
|
|
|
|
|
}
|
|
|
|
|
}}
|
2022-06-29 22:44:32 +00:00
|
|
|
|
var navigation: NavigationModel
|
|
|
|
|
|
2021-12-26 21:14:46 +00:00
|
|
|
|
var context: NSManagedObjectContext = PersistenceController.shared.container.viewContext
|
2022-06-07 22:15:15 +00:00
|
|
|
|
var backgroundContext = PersistenceController.shared.container.newBackgroundContext()
|
2021-12-26 21:14:46 +00:00
|
|
|
|
|
2022-07-10 17:51:46 +00:00
|
|
|
|
#if os(tvOS)
|
|
|
|
|
static let fullScreenIsDefault = true
|
|
|
|
|
#else
|
|
|
|
|
static let fullScreenIsDefault = false
|
|
|
|
|
#endif
|
|
|
|
|
@Published var playingFullScreen = PlayerModel.fullScreenIsDefault
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
@Published var playingInPictureInPicture = false
|
2022-05-20 21:23:14 +00:00
|
|
|
|
var pipController: AVPictureInPictureController?
|
|
|
|
|
var pipDelegate = PiPDelegate()
|
2021-10-28 17:14:55 +00:00
|
|
|
|
|
2021-11-07 16:52:42 +00:00
|
|
|
|
var playerError: Error? { didSet {
|
2022-08-18 22:36:16 +00:00
|
|
|
|
if let error = playerError {
|
|
|
|
|
navigation.presentAlert(title: "Failed loading video", message: error.localizedDescription)
|
|
|
|
|
}
|
2021-11-07 16:52:42 +00:00
|
|
|
|
}}
|
|
|
|
|
|
2022-08-14 17:06:22 +00:00
|
|
|
|
@Default(.qualityProfiles) var qualityProfiles
|
2022-08-22 21:14:27 +00:00
|
|
|
|
@Default(.forceAVPlayerForLiveStreams) var forceAVPlayerForLiveStreams
|
2021-12-19 17:17:04 +00:00
|
|
|
|
@Default(.pauseOnHidingPlayer) private var pauseOnHidingPlayer
|
|
|
|
|
@Default(.closePiPOnNavigation) var closePiPOnNavigation
|
|
|
|
|
@Default(.closePiPOnOpeningPlayer) var closePiPOnOpeningPlayer
|
2022-08-08 18:02:46 +00:00
|
|
|
|
@Default(.resetWatchedStatusOnPlaying) var resetWatchedStatusOnPlaying
|
2021-12-19 17:17:04 +00:00
|
|
|
|
|
|
|
|
|
#if !os(macOS)
|
|
|
|
|
@Default(.closePiPAndOpenPlayerOnEnteringForeground) var closePiPAndOpenPlayerOnEnteringForeground
|
2022-08-07 11:15:27 +00:00
|
|
|
|
@Default(.closePlayerOnItemClose) private var closePlayerOnItemClose
|
2021-12-19 17:17:04 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2022-02-16 21:10:57 +00:00
|
|
|
|
private var currentArtwork: MPMediaItemArtwork?
|
|
|
|
|
|
2022-08-26 08:25:07 +00:00
|
|
|
|
var onPresentPlayer = [() -> Void]()
|
2022-07-11 16:10:51 +00:00
|
|
|
|
private var remoteCommandCenterConfigured = false
|
2022-02-16 20:23:11 +00:00
|
|
|
|
|
2022-06-18 12:39:49 +00:00
|
|
|
|
init(
|
|
|
|
|
accounts: AccountsModel = AccountsModel(),
|
|
|
|
|
comments: CommentsModel = CommentsModel(),
|
|
|
|
|
controls: PlayerControlsModel = PlayerControlsModel(),
|
2022-06-29 22:44:32 +00:00
|
|
|
|
navigation: NavigationModel = NavigationModel(),
|
2022-06-18 12:39:49 +00:00
|
|
|
|
playerTime: PlayerTimeModel = PlayerTimeModel(),
|
2022-08-29 11:55:23 +00:00
|
|
|
|
networkState: NetworkStateModel = NetworkStateModel(),
|
|
|
|
|
seek: SeekModel = SeekModel()
|
2022-06-18 12:39:49 +00:00
|
|
|
|
) {
|
|
|
|
|
self.accounts = accounts
|
|
|
|
|
self.comments = comments
|
|
|
|
|
self.controls = controls
|
2022-06-29 22:44:32 +00:00
|
|
|
|
self.navigation = navigation
|
2022-06-18 12:39:49 +00:00
|
|
|
|
self.playerTime = playerTime
|
|
|
|
|
self.networkState = networkState
|
2022-08-29 11:55:23 +00:00
|
|
|
|
self.seek = seek
|
2022-06-18 12:39:49 +00:00
|
|
|
|
|
|
|
|
|
self.avPlayerBackend = AVPlayerBackend(
|
|
|
|
|
model: self,
|
|
|
|
|
controls: controls,
|
|
|
|
|
playerTime: playerTime
|
|
|
|
|
)
|
|
|
|
|
self.mpvBackend = MPVBackend(
|
|
|
|
|
model: self,
|
|
|
|
|
playerTime: playerTime,
|
|
|
|
|
networkState: networkState
|
|
|
|
|
)
|
2021-10-25 08:25:41 +00:00
|
|
|
|
|
2022-08-14 16:53:03 +00:00
|
|
|
|
#if !os(macOS)
|
|
|
|
|
mpvBackend.controller = mpvController
|
|
|
|
|
mpvBackend.client = mpvController.client
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-06-07 21:27:48 +00:00
|
|
|
|
Defaults[.activeBackend] = .mpv
|
2022-07-10 22:24:56 +00:00
|
|
|
|
playbackMode = Defaults[.playbackMode]
|
2022-08-18 22:40:46 +00:00
|
|
|
|
|
|
|
|
|
guard pipController.isNil else { return }
|
|
|
|
|
pipController = .init(playerLayer: avPlayerBackend.playerLayer)
|
|
|
|
|
let pipDelegate = PiPDelegate()
|
|
|
|
|
pipDelegate.player = self
|
|
|
|
|
|
|
|
|
|
self.pipDelegate = pipDelegate
|
|
|
|
|
pipController?.delegate = pipDelegate
|
2021-10-24 18:01:08 +00:00
|
|
|
|
}
|
2021-10-24 14:01:36 +00:00
|
|
|
|
|
2021-12-19 17:17:04 +00:00
|
|
|
|
func show() {
|
2022-05-28 21:41:23 +00:00
|
|
|
|
#if os(macOS)
|
|
|
|
|
if presentingPlayer {
|
2022-01-06 15:35:45 +00:00
|
|
|
|
Windows.player.focus()
|
2022-05-28 21:41:23 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-08-25 17:09:55 +00:00
|
|
|
|
#if os(iOS)
|
|
|
|
|
Delay.by(0.5) {
|
|
|
|
|
self.navigation.hideKeyboard()
|
2022-07-09 00:21:04 +00:00
|
|
|
|
}
|
2022-08-25 17:09:55 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2022-08-29 12:07:27 +00:00
|
|
|
|
presentingPlayer = true
|
2022-08-29 15:56:49 +00:00
|
|
|
|
setNeedsDrawing(true)
|
2022-05-28 21:41:23 +00:00
|
|
|
|
|
2021-12-19 17:17:04 +00:00
|
|
|
|
#if os(macOS)
|
2022-01-06 15:35:45 +00:00
|
|
|
|
Windows.player.open()
|
|
|
|
|
Windows.player.focus()
|
2021-12-19 17:17:04 +00:00
|
|
|
|
#endif
|
2021-06-15 21:21:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-25 17:09:55 +00:00
|
|
|
|
func hide(animate: Bool = true) {
|
|
|
|
|
if animate {
|
|
|
|
|
withAnimation(.easeOut(duration: 0.2)) {
|
|
|
|
|
presentingPlayer = false
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-08-08 18:02:46 +00:00
|
|
|
|
presentingPlayer = false
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-26 15:23:56 +00:00
|
|
|
|
DispatchQueue.main.async { [weak self] in
|
2022-08-25 17:09:55 +00:00
|
|
|
|
self?.exitFullScreen(showControls: false)
|
2022-06-26 15:23:56 +00:00
|
|
|
|
}
|
2022-03-27 19:17:52 +00:00
|
|
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
|
if Defaults[.lockPortraitWhenBrowsing] {
|
|
|
|
|
Orientation.lockOrientation(.portrait, andRotateTo: .portrait)
|
2022-06-14 21:20:36 +00:00
|
|
|
|
} else {
|
|
|
|
|
Orientation.lockOrientation(.allButUpsideDown)
|
2022-03-27 19:17:52 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2022-08-26 20:17:21 +00:00
|
|
|
|
#if os(macOS)
|
|
|
|
|
Windows.player.hide()
|
|
|
|
|
#endif
|
2021-12-19 17:17:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-08 23:14:28 +00:00
|
|
|
|
func togglePlayer() {
|
2021-12-19 17:17:04 +00:00
|
|
|
|
#if os(macOS)
|
|
|
|
|
if !presentingPlayer {
|
2022-01-06 15:35:45 +00:00
|
|
|
|
Windows.player.open()
|
2021-12-19 17:17:04 +00:00
|
|
|
|
}
|
2022-01-06 15:35:45 +00:00
|
|
|
|
Windows.player.focus()
|
2022-08-26 20:17:21 +00:00
|
|
|
|
|
|
|
|
|
if Windows.player.visible,
|
|
|
|
|
closePiPOnOpeningPlayer
|
|
|
|
|
{
|
|
|
|
|
closePiP()
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-19 17:17:04 +00:00
|
|
|
|
#else
|
|
|
|
|
if presentingPlayer {
|
|
|
|
|
hide()
|
|
|
|
|
} else {
|
|
|
|
|
show()
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2021-11-08 23:14:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-29 18:39:38 +00:00
|
|
|
|
var isLoadingVideo: Bool {
|
|
|
|
|
guard !currentVideo.isNil else {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
return backend.isLoadingVideo
|
2021-12-29 18:39:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-16 22:48:58 +00:00
|
|
|
|
var isPlaying: Bool {
|
2022-02-16 20:23:11 +00:00
|
|
|
|
backend.isPlaying
|
2021-10-16 22:48:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
var playerItemDuration: CMTime? {
|
2022-06-18 12:39:49 +00:00
|
|
|
|
guard !currentItem.isNil else {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return backend.playerItemDuration
|
2021-10-22 20:49:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
var playerItemDurationWithoutSponsorSegments: CMTime? {
|
2022-06-18 12:39:49 +00:00
|
|
|
|
guard let playerItemDuration = playerItemDuration, !playerItemDuration.seconds.isZero else {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return playerItemDuration - .secondsInDefaultTimescale(
|
2022-02-16 20:23:11 +00:00
|
|
|
|
sponsorBlock.segments.reduce(0) { $0 + $1.duration }
|
|
|
|
|
)
|
2021-10-22 23:04:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
var videoDuration: TimeInterval? {
|
2022-07-21 22:44:21 +00:00
|
|
|
|
playerItemDuration?.seconds ?? currentItem?.duration ?? currentVideo?.length
|
2021-10-22 20:49:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
var time: CMTime? {
|
|
|
|
|
currentItem?.playbackTime
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var live: Bool {
|
|
|
|
|
currentVideo?.live ?? false
|
2021-10-22 20:49:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-21 22:44:21 +00:00
|
|
|
|
var playingLive: Bool {
|
|
|
|
|
guard live,
|
|
|
|
|
let videoDuration = videoDuration,
|
|
|
|
|
let time = backend.currentTime?.seconds else { return false }
|
|
|
|
|
|
|
|
|
|
return videoDuration - time < 30
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var liveStreamInAVPlayer: Bool {
|
|
|
|
|
live && activeBackend == .appleAVPlayer
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-05 20:20:09 +00:00
|
|
|
|
func togglePlay() {
|
2022-02-16 20:23:11 +00:00
|
|
|
|
backend.togglePlay()
|
2021-06-15 16:35:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-05 20:20:09 +00:00
|
|
|
|
func play() {
|
2022-02-16 20:23:11 +00:00
|
|
|
|
backend.play()
|
2021-07-29 22:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-05 20:20:09 +00:00
|
|
|
|
func pause() {
|
2022-02-16 20:23:11 +00:00
|
|
|
|
backend.pause()
|
2021-09-25 08:18:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-29 14:38:37 +00:00
|
|
|
|
func play(_ video: Video, at time: CMTime? = nil, showingPlayer: Bool = true) {
|
2022-05-30 19:00:53 +00:00
|
|
|
|
pause()
|
|
|
|
|
|
2022-08-20 20:31:03 +00:00
|
|
|
|
var changeBackendHandler: (() -> Void)?
|
|
|
|
|
|
2022-08-22 21:14:27 +00:00
|
|
|
|
if let backend = (live && forceAVPlayerForLiveStreams) ? PlayerBackendType.appleAVPlayer :
|
|
|
|
|
(qualityProfile?.backend ?? QualityProfilesModel.shared.automaticProfile?.backend),
|
|
|
|
|
activeBackend != backend,
|
|
|
|
|
backend == .appleAVPlayer || !avPlayerBackend.startPictureInPictureOnPlay
|
2022-08-20 20:31:03 +00:00
|
|
|
|
{
|
|
|
|
|
changeBackendHandler = { [weak self] in
|
|
|
|
|
guard let self = self else { return }
|
|
|
|
|
self.changeActiveBackend(from: self.activeBackend, to: backend)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-30 19:00:53 +00:00
|
|
|
|
#if os(iOS)
|
2022-06-18 12:39:49 +00:00
|
|
|
|
if !playingInPictureInPicture, showingPlayer {
|
2022-08-26 08:25:07 +00:00
|
|
|
|
onPresentPlayer.append { [weak self] in
|
2022-08-20 20:31:03 +00:00
|
|
|
|
changeBackendHandler?()
|
|
|
|
|
self?.playNow(video, at: time)
|
|
|
|
|
}
|
2022-06-18 12:39:49 +00:00
|
|
|
|
show()
|
2022-05-28 21:41:23 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
2022-06-18 12:39:49 +00:00
|
|
|
|
#endif
|
2022-05-28 21:41:23 +00:00
|
|
|
|
|
2022-08-20 20:31:03 +00:00
|
|
|
|
changeBackendHandler?()
|
2022-06-18 12:39:49 +00:00
|
|
|
|
playNow(video, at: time)
|
2021-12-26 21:14:46 +00:00
|
|
|
|
|
|
|
|
|
guard !playingInPictureInPicture else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-29 14:38:37 +00:00
|
|
|
|
if showingPlayer {
|
|
|
|
|
show()
|
|
|
|
|
}
|
2021-10-16 22:48:58 +00:00
|
|
|
|
}
|
2021-07-18 22:32:46 +00:00
|
|
|
|
|
2021-10-24 18:01:08 +00:00
|
|
|
|
func playStream(
|
2021-10-16 22:48:58 +00:00
|
|
|
|
_ stream: Stream,
|
|
|
|
|
of video: Video,
|
2021-12-17 19:55:52 +00:00
|
|
|
|
preservingTime: Bool = false,
|
2022-08-26 20:17:21 +00:00
|
|
|
|
upgrading: Bool = false,
|
|
|
|
|
withBackend: PlayerBackend? = nil
|
2021-10-16 22:48:58 +00:00
|
|
|
|
) {
|
2021-11-07 16:52:42 +00:00
|
|
|
|
playerError = nil
|
2021-12-17 19:55:52 +00:00
|
|
|
|
if !upgrading {
|
|
|
|
|
resetSegments()
|
|
|
|
|
|
2021-12-29 18:55:41 +00:00
|
|
|
|
DispatchQueue.main.async { [weak self] in
|
|
|
|
|
self?.sponsorBlock.loadSegments(
|
|
|
|
|
videoID: video.videoID,
|
|
|
|
|
categories: Defaults[.sponsorBlockCategories]
|
2022-04-16 17:50:02 +00:00
|
|
|
|
)
|
2022-03-19 23:04:56 +00:00
|
|
|
|
|
2022-03-20 20:31:19 +00:00
|
|
|
|
guard Defaults[.enableReturnYouTubeDislike] else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-19 23:04:56 +00:00
|
|
|
|
self?.returnYouTubeDislike.loadDislikes(videoID: video.videoID) { [weak self] dislikes in
|
|
|
|
|
self?.currentItem?.video?.dislikes = dislikes
|
|
|
|
|
}
|
2021-12-17 19:55:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-23 16:49:45 +00:00
|
|
|
|
|
2022-08-26 20:17:21 +00:00
|
|
|
|
(withBackend ?? backend).playStream(
|
2022-02-16 20:23:11 +00:00
|
|
|
|
stream,
|
|
|
|
|
of: video,
|
|
|
|
|
preservingTime: preservingTime,
|
|
|
|
|
upgrading: upgrading
|
|
|
|
|
)
|
2022-02-16 21:10:57 +00:00
|
|
|
|
|
|
|
|
|
if !upgrading {
|
|
|
|
|
updateCurrentArtwork()
|
|
|
|
|
}
|
2022-02-16 20:23:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func saveTime(completionHandler: @escaping () -> Void = {}) {
|
|
|
|
|
guard let currentTime = backend.currentTime, currentTime.seconds > 0 else {
|
2022-05-29 14:38:37 +00:00
|
|
|
|
completionHandler()
|
2022-02-16 20:23:11 +00:00
|
|
|
|
return
|
2021-07-18 22:32:46 +00:00
|
|
|
|
}
|
2021-10-28 20:18:23 +00:00
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
DispatchQueue.main.async { [weak self] in
|
|
|
|
|
self?.preservedTime = currentTime
|
|
|
|
|
completionHandler()
|
2021-12-17 19:55:52 +00:00
|
|
|
|
}
|
2021-07-18 22:32:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
func upgradeToStream(_ stream: Stream, force: Bool = false) {
|
2022-05-29 15:50:54 +00:00
|
|
|
|
guard let video = currentVideo else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
if !self.stream.isNil, force || self.stream != stream {
|
2022-05-29 15:50:54 +00:00
|
|
|
|
playStream(stream, of: video, preservingTime: true, upgrading: true)
|
2021-12-26 21:14:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-19 16:56:47 +00:00
|
|
|
|
private func handleAvailableStreamsChange() {
|
|
|
|
|
rebuildTVMenu()
|
|
|
|
|
|
|
|
|
|
guard stream.isNil else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-22 21:14:27 +00:00
|
|
|
|
if let backend = (live && forceAVPlayerForLiveStreams) ? PlayerBackendType.appleAVPlayer : qualityProfile?.backend,
|
|
|
|
|
backend != activeBackend,
|
|
|
|
|
backend == .appleAVPlayer || !(avPlayerBackend.startPictureInPictureOnPlay || playingInPictureInPicture)
|
2022-08-18 22:40:46 +00:00
|
|
|
|
{
|
2022-08-22 21:14:27 +00:00
|
|
|
|
changeActiveBackend(from: activeBackend, to: backend)
|
2022-08-14 17:06:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
guard let stream = streamByQualityProfile else {
|
2021-12-19 16:56:47 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
streamSelection = stream
|
|
|
|
|
playStream(
|
|
|
|
|
stream,
|
|
|
|
|
of: currentVideo!,
|
|
|
|
|
preservingTime: !currentItem.playbackTime.isNil
|
|
|
|
|
)
|
|
|
|
|
}
|
2021-12-19 17:17:04 +00:00
|
|
|
|
|
|
|
|
|
private func handlePresentationChange() {
|
2022-05-28 21:41:23 +00:00
|
|
|
|
var delay = 0.0
|
|
|
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
|
if presentingPlayer {
|
|
|
|
|
delay = 0.2
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-08-29 15:56:49 +00:00
|
|
|
|
backend.setNeedsDrawing(presentingPlayer)
|
2022-05-28 21:41:23 +00:00
|
|
|
|
|
2022-08-28 22:29:29 +00:00
|
|
|
|
controls.hide()
|
2022-02-16 20:23:11 +00:00
|
|
|
|
|
2022-04-03 15:03:56 +00:00
|
|
|
|
#if !os(macOS)
|
|
|
|
|
UIApplication.shared.isIdleTimerDisabled = presentingPlayer
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-12-19 17:17:04 +00:00
|
|
|
|
if presentingPlayer, closePiPOnOpeningPlayer, playingInPictureInPicture {
|
|
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { [weak self] in
|
|
|
|
|
self?.closePiP()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !presentingPlayer, pauseOnHidingPlayer, !playingInPictureInPicture {
|
2022-08-18 22:40:46 +00:00
|
|
|
|
DispatchQueue.main.async { [weak self] in
|
2021-12-19 17:17:04 +00:00
|
|
|
|
self?.pause()
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-11-05 14:58:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-26 20:17:21 +00:00
|
|
|
|
func changeActiveBackend(from: PlayerBackendType, to: PlayerBackendType, changingStream: Bool = true) {
|
2022-05-29 14:38:37 +00:00
|
|
|
|
guard activeBackend != to else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-22 21:14:27 +00:00
|
|
|
|
logger.info("changing backend from \(from.rawValue) to \(to.rawValue)")
|
|
|
|
|
|
2022-08-28 17:18:49 +00:00
|
|
|
|
let wasPlaying = isPlaying
|
|
|
|
|
|
2022-08-18 22:40:46 +00:00
|
|
|
|
if to == .mpv {
|
|
|
|
|
closePiP()
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
Defaults[.activeBackend] = to
|
|
|
|
|
self.activeBackend = to
|
2021-12-29 18:55:41 +00:00
|
|
|
|
|
2022-08-26 20:17:21 +00:00
|
|
|
|
let fromBackend: PlayerBackend = from == .appleAVPlayer ? avPlayerBackend : mpvBackend
|
|
|
|
|
let toBackend: PlayerBackend = to == .appleAVPlayer ? avPlayerBackend : mpvBackend
|
|
|
|
|
|
2022-08-20 20:31:03 +00:00
|
|
|
|
self.backend.didChangeTo()
|
|
|
|
|
|
2022-08-28 17:18:49 +00:00
|
|
|
|
if wasPlaying {
|
|
|
|
|
fromBackend.pause()
|
|
|
|
|
}
|
2022-08-26 20:17:21 +00:00
|
|
|
|
|
|
|
|
|
guard var stream = stream, changingStream else {
|
2021-07-18 22:32:46 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
if let stream = toBackend.stream, toBackend.video == fromBackend.video {
|
2022-08-28 17:18:49 +00:00
|
|
|
|
toBackend.seek(to: fromBackend.currentTime?.seconds ?? .zero, seekType: .backendSync) { finished in
|
2021-10-22 20:49:31 +00:00
|
|
|
|
guard finished else {
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-08-28 17:18:49 +00:00
|
|
|
|
if wasPlaying {
|
|
|
|
|
toBackend.play()
|
|
|
|
|
}
|
2021-10-05 20:20:09 +00:00
|
|
|
|
}
|
2021-10-16 22:48:58 +00:00
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
self.stream = stream
|
|
|
|
|
streamSelection = stream
|
2021-07-22 12:43:13 +00:00
|
|
|
|
|
2021-10-16 22:48:58 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-29 14:39:00 +00:00
|
|
|
|
if !backend.canPlay(stream) || (to == .mpv && !stream.hlsURL.isNil) {
|
2022-08-14 17:06:22 +00:00
|
|
|
|
guard let preferredStream = streamByQualityProfile else {
|
2021-10-24 18:01:08 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
stream = preferredStream
|
|
|
|
|
streamSelection = preferredStream
|
2021-12-05 17:15:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { [weak self] in
|
2022-05-27 22:59:35 +00:00
|
|
|
|
guard let self = self else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
self.upgradeToStream(stream, force: true)
|
2021-12-26 21:14:46 +00:00
|
|
|
|
}
|
2021-10-28 20:18:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-14 17:06:22 +00:00
|
|
|
|
func handleQualityProfileChange() {
|
|
|
|
|
guard let profile = qualityProfile else { return }
|
|
|
|
|
|
|
|
|
|
if activeBackend != profile.backend { changeActiveBackend(from: activeBackend, to: profile.backend) }
|
|
|
|
|
guard let profileStream = streamByQualityProfile, stream != profileStream else { return }
|
|
|
|
|
|
|
|
|
|
DispatchQueue.main.async { [weak self] in
|
|
|
|
|
self?.streamSelection = profileStream
|
|
|
|
|
self?.upgradeToStream(profileStream)
|
|
|
|
|
}
|
2021-10-28 20:18:23 +00:00
|
|
|
|
}
|
2021-11-02 17:24:59 +00:00
|
|
|
|
|
|
|
|
|
func rateLabel(_ rate: Float) -> String {
|
|
|
|
|
let formatter = NumberFormatter()
|
|
|
|
|
formatter.minimumFractionDigits = 0
|
|
|
|
|
formatter.maximumFractionDigits = 2
|
|
|
|
|
|
|
|
|
|
return "\(formatter.string(from: NSNumber(value: rate))!)×"
|
|
|
|
|
}
|
2021-12-02 20:19:10 +00:00
|
|
|
|
|
2022-04-03 12:23:42 +00:00
|
|
|
|
func closeCurrentItem(finished: Bool = false) {
|
2022-08-07 11:15:27 +00:00
|
|
|
|
pause()
|
2022-08-18 22:40:46 +00:00
|
|
|
|
closePiP()
|
2022-08-07 11:15:27 +00:00
|
|
|
|
|
2022-04-03 12:23:42 +00:00
|
|
|
|
prepareCurrentItemForHistory(finished: finished)
|
2021-12-02 20:19:10 +00:00
|
|
|
|
currentItem = nil
|
2022-08-14 22:13:29 +00:00
|
|
|
|
updateNowPlayingInfo()
|
2022-02-16 20:23:11 +00:00
|
|
|
|
|
|
|
|
|
backend.closeItem()
|
2022-07-10 01:15:15 +00:00
|
|
|
|
aspectRatio = VideoPlayerView.defaultAspectRatio
|
2022-07-10 22:24:56 +00:00
|
|
|
|
resetAutoplay()
|
2022-08-07 11:15:27 +00:00
|
|
|
|
|
|
|
|
|
exitFullScreen()
|
|
|
|
|
|
|
|
|
|
#if !os(macOS)
|
2022-08-25 17:09:55 +00:00
|
|
|
|
if closePlayerOnItemClose { Delay.by(0.2) { self.hide() } }
|
2022-08-07 11:15:27 +00:00
|
|
|
|
#endif
|
2021-12-02 20:19:10 +00:00
|
|
|
|
}
|
2021-12-19 17:17:04 +00:00
|
|
|
|
|
2022-08-26 20:17:21 +00:00
|
|
|
|
func startPiP() {
|
|
|
|
|
avPlayerBackend.startPictureInPictureOnPlay = false
|
|
|
|
|
avPlayerBackend.startPictureInPictureOnSwitch = false
|
|
|
|
|
|
|
|
|
|
if activeBackend == .appleAVPlayer {
|
|
|
|
|
avPlayerBackend.tryStartingPictureInPicture()
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
guard let video = currentVideo else { return }
|
|
|
|
|
guard let stream = avPlayerBackend.bestPlayable(availableStreams, maxResolution: .hd720p30) else { return }
|
|
|
|
|
|
|
|
|
|
exitFullScreen()
|
|
|
|
|
|
|
|
|
|
if avPlayerBackend.video == video {
|
|
|
|
|
if activeBackend != .appleAVPlayer {
|
|
|
|
|
avPlayerBackend.startPictureInPictureOnSwitch = true
|
|
|
|
|
changeActiveBackend(from: activeBackend, to: .appleAVPlayer)
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
avPlayerBackend.startPictureInPictureOnPlay = true
|
|
|
|
|
playStream(stream, of: video, preservingTime: true, upgrading: true, withBackend: avPlayerBackend)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
controls.objectWillChange.send()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var transitioningToPiP: Bool {
|
|
|
|
|
avPlayerBackend.startPictureInPictureOnPlay || avPlayerBackend.startPictureInPictureOnSwitch
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var pipPossible: Bool {
|
|
|
|
|
guard activeBackend == .appleAVPlayer else { return !transitioningToPiP }
|
|
|
|
|
|
|
|
|
|
guard let pipController = pipController else { return false }
|
|
|
|
|
guard !pipController.isPictureInPictureActive else { return true }
|
|
|
|
|
|
|
|
|
|
return pipController.isPictureInPicturePossible && !transitioningToPiP
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-19 17:17:04 +00:00
|
|
|
|
func closePiP() {
|
|
|
|
|
guard playingInPictureInPicture else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-26 20:17:21 +00:00
|
|
|
|
avPlayerBackend.startPictureInPictureOnPlay = false
|
|
|
|
|
avPlayerBackend.startPictureInPictureOnSwitch = false
|
|
|
|
|
|
2021-12-19 17:17:04 +00:00
|
|
|
|
#if os(tvOS)
|
|
|
|
|
show()
|
|
|
|
|
#endif
|
2021-12-19 23:36:12 +00:00
|
|
|
|
|
2022-08-18 22:40:46 +00:00
|
|
|
|
backend.closePiP()
|
2022-06-26 14:46:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func handleQueueChange() {
|
|
|
|
|
Defaults[.queue] = queue
|
|
|
|
|
|
2022-07-11 16:10:51 +00:00
|
|
|
|
updateRemoteCommandCenter()
|
2022-06-26 14:46:29 +00:00
|
|
|
|
controls.objectWillChange.send()
|
2021-12-19 17:17:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-09 15:05:05 +00:00
|
|
|
|
func handleCurrentItemChange() {
|
2022-01-06 15:35:45 +00:00
|
|
|
|
#if os(macOS)
|
|
|
|
|
Windows.player.window?.title = windowTitle
|
|
|
|
|
#endif
|
2022-01-09 15:05:05 +00:00
|
|
|
|
|
2022-06-29 22:12:37 +00:00
|
|
|
|
DispatchQueue.main.async(qos: .background) { [weak self] in
|
2022-07-10 22:24:56 +00:00
|
|
|
|
guard let self = self else { return }
|
|
|
|
|
Defaults[.lastPlayed] = self.currentItem
|
|
|
|
|
|
|
|
|
|
if self.playbackMode == .related,
|
|
|
|
|
let video = self.currentVideo,
|
|
|
|
|
self.autoplayItemSource.isNil || self.autoplayItemSource?.videoID != video.videoID
|
|
|
|
|
{
|
|
|
|
|
self.setRelatedAutoplayItem()
|
|
|
|
|
}
|
2022-06-29 22:12:37 +00:00
|
|
|
|
}
|
2022-01-06 15:35:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-10 22:24:56 +00:00
|
|
|
|
func handlePlaybackModeChange() {
|
|
|
|
|
Defaults[.playbackMode] = playbackMode
|
|
|
|
|
|
2022-07-11 16:10:51 +00:00
|
|
|
|
updateRemoteCommandCenter()
|
|
|
|
|
|
2022-07-10 22:24:56 +00:00
|
|
|
|
guard playbackMode == .related else {
|
|
|
|
|
autoplayItem = nil
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
setRelatedAutoplayItem()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func setRelatedAutoplayItem() {
|
2022-07-11 17:44:49 +00:00
|
|
|
|
guard let video = currentVideo else { return }
|
|
|
|
|
let related = video.related.filter { $0.videoID != autoplayItem?.video?.videoID }
|
2022-07-10 22:24:56 +00:00
|
|
|
|
|
2022-07-11 17:44:49 +00:00
|
|
|
|
let watchFetchRequest = Watch.fetchRequest()
|
|
|
|
|
watchFetchRequest.predicate = NSPredicate(format: "videoID IN %@", related.map(\.videoID) as [String])
|
2022-07-10 22:24:56 +00:00
|
|
|
|
|
2022-07-11 17:44:49 +00:00
|
|
|
|
let results = try? context.fetch(watchFetchRequest)
|
|
|
|
|
|
|
|
|
|
context.perform { [weak self] in
|
|
|
|
|
guard let self = self,
|
|
|
|
|
let results = results else { return }
|
|
|
|
|
let resultsIds = results.map(\.videoID)
|
|
|
|
|
|
|
|
|
|
guard let autoplayVideo = related.filter({ !resultsIds.contains($0.videoID) }).randomElement() else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let item = PlayerQueueItem(autoplayVideo)
|
|
|
|
|
self.autoplayItem = item
|
|
|
|
|
self.autoplayItemSource = video
|
|
|
|
|
|
|
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 3) { [weak self] in
|
|
|
|
|
guard let self = self else { return }
|
2022-08-16 21:16:35 +00:00
|
|
|
|
self.playerAPI.loadDetails(item, completionHandler: { newItem in
|
2022-07-11 17:44:49 +00:00
|
|
|
|
guard newItem.videoID == self.autoplayItem?.videoID else { return }
|
|
|
|
|
self.autoplayItem = newItem
|
|
|
|
|
self.updateRemoteCommandCenter()
|
|
|
|
|
self.controls.objectWillChange.send()
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-07-10 22:24:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-11 16:10:51 +00:00
|
|
|
|
func updateRemoteCommandCenter() {
|
|
|
|
|
let skipForwardCommand = MPRemoteCommandCenter.shared().skipForwardCommand
|
|
|
|
|
let skipBackwardCommand = MPRemoteCommandCenter.shared().skipBackwardCommand
|
|
|
|
|
let previousTrackCommand = MPRemoteCommandCenter.shared().previousTrackCommand
|
|
|
|
|
let nextTrackCommand = MPRemoteCommandCenter.shared().nextTrackCommand
|
|
|
|
|
|
|
|
|
|
if !remoteCommandCenterConfigured {
|
|
|
|
|
remoteCommandCenterConfigured = true
|
|
|
|
|
|
|
|
|
|
#if !os(macOS)
|
|
|
|
|
UIApplication.shared.beginReceivingRemoteControlEvents()
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
let preferredIntervals = [NSNumber(10)]
|
|
|
|
|
|
|
|
|
|
skipForwardCommand.preferredIntervals = preferredIntervals
|
|
|
|
|
skipBackwardCommand.preferredIntervals = preferredIntervals
|
|
|
|
|
|
|
|
|
|
skipForwardCommand.addTarget { [weak self] _ in
|
2022-08-28 17:18:49 +00:00
|
|
|
|
self?.backend.seek(relative: .secondsInDefaultTimescale(10), seekType: .userInteracted)
|
2022-07-11 16:10:51 +00:00
|
|
|
|
return .success
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
skipBackwardCommand.addTarget { [weak self] _ in
|
2022-08-28 17:18:49 +00:00
|
|
|
|
self?.backend.seek(relative: .secondsInDefaultTimescale(-10), seekType: .userInteracted)
|
2022-07-11 16:10:51 +00:00
|
|
|
|
return .success
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
previousTrackCommand.addTarget { [weak self] _ in
|
2022-08-28 17:18:49 +00:00
|
|
|
|
self?.backend.seek(to: .zero, seekType: .userInteracted)
|
2022-07-11 16:10:51 +00:00
|
|
|
|
return .success
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nextTrackCommand.addTarget { [weak self] _ in
|
|
|
|
|
self?.advanceToNextItem()
|
|
|
|
|
return .success
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MPRemoteCommandCenter.shared().playCommand.addTarget { [weak self] _ in
|
|
|
|
|
self?.play()
|
|
|
|
|
return .success
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MPRemoteCommandCenter.shared().pauseCommand.addTarget { [weak self] _ in
|
|
|
|
|
self?.pause()
|
|
|
|
|
return .success
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MPRemoteCommandCenter.shared().togglePlayPauseCommand.addTarget { [weak self] _ in
|
|
|
|
|
self?.togglePlay()
|
|
|
|
|
return .success
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MPRemoteCommandCenter.shared().changePlaybackPositionCommand.addTarget { [weak self] remoteEvent in
|
|
|
|
|
guard let event = remoteEvent as? MPChangePlaybackPositionCommandEvent else { return .commandFailed }
|
|
|
|
|
|
2022-08-28 17:18:49 +00:00
|
|
|
|
self?.backend.seek(to: event.positionTime, seekType: .userInteracted)
|
2022-07-11 16:10:51 +00:00
|
|
|
|
|
|
|
|
|
return .success
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch Defaults[.systemControlsCommands] {
|
|
|
|
|
case .seek:
|
|
|
|
|
previousTrackCommand.isEnabled = false
|
|
|
|
|
nextTrackCommand.isEnabled = false
|
|
|
|
|
skipForwardCommand.isEnabled = true
|
|
|
|
|
skipBackwardCommand.isEnabled = true
|
|
|
|
|
|
|
|
|
|
case .restartAndAdvanceToNext:
|
|
|
|
|
skipForwardCommand.isEnabled = false
|
|
|
|
|
skipBackwardCommand.isEnabled = false
|
|
|
|
|
previousTrackCommand.isEnabled = true
|
|
|
|
|
nextTrackCommand.isEnabled = isAdvanceToNextItemAvailable
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-10 22:24:56 +00:00
|
|
|
|
func resetAutoplay() {
|
|
|
|
|
autoplayItem = nil
|
|
|
|
|
autoplayItemSource = nil
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-19 17:17:04 +00:00
|
|
|
|
#if os(macOS)
|
|
|
|
|
var windowTitle: String {
|
2022-08-14 22:13:29 +00:00
|
|
|
|
currentVideo.isNil ? "Not Playing" : "\(currentVideo!.title) - \(currentVideo!.author)"
|
2021-12-19 17:17:04 +00:00
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
func handleEnterForeground() {
|
2022-06-30 09:46:20 +00:00
|
|
|
|
setNeedsDrawing(presentingPlayer)
|
2022-08-20 20:31:03 +00:00
|
|
|
|
avPlayerBackend.playerLayer.player = avPlayerBackend.avPlayer
|
2022-06-05 17:12:00 +00:00
|
|
|
|
|
2021-12-19 17:17:04 +00:00
|
|
|
|
guard closePiPAndOpenPlayerOnEnteringForeground, playingInPictureInPicture else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
show()
|
|
|
|
|
closePiP()
|
|
|
|
|
}
|
2022-01-02 19:43:30 +00:00
|
|
|
|
|
2022-06-05 17:12:00 +00:00
|
|
|
|
func handleEnterBackground() {
|
2022-06-30 09:46:20 +00:00
|
|
|
|
if Defaults[.pauseOnEnteringBackground], !playingInPictureInPicture, !musicMode {
|
2022-06-18 12:39:49 +00:00
|
|
|
|
pause()
|
2022-08-20 20:31:03 +00:00
|
|
|
|
} else if !playingInPictureInPicture {
|
|
|
|
|
avPlayerBackend.playerLayer.player = nil
|
2022-06-18 12:39:49 +00:00
|
|
|
|
}
|
2022-06-05 17:12:00 +00:00
|
|
|
|
}
|
2022-08-08 18:02:46 +00:00
|
|
|
|
#endif
|
2022-06-05 17:12:00 +00:00
|
|
|
|
|
2022-08-08 18:02:46 +00:00
|
|
|
|
func enterFullScreen(showControls: Bool = true) {
|
|
|
|
|
guard !playingFullScreen else { return }
|
2022-01-02 19:43:30 +00:00
|
|
|
|
|
2022-08-08 18:02:46 +00:00
|
|
|
|
logger.info("entering fullscreen")
|
|
|
|
|
toggleFullscreen(false, showControls: showControls)
|
|
|
|
|
}
|
2022-01-02 19:43:30 +00:00
|
|
|
|
|
2022-08-08 18:02:46 +00:00
|
|
|
|
func exitFullScreen(showControls: Bool = true) {
|
|
|
|
|
guard playingFullScreen else { return }
|
2022-01-02 19:43:30 +00:00
|
|
|
|
|
2022-08-08 18:02:46 +00:00
|
|
|
|
logger.info("exiting fullscreen")
|
|
|
|
|
toggleFullscreen(true, showControls: showControls)
|
|
|
|
|
}
|
2022-02-16 21:10:57 +00:00
|
|
|
|
|
|
|
|
|
func updateNowPlayingInfo() {
|
2022-08-28 22:29:29 +00:00
|
|
|
|
#if os(tvOS)
|
|
|
|
|
guard activeBackend == .mpv else { return }
|
|
|
|
|
#endif
|
|
|
|
|
guard let video = currentItem?.video else {
|
|
|
|
|
MPNowPlayingInfoCenter.default().nowPlayingInfo = .none
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-02-16 21:10:57 +00:00
|
|
|
|
|
2022-08-28 22:29:29 +00:00
|
|
|
|
let currentTime = (backend.currentTime?.seconds.isFinite ?? false) ? backend.currentTime!.seconds : 0
|
|
|
|
|
var nowPlayingInfo: [String: AnyObject] = [
|
|
|
|
|
MPMediaItemPropertyTitle: video.title as AnyObject,
|
|
|
|
|
MPMediaItemPropertyArtist: video.author as AnyObject,
|
|
|
|
|
MPNowPlayingInfoPropertyIsLiveStream: live as AnyObject,
|
|
|
|
|
MPNowPlayingInfoPropertyElapsedPlaybackTime: currentTime as AnyObject,
|
|
|
|
|
MPNowPlayingInfoPropertyPlaybackQueueCount: queue.count as AnyObject,
|
|
|
|
|
MPNowPlayingInfoPropertyPlaybackQueueIndex: 1 as AnyObject,
|
|
|
|
|
MPMediaItemPropertyMediaType: MPMediaType.anyVideo.rawValue as AnyObject
|
|
|
|
|
]
|
2022-08-20 20:28:31 +00:00
|
|
|
|
|
2022-08-28 22:29:29 +00:00
|
|
|
|
if !currentArtwork.isNil {
|
|
|
|
|
nowPlayingInfo[MPMediaItemPropertyArtwork] = currentArtwork as AnyObject
|
|
|
|
|
}
|
2022-02-16 21:10:57 +00:00
|
|
|
|
|
2022-08-28 22:29:29 +00:00
|
|
|
|
if !video.live {
|
|
|
|
|
let itemDuration = (backend.playerItemDuration ?? .zero).seconds
|
|
|
|
|
let duration = itemDuration.isFinite ? Double(itemDuration) : nil
|
2022-02-16 21:10:57 +00:00
|
|
|
|
|
2022-08-28 22:29:29 +00:00
|
|
|
|
if !duration.isNil {
|
|
|
|
|
nowPlayingInfo[MPMediaItemPropertyPlaybackDuration] = duration as AnyObject
|
2022-02-16 21:10:57 +00:00
|
|
|
|
}
|
2022-08-28 22:29:29 +00:00
|
|
|
|
}
|
2022-02-16 21:10:57 +00:00
|
|
|
|
|
2022-08-28 22:29:29 +00:00
|
|
|
|
MPNowPlayingInfoCenter.default().nowPlayingInfo = nowPlayingInfo
|
2022-02-16 21:10:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func updateCurrentArtwork() {
|
|
|
|
|
guard let video = currentVideo,
|
2022-06-26 21:28:03 +00:00
|
|
|
|
let thumbnailURL = video.thumbnailURL(quality: .medium)
|
2022-02-16 21:10:57 +00:00
|
|
|
|
else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-26 21:28:03 +00:00
|
|
|
|
let task = URLSession.shared.dataTask(with: thumbnailURL) { [weak self] thumbnailData, _, _ in
|
|
|
|
|
guard let thumbnailData = thumbnailData else {
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-02-16 21:10:57 +00:00
|
|
|
|
|
2022-06-26 21:28:03 +00:00
|
|
|
|
#if os(macOS)
|
|
|
|
|
guard let image = NSImage(data: thumbnailData) else { return }
|
|
|
|
|
#else
|
|
|
|
|
guard let image = UIImage(data: thumbnailData) else { return }
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
self?.currentArtwork = MPMediaItemArtwork(boundsSize: image.size) { _ in image }
|
2022-02-16 21:10:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-26 21:28:03 +00:00
|
|
|
|
task.resume()
|
2022-02-16 21:10:57 +00:00
|
|
|
|
}
|
2022-04-03 12:23:42 +00:00
|
|
|
|
|
2022-08-07 11:48:50 +00:00
|
|
|
|
func toggleFullscreen(_ isFullScreen: Bool, showControls: Bool = true) {
|
|
|
|
|
controls.presentingControls = showControls && isFullScreen
|
2022-04-03 12:23:42 +00:00
|
|
|
|
|
|
|
|
|
#if os(macOS)
|
2022-08-08 18:02:46 +00:00
|
|
|
|
Windows.player.toggleFullScreen()
|
2022-06-16 17:44:39 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2022-08-08 18:02:46 +00:00
|
|
|
|
playingFullScreen = !isFullScreen
|
2022-06-17 10:27:01 +00:00
|
|
|
|
|
2022-07-09 00:21:04 +00:00
|
|
|
|
#if os(iOS)
|
|
|
|
|
if !playingFullScreen {
|
2022-08-07 11:48:50 +00:00
|
|
|
|
let rotationOrientation = rotateToPortraitOnExitFullScreen ? UIInterfaceOrientation.portrait : nil
|
|
|
|
|
Orientation.lockOrientation(.allButUpsideDown, andRotateTo: rotationOrientation)
|
2022-04-03 12:23:42 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2022-05-29 18:26:56 +00:00
|
|
|
|
|
|
|
|
|
func setNeedsDrawing(_ needsDrawing: Bool) {
|
|
|
|
|
backends.forEach { $0.setNeedsDrawing(needsDrawing) }
|
|
|
|
|
}
|
2022-06-07 21:27:48 +00:00
|
|
|
|
|
|
|
|
|
func toggleMusicMode() {
|
|
|
|
|
musicMode.toggle()
|
|
|
|
|
|
|
|
|
|
if musicMode {
|
|
|
|
|
controls.presentingControls = true
|
|
|
|
|
controls.removeTimer()
|
2022-08-20 20:31:03 +00:00
|
|
|
|
|
|
|
|
|
backend.startMusicMode()
|
2022-06-07 21:27:48 +00:00
|
|
|
|
} else {
|
2022-08-20 20:31:03 +00:00
|
|
|
|
backend.stopMusicMode()
|
2022-06-07 21:27:48 +00:00
|
|
|
|
|
|
|
|
|
controls.resetTimer()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-13 14:11:07 +00:00
|
|
|
|
func updateAspectRatio() {
|
2022-08-14 16:59:04 +00:00
|
|
|
|
#if !os(tvOS)
|
|
|
|
|
guard aspectRatio != backend.aspectRatio else { return }
|
2022-08-13 14:11:07 +00:00
|
|
|
|
|
2022-08-14 16:59:04 +00:00
|
|
|
|
DispatchQueue.main.async { [weak self] in
|
|
|
|
|
guard let self = self else { return }
|
|
|
|
|
self.aspectRatio = self.backend.aspectRatio
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2022-08-13 14:11:07 +00:00
|
|
|
|
}
|
2021-06-14 18:05:02 +00:00
|
|
|
|
}
|