NCPlayerToolBar.swift 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  1. //
  2. // NCPlayerToolBar.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/07/21.
  6. // Copyright © 2021 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. import NCCommunication
  25. import CoreMedia
  26. import UIKit
  27. import AVKit
  28. import MediaPlayer
  29. class NCPlayerToolBar: UIView {
  30. @IBOutlet weak var playerTopToolBarView: UIView!
  31. @IBOutlet weak var pipButton: UIButton!
  32. @IBOutlet weak var muteButton: UIButton!
  33. @IBOutlet weak var playButton: UIButton!
  34. @IBOutlet weak var forwardButton: UIButton!
  35. @IBOutlet weak var backButton: UIButton!
  36. @IBOutlet weak var playbackSlider: UISlider!
  37. @IBOutlet weak var labelLeftTime: UILabel!
  38. @IBOutlet weak var labelCurrentTime: UILabel!
  39. enum sliderEventType {
  40. case began
  41. case ended
  42. case moved
  43. }
  44. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  45. private var ncplayer: NCPlayer?
  46. private var wasInPlay: Bool = false
  47. private var playbackSliderEvent: sliderEventType = .ended
  48. private var timerAutoHide: Timer?
  49. private var metadata: tableMetadata?
  50. private var image: UIImage?
  51. private var playCommand: Any?
  52. private var pauseCommand: Any?
  53. private var skipForwardCommand: Any?
  54. private var skipBackwardCommand: Any?
  55. private var nextTrackCommand: Any?
  56. private var previousTrackCommand: Any?
  57. weak var viewerMedia: NCViewerMedia?
  58. // MARK: - View Life Cycle
  59. override func awakeFromNib() {
  60. super.awakeFromNib()
  61. // for disable gesture of UIPageViewController
  62. let panRecognizer = UIPanGestureRecognizer(target: self, action: nil)
  63. addGestureRecognizer(panRecognizer)
  64. let singleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didSingleTapWith(gestureRecognizer:)))
  65. addGestureRecognizer(singleTapGestureRecognizer)
  66. self.layer.cornerRadius = 15
  67. self.layer.masksToBounds = true
  68. let blurEffectView = UIVisualEffectView(effect: UIBlurEffect(style: .dark))
  69. blurEffectView.frame = self.bounds
  70. blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
  71. self.insertSubview(blurEffectView, at:0)
  72. playerTopToolBarView.layer.cornerRadius = 10
  73. playerTopToolBarView.layer.masksToBounds = true
  74. let blurEffectTopToolBarView = UIVisualEffectView(effect: UIBlurEffect(style: .dark))
  75. blurEffectTopToolBarView.frame = playerTopToolBarView.bounds
  76. blurEffectTopToolBarView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
  77. playerTopToolBarView.insertSubview(blurEffectTopToolBarView, at:0)
  78. pipButton.setImage(NCUtility.shared.loadImage(named: "pip.enter", color: .lightGray), for: .normal)
  79. pipButton.isEnabled = false
  80. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff", color: .lightGray), for: .normal)
  81. muteButton.isEnabled = false
  82. playbackSlider.value = 0
  83. playbackSlider.minimumValue = 0
  84. playbackSlider.maximumValue = 0
  85. playbackSlider.isContinuous = true
  86. playbackSlider.tintColor = .lightGray
  87. playbackSlider.isEnabled = false
  88. labelCurrentTime.text = NCUtility.shared.stringFromTime(.zero)
  89. labelCurrentTime.textColor = .lightGray
  90. labelLeftTime.text = NCUtility.shared.stringFromTime(.zero)
  91. labelLeftTime.textColor = .lightGray
  92. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.10", color: .lightGray), for: .normal)
  93. backButton.isEnabled = false
  94. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .lightGray), for: .normal)
  95. playButton.isEnabled = false
  96. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.10", color: .lightGray), for: .normal)
  97. forwardButton.isEnabled = false
  98. NotificationCenter.default.addObserver(self, selector: #selector(handleInterruption), name: AVAudioSession.interruptionNotification, object: nil)
  99. NotificationCenter.default.addObserver(self, selector: #selector(handleRouteChange), name: AVAudioSession.routeChangeNotification, object: nil)
  100. }
  101. deinit {
  102. print("deinit NCPlayerToolBar")
  103. NotificationCenter.default.removeObserver(self, name: AVAudioSession.interruptionNotification, object: nil)
  104. NotificationCenter.default.removeObserver(self, name: AVAudioSession.routeChangeNotification, object: nil)
  105. }
  106. // MARK: -
  107. func setBarPlayer(ncplayer: NCPlayer, timeSeek: CMTime,metadata: tableMetadata, image: UIImage?) {
  108. self.ncplayer = ncplayer
  109. self.metadata = metadata
  110. self.image = image
  111. playbackSlider.value = 0
  112. playbackSlider.minimumValue = 0
  113. playbackSlider.maximumValue = Float(ncplayer.durationTime.seconds)
  114. playbackSlider.addTarget(self, action: #selector(onSliderValChanged(slider:event:)), for: .valueChanged)
  115. labelCurrentTime.text = NCUtility.shared.stringFromTime(.zero)
  116. labelLeftTime.text = "-" + NCUtility.shared.stringFromTime(ncplayer.durationTime)
  117. updateToolBar(commandCenter: true)
  118. }
  119. public func updateToolBar(timeSeek: CMTime? = nil, commandCenter: Bool = false) {
  120. guard let metadata = self.metadata else { return }
  121. guard let ncplayer = self.ncplayer else { return }
  122. var time: CMTime = .zero
  123. // COMMAND CENTER
  124. if commandCenter && CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  125. enableCommandCenter()
  126. }
  127. // MUTE
  128. if CCUtility.getAudioMute() {
  129. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff", color: .white), for: .normal)
  130. } else {
  131. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOn", color: .white), for: .normal)
  132. }
  133. muteButton.isEnabled = true
  134. // PIP
  135. if metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue && CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  136. pipButton.setImage(NCUtility.shared.loadImage(named: "pip.enter", color: .white), for: .normal)
  137. pipButton.isEnabled = true
  138. if let playerLayer = ncplayer.videoLayer, ncplayer.pictureInPictureController == nil {
  139. ncplayer.pictureInPictureController = AVPictureInPictureController(playerLayer: playerLayer)
  140. ncplayer.pictureInPictureController?.delegate = ncplayer
  141. }
  142. } else {
  143. pipButton.setImage(NCUtility.shared.loadImage(named: "pip.enter", color: .gray), for: .normal)
  144. pipButton.isEnabled = false
  145. if ncplayer.pictureInPictureController != nil {
  146. ncplayer.pictureInPictureController = nil
  147. ncplayer.pictureInPictureController?.delegate = nil
  148. }
  149. }
  150. // SLIDER TIME (START - END)
  151. if timeSeek != nil {
  152. time = timeSeek!
  153. } else {
  154. time = (ncplayer.player?.currentTime() ?? .zero).convertScale(1000, method: .default)
  155. }
  156. playbackSlider.value = Float(time.seconds)
  157. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyElapsedPlaybackTime] = time.seconds
  158. playbackSlider.isEnabled = true
  159. labelCurrentTime.text = NCUtility.shared.stringFromTime(time)
  160. labelLeftTime.text = "-" + NCUtility.shared.stringFromTime(ncplayer.durationTime - time)
  161. // BACK
  162. if #available(iOS 13.0, *) {
  163. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.10", color: .white), for: .normal)
  164. } else {
  165. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.10", color: .white, size: 30), for: .normal)
  166. }
  167. backButton.isEnabled = true
  168. // PLAY
  169. if ncplayer.isPlay() {
  170. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 1
  171. } else {
  172. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 0
  173. }
  174. let namedPlay = ncplayer.isPlay() ? "pause.fill" : "play.fill"
  175. if #available(iOS 13.0, *) {
  176. playButton.setImage(NCUtility.shared.loadImage(named: namedPlay, color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: 30)), for: .normal)
  177. } else {
  178. playButton.setImage(NCUtility.shared.loadImage(named: namedPlay, color: .white, size: 30), for: .normal)
  179. }
  180. playButton.isEnabled = true
  181. // FORWARD
  182. if #available(iOS 13.0, *) {
  183. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.10", color: .white), for: .normal)
  184. } else {
  185. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.10", color: .white, size: 30), for: .normal)
  186. }
  187. forwardButton.isEnabled = true
  188. }
  189. // MARK: - Command Center
  190. func enableCommandCenter() {
  191. guard let ncplayer = self.ncplayer else { return }
  192. UIApplication.shared.beginReceivingRemoteControlEvents()
  193. MPRemoteCommandCenter.shared().playCommand.isEnabled = true
  194. var nowPlayingInfo = [String : Any]()
  195. // Add handler for Play Command
  196. playCommand = MPRemoteCommandCenter.shared().playCommand.addTarget { event in
  197. if !ncplayer.isPlay() {
  198. ncplayer.playerPlay()
  199. return .success
  200. }
  201. return .commandFailed
  202. }
  203. // Add handler for Pause Command
  204. pauseCommand = MPRemoteCommandCenter.shared().pauseCommand.addTarget { event in
  205. if ncplayer.isPlay() {
  206. ncplayer.playerPause()
  207. return .success
  208. }
  209. return .commandFailed
  210. }
  211. // VIDEO () ()
  212. if metadata?.classFile == NCCommunicationCommon.typeClassFile.video.rawValue {
  213. skipForwardCommand = MPRemoteCommandCenter.shared().skipForwardCommand.addTarget { event in
  214. let seconds = Float64((event as! MPSkipIntervalCommandEvent).interval)
  215. self.skip(seconds: seconds)
  216. return.success
  217. }
  218. skipBackwardCommand = MPRemoteCommandCenter.shared().skipBackwardCommand.addTarget { event in
  219. let seconds = Float64((event as! MPSkipIntervalCommandEvent).interval)
  220. self.skip(seconds: -seconds)
  221. return.success
  222. }
  223. }
  224. // AUDIO < >
  225. if metadata?.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  226. if let currentIndex = self.viewerMedia?.currentIndex, let metadatas = self.viewerMedia?.metadatas {
  227. var index: Int = 0
  228. if currentIndex == metadatas.count - 1 {
  229. index = 0
  230. } else {
  231. index = currentIndex + 1
  232. }
  233. if metadatas[index].classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  234. nextTrackCommand = MPRemoteCommandCenter.shared().nextTrackCommand.addTarget { event in
  235. self.viewerMedia?.goTo(index: index, direction: .forward, autoPlay: ncplayer.isPlay())
  236. return.success
  237. }
  238. }
  239. if currentIndex == 0 {
  240. index = metadatas.count - 1
  241. } else {
  242. index = currentIndex - 1
  243. }
  244. if metadatas[index].classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  245. previousTrackCommand = MPRemoteCommandCenter.shared().previousTrackCommand.addTarget { event in
  246. self.viewerMedia?.goTo(index: index, direction: .reverse, autoPlay: ncplayer.isPlay())
  247. return.success
  248. }
  249. }
  250. }
  251. }
  252. nowPlayingInfo[MPMediaItemPropertyTitle] = metadata?.fileNameView
  253. nowPlayingInfo[MPMediaItemPropertyPlaybackDuration] = ncplayer.player?.currentItem?.asset.duration.seconds
  254. if let image = self.image {
  255. nowPlayingInfo[MPMediaItemPropertyArtwork] = MPMediaItemArtwork(boundsSize: image.size) { size in
  256. return image
  257. }
  258. }
  259. MPNowPlayingInfoCenter.default().nowPlayingInfo = nowPlayingInfo
  260. }
  261. func disableCommandCenter() {
  262. UIApplication.shared.endReceivingRemoteControlEvents()
  263. MPNowPlayingInfoCenter.default().nowPlayingInfo = [:]
  264. MPRemoteCommandCenter.shared().playCommand.isEnabled = false
  265. if let playCommand = self.playCommand {
  266. MPRemoteCommandCenter.shared().playCommand.removeTarget(playCommand)
  267. self.playCommand = nil
  268. }
  269. if let pauseCommand = self.pauseCommand {
  270. MPRemoteCommandCenter.shared().pauseCommand.removeTarget(pauseCommand)
  271. self.pauseCommand = nil
  272. }
  273. if let skipForwardCommand = self.skipForwardCommand {
  274. MPRemoteCommandCenter.shared().skipForwardCommand.removeTarget(skipForwardCommand)
  275. self.skipForwardCommand = nil
  276. }
  277. if let skipBackwardCommand = self.skipBackwardCommand {
  278. MPRemoteCommandCenter.shared().skipBackwardCommand.removeTarget(skipBackwardCommand)
  279. self.skipBackwardCommand = nil
  280. }
  281. if let nextTrackCommand = self.nextTrackCommand {
  282. MPRemoteCommandCenter.shared().nextTrackCommand.removeTarget(nextTrackCommand)
  283. self.nextTrackCommand = nil
  284. }
  285. if let previousTrackCommand = self.previousTrackCommand {
  286. MPRemoteCommandCenter.shared().previousTrackCommand.removeTarget(previousTrackCommand)
  287. self.previousTrackCommand = nil
  288. }
  289. }
  290. // MARK: Handle Notifications
  291. @objc func handleRouteChange(notification: Notification) {
  292. guard let userInfo = notification.userInfo, let reasonValue = userInfo[AVAudioSessionRouteChangeReasonKey] as? UInt, let reason = AVAudioSession.RouteChangeReason(rawValue:reasonValue) else { return }
  293. switch reason {
  294. case .newDeviceAvailable:
  295. let session = AVAudioSession.sharedInstance()
  296. for output in session.currentRoute.outputs where output.portType == AVAudioSession.Port.headphones {
  297. print("headphones connected")
  298. DispatchQueue.main.sync {
  299. ncplayer?.playerPlay()
  300. startTimerAutoHide()
  301. }
  302. break
  303. }
  304. case .oldDeviceUnavailable:
  305. if let previousRoute = userInfo[AVAudioSessionRouteChangePreviousRouteKey] as? AVAudioSessionRouteDescription {
  306. for output in previousRoute.outputs where output.portType == AVAudioSession.Port.headphones {
  307. print("headphones disconnected")
  308. DispatchQueue.main.sync {
  309. ncplayer?.playerPause()
  310. ncplayer?.saveCurrentTime()
  311. }
  312. break
  313. }
  314. }
  315. default: ()
  316. }
  317. }
  318. @objc func handleInterruption(notification: Notification) {
  319. guard let userInfo = notification.userInfo, let typeValue = userInfo[AVAudioSessionInterruptionTypeKey] as? UInt, let type = AVAudioSession.InterruptionType(rawValue: typeValue) else { return }
  320. if type == .began {
  321. print("Interruption began")
  322. } else if type == .ended {
  323. if let optionsValue = userInfo[AVAudioSessionInterruptionOptionKey] as? UInt {
  324. let options = AVAudioSession.InterruptionOptions(rawValue: optionsValue)
  325. if options.contains(.shouldResume) {
  326. print("Interruption Ended - playback should resume")
  327. ncplayer?.playerPlay()
  328. startTimerAutoHide()
  329. } else {
  330. print("Interruption Ended - playback should NOT resume")
  331. }
  332. }
  333. }
  334. }
  335. // MARK: -
  336. public func show(enableTimerAutoHide: Bool = false) {
  337. guard let metadata = self.metadata else { return }
  338. if metadata.classFile != NCCommunicationCommon.typeClassFile.video.rawValue && metadata.classFile != NCCommunicationCommon.typeClassFile.audio.rawValue { return }
  339. if metadata.livePhoto { return }
  340. timerAutoHide?.invalidate()
  341. if enableTimerAutoHide {
  342. startTimerAutoHide()
  343. }
  344. if !self.isHidden { return }
  345. UIView.animate(withDuration: 0.3, animations: {
  346. self.alpha = 1
  347. self.playerTopToolBarView.alpha = 1
  348. }, completion: { (value: Bool) in
  349. self.isHidden = false
  350. self.playerTopToolBarView.isHidden = false
  351. })
  352. }
  353. func isShow() -> Bool {
  354. return !self.isHidden
  355. }
  356. public func hide() {
  357. UIView.animate(withDuration: 0.3, animations: {
  358. self.alpha = 0
  359. self.playerTopToolBarView.alpha = 0
  360. }, completion: { (value: Bool) in
  361. self.isHidden = true
  362. self.playerTopToolBarView.isHidden = true
  363. })
  364. }
  365. @objc private func automaticHide() {
  366. if let metadata = self.metadata {
  367. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterHidePlayerToolBar, userInfo: ["ocId":metadata.ocId])
  368. }
  369. }
  370. private func startTimerAutoHide() {
  371. timerAutoHide?.invalidate()
  372. timerAutoHide = Timer.scheduledTimer(timeInterval: 3.5, target: self, selector: #selector(automaticHide), userInfo: nil, repeats: false)
  373. }
  374. private func reStartTimerAutoHide() {
  375. if let timerAutoHide = timerAutoHide, timerAutoHide.isValid {
  376. startTimerAutoHide()
  377. }
  378. }
  379. func skip(seconds: Float64) {
  380. guard let ncplayer = ncplayer else { return }
  381. guard let player = ncplayer.player else { return }
  382. let currentTime = player.currentTime()
  383. var newTime: CMTime = .zero
  384. let timeToAdd: CMTime = CMTimeMakeWithSeconds(abs(seconds), preferredTimescale: 1)
  385. if seconds > 0 {
  386. newTime = CMTimeAdd(currentTime, timeToAdd)
  387. if newTime < ncplayer.durationTime {
  388. ncplayer.videoSeek(time: newTime)
  389. } else if newTime >= ncplayer.durationTime {
  390. let timeToSubtract: CMTime = CMTimeMakeWithSeconds(3, preferredTimescale: 1)
  391. newTime = CMTimeSubtract(ncplayer.durationTime, timeToSubtract)
  392. if newTime > currentTime {
  393. ncplayer.videoSeek(time: newTime)
  394. }
  395. }
  396. } else {
  397. newTime = CMTimeSubtract(currentTime, timeToAdd)
  398. ncplayer.videoSeek(time: newTime)
  399. }
  400. reStartTimerAutoHide()
  401. }
  402. //MARK: - Event / Gesture
  403. @objc func onSliderValChanged(slider: UISlider, event: UIEvent) {
  404. if let touchEvent = event.allTouches?.first, let ncplayer = ncplayer {
  405. let seconds: Int64 = Int64(self.playbackSlider.value)
  406. let targetTime: CMTime = CMTimeMake(value: seconds, timescale: 1)
  407. switch touchEvent.phase {
  408. case .began:
  409. wasInPlay = ncplayer.isPlay()
  410. ncplayer.playerPause()
  411. playbackSliderEvent = .began
  412. case .moved:
  413. ncplayer.videoSeek(time: targetTime)
  414. playbackSliderEvent = .moved
  415. case .ended:
  416. ncplayer.videoSeek(time: targetTime)
  417. if wasInPlay {
  418. ncplayer.playerPlay()
  419. }
  420. playbackSliderEvent = .ended
  421. default:
  422. break
  423. }
  424. reStartTimerAutoHide()
  425. }
  426. }
  427. //MARK: - Action
  428. @objc func didSingleTapWith(gestureRecognizer: UITapGestureRecognizer) {
  429. }
  430. @IBAction func buttonPlayerToolBarTouchInside(_ sender: UIButton) {
  431. }
  432. @IBAction func buttonPlayerTopToolBarTouchInside(_ sender: UIButton) {
  433. }
  434. @IBAction func playerPause(_ sender: Any) {
  435. if ncplayer?.player?.timeControlStatus == .playing {
  436. ncplayer?.playerPause()
  437. ncplayer?.saveCurrentTime()
  438. timerAutoHide?.invalidate()
  439. } else if ncplayer?.player?.timeControlStatus == .paused {
  440. ncplayer?.playerPlay()
  441. startTimerAutoHide()
  442. } else if ncplayer?.player?.timeControlStatus == .waitingToPlayAtSpecifiedRate {
  443. print("timeControlStatus.waitingToPlayAtSpecifiedRate")
  444. if let reason = ncplayer?.player?.reasonForWaitingToPlay {
  445. switch reason {
  446. case .evaluatingBufferingRate:
  447. print("reasonForWaitingToPlay.evaluatingBufferingRate")
  448. case .toMinimizeStalls:
  449. print("reasonForWaitingToPlay.toMinimizeStalls")
  450. case .noItemToPlay:
  451. print("reasonForWaitingToPlay.noItemToPlay")
  452. default:
  453. print("Unknown \(reason)")
  454. }
  455. }
  456. }
  457. }
  458. @IBAction func setMute(_ sender: Any) {
  459. let mute = CCUtility.getAudioMute()
  460. CCUtility.setAudioMute(!mute)
  461. ncplayer?.player?.isMuted = !mute
  462. updateToolBar()
  463. reStartTimerAutoHide()
  464. }
  465. @IBAction func setPip(_ sender: Any) {
  466. guard let metadata = self.metadata else { return }
  467. ncplayer?.pictureInPictureController?.startPictureInPicture()
  468. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterHidePlayerToolBar, userInfo: ["ocId":metadata.ocId])
  469. }
  470. @IBAction func forwardButtonSec(_ sender: Any) {
  471. skip(seconds: 10)
  472. }
  473. @IBAction func backButtonSec(_ sender: Any) {
  474. skip(seconds: -10)
  475. }
  476. }