AudioIntroductionViewController.swift 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. //
  2. // AudioIntroductionViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 30/08/21.
  6. //
  7. import UIKit
  8. import RealmSwift
  9. import AVFoundation
  10. import SideMenu
  11. class AudioIntroductionViewController: UIViewController {
  12. @IBOutlet var navigationBar: UINavigationBar!
  13. @IBOutlet var speechProgressSlider: UISlider!
  14. let translation = DBManager.sharedInstance.database.objects(TopicModel.self)
  15. var topicName = ""
  16. var topicId = Int()
  17. var textContent = String()
  18. var languageCode = ""
  19. // Synth object
  20. let synth = AVSpeechSynthesizer()
  21. // Utterance object
  22. var theUtterance = AVSpeechUtterance(string: "")
  23. override func viewDidLoad() {
  24. super.viewDidLoad()
  25. // Do any additional setup after loading the view.
  26. synth.delegate = self
  27. speechProgressSlider.minimumValue = 0
  28. speechProgressSlider.isUserInteractionEnabled = false
  29. }
  30. override func viewWillAppear(_ animated: Bool) {
  31. navigationBar.topItem?.title = Helper.translateText(inputText: topicName)
  32. //getLanguageCode()
  33. getTopic()
  34. }
  35. func getLanguageCode() {
  36. let selectedLanguage = UserDefaultsConstant.getValueFromUserDefults(for: "selectedLanguageName")
  37. let path = Bundle.main.path(forResource: "AVSpeechSynthesizerLanguageList", ofType: "plist")
  38. let dict = NSDictionary(contentsOfFile: path!)
  39. languageCode = dict!.object(forKey: selectedLanguage!) as! String
  40. print(languageCode)
  41. }
  42. func getTopic() {
  43. for item in translation {
  44. if topicName == item.name {
  45. topicId = item.id
  46. self.getHtmlData()
  47. } else {
  48. //self.view.makeToast("No topic found!")
  49. }
  50. }
  51. }
  52. func getHtmlData() {
  53. let selectedLanguage = UserDefaultsConstant.getValueFromUserDefults(for: "selectedLanguageName") as! String
  54. let unZipDestination = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
  55. let languageFolderUrl = unZipDestination.appendingPathComponent(selectedLanguage)
  56. let unZipUrl = languageFolderUrl.appendingPathComponent("\(topicId)")
  57. let contentUrl = unZipUrl.appendingPathComponent("content")
  58. let indexUrl = contentUrl.appendingPathComponent("index.html")
  59. print("Index Url: \(indexUrl)")
  60. //let url = URL(string: link)
  61. do {
  62. let contents = try String(contentsOf: indexUrl)
  63. print(contents.htmlToString)
  64. textContent = contents.htmlToString
  65. } catch {
  66. // contents could not be loaded
  67. }
  68. }
  69. /*
  70. // MARK: - Navigation
  71. // In a storyboard-based application, you will often want to do a little preparation before navigation
  72. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  73. // Get the new view controller using segue.destination.
  74. // Pass the selected object to the new view controller.
  75. }
  76. */
  77. @IBAction func menuNavAction(_ sender: Any) {
  78. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  79. present(menu, animated: true, completion: nil)
  80. }
  81. @IBAction func headerNavigation(_ sender: UIButton) {
  82. switch sender.tag {
  83. case 0:
  84. DispatchQueue.main.async {
  85. let introVC = self.storyboard?.instantiateViewController(withIdentifier: "IntroductionViewController") as! IntroductionViewController
  86. introVC.topicName = self.topicName
  87. self.navigationController?.pushViewController(introVC, animated: false)
  88. }
  89. break
  90. case 1:
  91. DispatchQueue.main.async {
  92. let videoVC = self.storyboard?.instantiateViewController(withIdentifier: "VideoIntroductionViewController") as! VideoIntroductionViewController
  93. videoVC.topicName = self.topicName
  94. self.navigationController?.pushViewController(videoVC, animated: false)
  95. }
  96. case 2:
  97. DispatchQueue.main.async {
  98. let audioVC = self.storyboard?.instantiateViewController(withIdentifier: "AudioIntroductionViewController") as! AudioIntroductionViewController
  99. audioVC.topicName = self.topicName
  100. self.navigationController?.pushViewController(audioVC, animated: false)
  101. }
  102. default:
  103. break
  104. }
  105. }
  106. @IBAction func playButtonAction(_ sender: UIButton) {
  107. switch sender.tag {
  108. case 0:
  109. // Getting text to read from the UITextView (textView).
  110. let selectedLanguage = UserDefaultsConstant.getValueFromUserDefults(for: "selectedLanguageName") as! String
  111. if selectedLanguage == "English" {
  112. theUtterance = AVSpeechUtterance(string: textContent)
  113. theUtterance.voice = AVSpeechSynthesisVoice(language: "en-GB")
  114. } else if selectedLanguage == "Hindi" {
  115. theUtterance = AVSpeechUtterance(string: textContent)
  116. theUtterance.voice = AVSpeechSynthesisVoice(language: "hi-IN")
  117. } else {
  118. theUtterance = AVSpeechUtterance(string: textContent)
  119. theUtterance.voice = AVSpeechSynthesisVoice(language: "en-GB")
  120. }
  121. theUtterance.rate = 0.5
  122. synth.speak(theUtterance)
  123. case 1:
  124. synth.continueSpeaking();
  125. case 2:
  126. synth.pauseSpeaking(at: AVSpeechBoundary.immediate)
  127. default:
  128. synth.continueSpeaking();
  129. }
  130. // // The resume functionality
  131. // if (synth.isPaused) {
  132. // sender.setImage(UIImage(named: "pause"), for: .normal)
  133. // synth.continueSpeaking();
  134. // }
  135. // // The pause functionality
  136. // else if (synth.isSpeaking) {
  137. // sender.setImage(UIImage(named: "resume"), for: .normal)
  138. // synth.pauseSpeaking(at: AVSpeechBoundary.immediate)
  139. // }
  140. // // The start functionality
  141. // else if (!synth.isSpeaking) {
  142. // // Getting text to read from the UITextView (textView).
  143. // let selectedLanguage = UserDefaultsConstant.getValueFromUserDefults(for: "selectedLanguageName") as! String
  144. // if selectedLanguage == "English" {
  145. // theUtterance = AVSpeechUtterance(string: textContent)
  146. // theUtterance.voice = AVSpeechSynthesisVoice(language: "en-GB")
  147. // } else if selectedLanguage == "Hindi" {
  148. // theUtterance = AVSpeechUtterance(string: textContent)
  149. // theUtterance.voice = AVSpeechSynthesisVoice(language: "hi-IN")
  150. // } else {
  151. // theUtterance = AVSpeechUtterance(string: textContent)
  152. // theUtterance.voice = AVSpeechSynthesisVoice(language: "en-GB")
  153. // }
  154. // theUtterance.rate = 0.5
  155. // synth.speak(theUtterance)
  156. // }
  157. }
  158. }
  159. extension AudioIntroductionViewController: AVSpeechSynthesizerDelegate {
  160. func speechSynthesizer(_ synthesizer: AVSpeechSynthesizer, willSpeakRangeOfSpeechString characterRange: NSRange, utterance: AVSpeechUtterance) {
  161. let progress = Float(characterRange.location + characterRange.length)
  162. / Float(utterance.speechString.count)
  163. //print(progress)
  164. self.speechProgressSlider.setValue(progress,
  165. animated: true)
  166. }
  167. func speechSynthesizer(_ synthesizer: AVSpeechSynthesizer, didFinish utterance: AVSpeechUtterance) {
  168. print("finished")
  169. self.speechProgressSlider.setValue(0,
  170. animated: true)
  171. }
  172. }