NCViewerVideoToolBar.swift 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. //
  2. // NCViewerVideoToolBar.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. class NCViewerVideoToolBar: UIView {
  26. @IBOutlet weak var playButton: UIButton!
  27. @IBOutlet weak var muteButton: UIButton!
  28. @IBOutlet weak var forwardButton: UIButton!
  29. @IBOutlet weak var backButton: UIButton!
  30. @IBOutlet weak var playbackSlider: UISlider!
  31. @IBOutlet weak var labelOverallDuration: UILabel!
  32. @IBOutlet weak var labelCurrentTime: UILabel!
  33. enum sliderEventType {
  34. case began
  35. case ended
  36. case moved
  37. }
  38. var player: AVPlayer?
  39. var metadata: tableMetadata?
  40. private var playbackSliderEvent: sliderEventType = .ended
  41. private let seekDuration: Float64 = 15
  42. // MARK: - View Life Cycle
  43. override func willMove(toWindow newWindow: UIWindow?) {
  44. super.willMove(toWindow: newWindow)
  45. if newWindow != nil {
  46. let blurEffect = UIBlurEffect(style: .dark)
  47. let blurEffectView = UIVisualEffectView(effect: blurEffect)
  48. self.layer.cornerRadius = 15
  49. self.layer.masksToBounds = true
  50. blurEffectView.frame = self.bounds
  51. blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
  52. self.insertSubview(blurEffectView, at:0)
  53. playbackSlider.value = 0
  54. playbackSlider.minimumValue = 0
  55. playbackSlider.maximumValue = 0
  56. playbackSlider.isContinuous = true
  57. playbackSlider.tintColor = .lightGray
  58. labelCurrentTime.text = stringFromTimeInterval(interval: 0)
  59. labelCurrentTime.textColor = .lightGray
  60. labelOverallDuration.text = stringFromTimeInterval(interval: 0)
  61. labelOverallDuration.textColor = .lightGray
  62. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.15", color: .white), for: .normal)
  63. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.15", color: .white), for: .normal)
  64. setToolBar()
  65. }
  66. }
  67. func setBarPlayer(player: AVPlayer?, metadata: tableMetadata?) {
  68. self.player = player
  69. self.metadata = metadata
  70. let duration: CMTime = (player?.currentItem?.asset.duration)!
  71. let durationSeconds: Float64 = CMTimeGetSeconds(duration)
  72. playbackSlider.value = 0
  73. playbackSlider.minimumValue = 0
  74. playbackSlider.maximumValue = Float(durationSeconds)
  75. playbackSlider.addTarget(self, action: #selector(onSliderValChanged(slider:event:)), for: .valueChanged)
  76. labelCurrentTime.text = stringFromTimeInterval(interval: 0)
  77. labelOverallDuration.text = "-" + stringFromTimeInterval(interval: durationSeconds)
  78. player?.addPeriodicTimeObserver(forInterval: CMTimeMakeWithSeconds(1, preferredTimescale: 1), queue: .main, using: { (CMTime) in
  79. if self.player?.currentItem?.status == .readyToPlay {
  80. if self.isHidden == false {
  81. self.updateOutlet()
  82. }
  83. }
  84. })
  85. setToolBar()
  86. // show
  87. updateOutlet()
  88. self.isHidden = false
  89. }
  90. @objc public func hideToolBar() {
  91. updateOutlet()
  92. self.isHidden = true
  93. }
  94. @objc public func showToolBar() {
  95. self.isHidden = false
  96. }
  97. public func setToolBar() {
  98. if player?.rate == 1 {
  99. playButton.setImage(NCUtility.shared.loadImage(named: "pause.fill", color: .white), for: .normal)
  100. } else {
  101. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .white), for: .normal)
  102. }
  103. if CCUtility.getAudioMute() {
  104. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff", color: .white), for: .normal)
  105. } else {
  106. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOn", color: .white), for: .normal)
  107. }
  108. }
  109. private func updateOutlet() {
  110. if let duration = player?.currentItem?.asset.duration, let currentTime = player?.currentTime() {
  111. let durationSeconds: Float64 = CMTimeGetSeconds(duration)
  112. let currentSeconds: Float64 = CMTimeGetSeconds(currentTime)
  113. self.playbackSlider.value = Float(currentSeconds)
  114. self.labelCurrentTime.text = self.stringFromTimeInterval(interval: currentSeconds)
  115. self.labelOverallDuration.text = "-" + self.stringFromTimeInterval(interval: durationSeconds - currentSeconds)
  116. }
  117. }
  118. //MARK: - Event
  119. @objc func onSliderValChanged(slider: UISlider, event: UIEvent) {
  120. if let touchEvent = event.allTouches?.first {
  121. let seconds: Int64 = Int64(self.playbackSlider.value)
  122. let targetTime: CMTime = CMTimeMake(value: seconds, timescale: 1)
  123. switch touchEvent.phase {
  124. case .began:
  125. self.player?.pause()
  126. playbackSliderEvent = .began
  127. case .moved:
  128. self.player?.seek(to: targetTime)
  129. playbackSliderEvent = .moved
  130. case .ended:
  131. self.player?.seek(to: targetTime)
  132. if let metadata = self.metadata {
  133. NCManageDatabase.shared.addVideoTime(metadata: metadata, time: targetTime)
  134. }
  135. self.player?.play()
  136. playbackSliderEvent = .ended
  137. default:
  138. break
  139. }
  140. }
  141. }
  142. //MARK: - Action
  143. @IBAction func playerPause(_ sender: Any) {
  144. if player?.timeControlStatus == .playing {
  145. player?.pause()
  146. } else if player?.timeControlStatus == .paused {
  147. player?.play()
  148. }
  149. }
  150. @IBAction func setMute(_ sender: Any) {
  151. let mute = CCUtility.getAudioMute()
  152. CCUtility.setAudioMute(!mute)
  153. player?.isMuted = !mute
  154. setToolBar()
  155. }
  156. @IBAction func forwardButtonSec(_ sender: Any) {
  157. guard let player = self.player else { return }
  158. if let duration = player.currentItem?.duration {
  159. let playerCurrentTime = CMTimeGetSeconds(player.currentTime())
  160. let newTime = playerCurrentTime + seekDuration
  161. if newTime < CMTimeGetSeconds(duration) {
  162. let selectedTime: CMTime = CMTimeMake(value: Int64(newTime * 1000 as Float64), timescale: 1000)
  163. player.seek(to: selectedTime)
  164. player.pause()
  165. player.play()
  166. }
  167. }
  168. }
  169. @IBAction func backButtonSec(_ sender: Any) {
  170. guard let player = self.player else { return }
  171. let playerCurrenTime = CMTimeGetSeconds(player.currentTime())
  172. var newTime = playerCurrenTime - seekDuration
  173. if newTime < 0 { newTime = 0 }
  174. let selectedTime: CMTime = CMTimeMake(value: Int64(newTime * 1000 as Float64), timescale: 1000)
  175. player.seek(to: selectedTime)
  176. player.pause()
  177. player.play()
  178. }
  179. //MARK: - Algorithms
  180. func stringFromTimeInterval(interval: TimeInterval) -> String {
  181. let interval = Int(interval)
  182. let seconds = interval % 60
  183. let minutes = (interval / 60) % 60
  184. let hours = (interval / 3600)
  185. if hours > 0 {
  186. return String(format: "%02d:%02d:%02d", hours, minutes, seconds)
  187. } else {
  188. return String(format: "%02d:%02d", minutes, seconds)
  189. }
  190. }
  191. }