NCPlayer.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. //
  2. // NCPlayer.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 NextcloudKit
  25. import UIKit
  26. import MediaPlayer
  27. import MobileVLCKit
  28. class NCPlayer: NSObject {
  29. internal let appDelegate = UIApplication.shared.delegate as! AppDelegate
  30. internal var url: URL?
  31. internal var player: VLCMediaPlayer?
  32. internal var thumbnailer: VLCMediaThumbnailer?
  33. internal var metadata: tableMetadata
  34. internal var singleTapGestureRecognizer: UITapGestureRecognizer!
  35. internal var width: Int64?
  36. internal var height: Int64?
  37. internal let fileNamePreviewLocalPath: String
  38. internal let fileNameIconLocalPath: String
  39. internal weak var playerToolBar: NCPlayerToolBar?
  40. internal weak var imageVideoContainer: imageVideoContainerView?
  41. internal weak var viewerMediaPage: NCViewerMediaPage?
  42. // MARK: - View Life Cycle
  43. init(imageVideoContainer: imageVideoContainerView, playerToolBar: NCPlayerToolBar?, metadata: tableMetadata, viewerMediaPage: NCViewerMediaPage?) {
  44. self.imageVideoContainer = imageVideoContainer
  45. self.playerToolBar = playerToolBar
  46. self.metadata = metadata
  47. self.viewerMediaPage = viewerMediaPage
  48. fileNamePreviewLocalPath = CCUtility.getDirectoryProviderStoragePreviewOcId(metadata.ocId, etag: metadata.etag)!
  49. fileNameIconLocalPath = CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)!
  50. super.init()
  51. }
  52. deinit {
  53. print("deinit NCPlayer with ocId \(metadata.ocId)")
  54. player?.stop()
  55. }
  56. func openAVPlayer(url: URL) {
  57. let userAgent = CCUtility.getUserAgent()!
  58. var position: Float = 0
  59. self.url = url
  60. self.singleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didSingleTapWith(gestureRecognizer:)))
  61. print("Play URL: \(url)")
  62. player = VLCMediaPlayer()
  63. player?.media = VLCMedia(url: url)
  64. player?.delegate = self
  65. player?.media?.addOption("--network-caching=5000")
  66. player?.media?.addOption(":http-user-agent=\(userAgent)")
  67. let volume = CCUtility.getAudioVolume()
  68. if metadata.livePhoto {
  69. player?.audio?.volume = 0
  70. } else if metadata.classFile == NKCommon.TypeClassFile.audio.rawValue {
  71. player?.audio?.volume = Int32(volume)
  72. } else {
  73. player?.audio?.volume = Int32(volume)
  74. if let result = NCManageDatabase.shared.getVideoPosition(metadata: metadata) {
  75. position = result
  76. player?.position = position
  77. }
  78. }
  79. player?.drawable = self.imageVideoContainer
  80. if let view = player?.drawable as? UIView {
  81. view.isUserInteractionEnabled = true
  82. view.addGestureRecognizer(singleTapGestureRecognizer)
  83. }
  84. playerToolBar?.setBarPlayer(ncplayer: self, position: position, metadata: self.metadata)
  85. if let media = player?.media {
  86. thumbnailer = VLCMediaThumbnailer(media: media, andDelegate: self)
  87. }
  88. NotificationCenter.default.addObserver(self, selector: #selector(applicationDidEnterBackground(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterApplicationDidEnterBackground), object: nil)
  89. NotificationCenter.default.addObserver(self, selector: #selector(applicationDidBecomeActive(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterApplicationDidBecomeActive), object: nil)
  90. NotificationCenter.default.addObserver(self, selector: #selector(playerPause), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterPauseMedia), object: nil)
  91. NotificationCenter.default.addObserver(self, selector: #selector(playerPlay), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterPlayMedia), object: nil)
  92. }
  93. func closeAVPlayer() {
  94. playerPause(withSnapshot: false)
  95. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterApplicationDidEnterBackground), object: nil)
  96. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterApplicationDidBecomeActive), object: nil)
  97. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterPauseMedia), object: nil)
  98. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterPlayMedia), object: nil)
  99. }
  100. // MARK: - UIGestureRecognizerDelegate
  101. @objc func didSingleTapWith(gestureRecognizer: UITapGestureRecognizer) {
  102. viewerMediaPage?.didSingleTapWith(gestureRecognizer: gestureRecognizer)
  103. }
  104. // MARK: - NotificationCenter
  105. @objc func applicationDidEnterBackground(_ notification: NSNotification) {
  106. if metadata.classFile == NKCommon.TypeClassFile.video.rawValue {
  107. playerPause()
  108. }
  109. }
  110. @objc func applicationDidBecomeActive(_ notification: NSNotification) {
  111. playerToolBar?.update(position: player?.position)
  112. }
  113. // MARK: -
  114. func isPlay() -> Bool {
  115. return player?.isPlaying ?? false
  116. }
  117. @objc func playerPlay() {
  118. player?.play()
  119. if let position = NCManageDatabase.shared.getVideoPosition(metadata: self.metadata) {
  120. player?.position = position
  121. playerToolBar?.update(position: position)
  122. } else {
  123. playerToolBar?.update(position: player?.position)
  124. }
  125. }
  126. @objc func playerPause(withSnapshot: Bool = true) {
  127. if let width = width, let height = height, withSnapshot {
  128. player?.saveVideoSnapshot(at: fileNamePreviewLocalPath, withWidth: Int32(width), andHeight: Int32(height))
  129. }
  130. player?.pause()
  131. playerToolBar?.update(position: player?.position)
  132. }
  133. func videoSeek(position: Float) {
  134. player?.position = position
  135. playerToolBar?.update(position: position)
  136. }
  137. func savePosition(_ position: Float) {
  138. if metadata.classFile == NKCommon.TypeClassFile.audio.rawValue { return }
  139. let length = Int(player?.media?.length.intValue ?? 0)
  140. NCManageDatabase.shared.addVideo(metadata: metadata, position: position, length: length)
  141. }
  142. func snapshot() {
  143. if let player = player, let width = width, let height = height {
  144. player.saveVideoSnapshot(at: fileNamePreviewLocalPath, withWidth: Int32(width), andHeight: Int32(height))
  145. }
  146. }
  147. }
  148. extension NCPlayer: VLCMediaPlayerDelegate {
  149. func mediaPlayerStateChanged(_ aNotification: Notification) {
  150. guard let player = self.player else { return }
  151. switch player.state {
  152. case .stopped:
  153. if let url = self.url {
  154. NCManageDatabase.shared.addVideo(metadata: metadata, position: 0)
  155. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterShowPlayerToolBar, userInfo: ["ocId": self.metadata.ocId, "enableTimerAutoHide": false])
  156. self.thumbnailer?.fetchThumbnail()
  157. self.openAVPlayer(url: url)
  158. }
  159. print("Played mode: STOPPED")
  160. break
  161. case .opening:
  162. playerToolBar?.buffering()
  163. print("Played mode: OPENING")
  164. break
  165. case .buffering:
  166. playerToolBar?.buffering()
  167. print("Played mode: BUFFERING")
  168. break
  169. case .ended:
  170. print("Played mode: ENDED")
  171. playerToolBar?.update(position: player.position)
  172. break
  173. case .error:
  174. print("Played mode: ERROR")
  175. break
  176. case .playing:
  177. if let tracksInformation = player.media?.tracksInformation {
  178. for case let track as [String:Any] in tracksInformation {
  179. if track["type"] as? String == "video" {
  180. width = track["width"] as? Int64
  181. height = track["height"] as? Int64
  182. }
  183. }
  184. }
  185. // let metaDictionary = player.media?.metaData
  186. print("Played mode: PLAYING")
  187. break
  188. case .paused:
  189. print("Played mode: PAUSED")
  190. playerToolBar?.update(position: player.position)
  191. break
  192. default: break
  193. }
  194. print(player.state)
  195. }
  196. func mediaPlayerTimeChanged(_ aNotification: Notification) {
  197. self.playerToolBar?.update(position: player?.position)
  198. }
  199. func mediaPlayerTitleChanged(_ aNotification: Notification) {
  200. // Handle other states...
  201. }
  202. func mediaPlayerChapterChanged(_ aNotification: Notification) {
  203. // Handle other states...
  204. }
  205. func mediaPlayerLoudnessChanged(_ aNotification: Notification) {
  206. // Handle other states...
  207. }
  208. func mediaPlayerSnapshot(_ aNotification: Notification) {
  209. if let data = NSData(contentsOfFile: fileNamePreviewLocalPath),
  210. let image = UIImage(data: data as Data),
  211. let image = image.resizeImage(size: CGSize(width: NCGlobal.shared.sizeIcon, height: NCGlobal.shared.sizeIcon)),
  212. let data = image.jpegData(compressionQuality: 0.5) {
  213. try? data.write(to: URL(fileURLWithPath: fileNameIconLocalPath))
  214. }
  215. print("Snapshot saved")
  216. }
  217. func mediaPlayerStartedRecording(_ player: VLCMediaPlayer) {
  218. // Handle other states...
  219. }
  220. func mediaPlayer(_ player: VLCMediaPlayer, recordingStoppedAtPath path: String) {
  221. // Handle other states...
  222. }
  223. }
  224. extension NCPlayer: VLCMediaThumbnailerDelegate {
  225. func mediaThumbnailerDidTimeOut(_ mediaThumbnailer: VLCMediaThumbnailer) { }
  226. func mediaThumbnailer(_ mediaThumbnailer: VLCMediaThumbnailer, didFinishThumbnail thumbnail: CGImage) {
  227. var image: UIImage?
  228. do {
  229. image = UIImage(cgImage: thumbnail)
  230. // Update Playing Info Center
  231. let mediaItemPropertyTitle = MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPMediaItemPropertyTitle] as? String
  232. if let image = image, mediaItemPropertyTitle == metadata.fileNameView {
  233. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPMediaItemPropertyArtwork] = MPMediaItemArtwork(boundsSize: image.size) { _ in
  234. return image
  235. }
  236. }
  237. // Preview
  238. if let data = image?.jpegData(compressionQuality: 0.5) {
  239. try data.write(to: URL(fileURLWithPath: fileNamePreviewLocalPath), options: .atomic)
  240. }
  241. // Icon
  242. if let data = image?.jpegData(compressionQuality: 0.5) {
  243. try data.write(to: URL(fileURLWithPath: fileNameIconLocalPath), options: .atomic)
  244. }
  245. } catch let error as NSError {
  246. print("GeneratorImagePreview localized error:")
  247. print(error.localizedDescription)
  248. }
  249. }
  250. }