NCAudioRecorderViewController.swift 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. //
  2. // NCAudioRecorderViewController.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 08/03/19.
  6. // Copyright (c) 2019 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. // --------------------------------
  24. // Based on code of Venkat Kukunuru
  25. // --------------------------------
  26. import UIKit
  27. import AVFoundation
  28. import QuartzCore
  29. @objc protocol NCAudioRecorderViewControllerDelegate : AnyObject {
  30. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String)
  31. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String)
  32. }
  33. class NCAudioRecorderViewController: UIViewController , NCAudioRecorderDelegate {
  34. open weak var delegate: NCAudioRecorderViewControllerDelegate?
  35. var recording: NCAudioRecorder!
  36. var recordDuration: TimeInterval = 0
  37. var fileName: String = ""
  38. @IBOutlet weak var contentContainerView: UIView!
  39. @IBOutlet weak var durationLabel: UILabel!
  40. @IBOutlet weak var startStopLabel: UILabel!
  41. @IBOutlet weak var voiceRecordHUD: VoiceRecordHUD!
  42. // MARK: - View Life Cycle
  43. override func viewDidLoad() {
  44. super.viewDidLoad()
  45. voiceRecordHUD.update(0.0)
  46. durationLabel.text = ""
  47. startStopLabel.text = NSLocalizedString("_voice_memo_start_", comment: "")
  48. changeTheming()
  49. }
  50. override func viewWillAppear(_ animated: Bool) {
  51. super.viewWillAppear(animated)
  52. }
  53. override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
  54. super.traitCollectionDidChange(previousTraitCollection)
  55. changeTheming()
  56. }
  57. // MARK: - Colors
  58. func changeTheming() {
  59. view.backgroundColor = .clear
  60. contentContainerView.backgroundColor = UIColor.lightGray
  61. voiceRecordHUD.fillColor = UIColor.green
  62. }
  63. // MARK: - Action
  64. @IBAction func touchViewController() {
  65. if recording.state == .record {
  66. startStop()
  67. } else {
  68. dismiss(animated: true) {
  69. self.delegate?.didFinishWithoutRecording(self, fileName: self.fileName)
  70. }
  71. }
  72. }
  73. @IBAction func startStop() {
  74. if recording.state == .record {
  75. recordDuration = 0
  76. recording.stop()
  77. voiceRecordHUD.update(0.0)
  78. dismiss(animated: true) {
  79. self.delegate?.didFinishRecording(self, fileName: self.fileName)
  80. }
  81. } else {
  82. recordDuration = 0
  83. do {
  84. try recording.record()
  85. startStopLabel.text = NSLocalizedString("_voice_memo_stop_", comment: "")
  86. } catch {
  87. print(error)
  88. }
  89. }
  90. }
  91. // MARK: - Code
  92. func createRecorder(fileName: String) {
  93. self.fileName = fileName
  94. recording = NCAudioRecorder(to: fileName)
  95. recording.delegate = self
  96. DispatchQueue.global().async {
  97. // Background thread
  98. do {
  99. try self.recording.prepare()
  100. } catch {
  101. print(error)
  102. }
  103. }
  104. }
  105. func audioMeterDidUpdate(_ db: Float) {
  106. //print("db level: %f", db)
  107. self.recording.recorder?.updateMeters()
  108. let ALPHA = 0.05
  109. let peakPower = pow(10, (ALPHA * Double((self.recording.recorder?.peakPower(forChannel: 0))!)))
  110. var rate: Double = 0.0
  111. if (peakPower <= 0.2) {
  112. rate = 0.2
  113. } else if (peakPower > 0.9) {
  114. rate = 1.0
  115. } else {
  116. rate = peakPower
  117. }
  118. voiceRecordHUD.update(CGFloat(rate))
  119. voiceRecordHUD.fillColor = UIColor.green
  120. recordDuration += 1
  121. durationLabel.text = String.init().formatSecondsToString(recordDuration/60)
  122. }
  123. }
  124. @objc public protocol NCAudioRecorderDelegate: AVAudioRecorderDelegate {
  125. @objc optional func audioMeterDidUpdate(_ dB: Float)
  126. }
  127. open class NCAudioRecorder : NSObject {
  128. @objc public enum State: Int {
  129. case none, record, play
  130. }
  131. static var directory: String {
  132. return NSTemporaryDirectory()
  133. }
  134. open weak var delegate: NCAudioRecorderDelegate?
  135. open fileprivate(set) var url: URL
  136. open fileprivate(set) var state: State = .none
  137. open var bitRate = 192000
  138. open var sampleRate = 44100.0
  139. open var channels = 1
  140. fileprivate let session = AVAudioSession.sharedInstance()
  141. var recorder: AVAudioRecorder?
  142. fileprivate var player: AVAudioPlayer?
  143. fileprivate var link: CADisplayLink?
  144. var metering: Bool {
  145. return delegate?.responds(to: #selector(NCAudioRecorderDelegate.audioMeterDidUpdate(_:))) == true
  146. }
  147. // MARK: - Initializers
  148. public init(to: String) {
  149. url = URL(fileURLWithPath: NCAudioRecorder.directory).appendingPathComponent(to)
  150. super.init()
  151. }
  152. // MARK: - Record
  153. open func prepare() throws {
  154. let settings: [String: AnyObject] = [
  155. AVFormatIDKey : NSNumber(value: Int32(kAudioFormatAppleLossless) as Int32),
  156. AVEncoderAudioQualityKey: AVAudioQuality.max.rawValue as AnyObject,
  157. AVEncoderBitRateKey: bitRate as AnyObject,
  158. AVNumberOfChannelsKey: channels as AnyObject,
  159. AVSampleRateKey: sampleRate as AnyObject
  160. ]
  161. recorder = try AVAudioRecorder(url: url, settings: settings)
  162. recorder?.prepareToRecord()
  163. recorder?.delegate = delegate
  164. recorder?.isMeteringEnabled = metering
  165. }
  166. open func record() throws {
  167. if recorder == nil {
  168. try prepare()
  169. }
  170. try session.setCategory(.playAndRecord, mode: .default)
  171. try session.overrideOutputAudioPort(AVAudioSession.PortOverride.speaker)
  172. recorder?.record()
  173. state = .record
  174. if metering {
  175. startMetering()
  176. }
  177. }
  178. open func play() throws {
  179. if recorder == nil {
  180. try prepare()
  181. }
  182. try session.setCategory(.playback, mode: .default)
  183. try AVAudioSession.sharedInstance().setActive(true)
  184. player = try AVAudioPlayer(contentsOf: url)
  185. player?.prepareToPlay()
  186. player?.play()
  187. state = .play
  188. }
  189. open func stop() {
  190. switch state {
  191. case .play:
  192. player?.stop()
  193. player = nil
  194. case .record:
  195. recorder?.stop()
  196. recorder = nil
  197. stopMetering()
  198. default:
  199. break
  200. }
  201. state = .none
  202. }
  203. // MARK: - Metering
  204. @objc func updateMeter() {
  205. guard let recorder = recorder else { return }
  206. recorder.updateMeters()
  207. let dB = recorder.averagePower(forChannel: 0)
  208. delegate?.audioMeterDidUpdate?(dB)
  209. }
  210. fileprivate func startMetering() {
  211. link = CADisplayLink(target: self, selector: #selector(NCAudioRecorder.updateMeter))
  212. link?.add(to: RunLoop.current, forMode: RunLoop.Mode.common)
  213. }
  214. fileprivate func stopMetering() {
  215. link?.invalidate()
  216. link = nil
  217. }
  218. }
  219. @IBDesignable
  220. class VoiceRecordHUD: UIView {
  221. @IBInspectable var rate: CGFloat = 0.0
  222. @IBInspectable var fillColor: UIColor = UIColor.green {
  223. didSet {
  224. setNeedsDisplay()
  225. }
  226. }
  227. var image: UIImage! {
  228. didSet {
  229. setNeedsDisplay()
  230. }
  231. }
  232. // MARK: - View Life Cycle
  233. override init(frame: CGRect) {
  234. super.init(frame: frame)
  235. image = UIImage(named: "microphone")
  236. }
  237. required init?(coder aDecoder: NSCoder) {
  238. super.init(coder: aDecoder)
  239. image = UIImage(named: "microphone")
  240. }
  241. func update(_ rate: CGFloat) {
  242. self.rate = rate
  243. setNeedsDisplay()
  244. }
  245. override func draw(_ rect: CGRect) {
  246. let context = UIGraphicsGetCurrentContext()
  247. context?.translateBy(x: 0, y: bounds.size.height)
  248. context?.scaleBy(x: 1, y: -1)
  249. context?.draw(image.cgImage!, in: bounds)
  250. context?.clip(to: bounds, mask: image.cgImage!)
  251. context?.setFillColor(fillColor.cgColor.components!)
  252. context?.fill(CGRect(x: 0, y: 0, width: bounds.width, height: bounds.height * rate))
  253. }
  254. override func prepareForInterfaceBuilder() {
  255. let bundle = Bundle(for: type(of: self))
  256. image = UIImage(named: "microphone", in: bundle, compatibleWith: self.traitCollection)
  257. }
  258. }