前提・実現したいこと
AVSpeechSynthesizerの音声の再生、停止をコントロールセンターで行いたい。
問題の詳細
AVSpeechSynthesizerを使った読み上げアプリを作成中です。再生画面で再生したあと、他の画面に遷移してまた戻ったときに、コントロールセンターで再生ボタンを押すと、音声が重なって再生されてしまいます。画面遷移時に毎回インスタンスが生成されるせいで、音が重なって再生されてしまうのだと思います。ただ解決策がわかりません。
該当のソースコード
swift
1import UIKit 2import AVFoundation 3import MediaPlayer 4 5class VoiceViewController : UIViewController { 6 let synthesizer = AVSpeechSynthesizer() 7 8 override func viewDidLoad() { 9 super.viewDidLoad() 10 addRemoteCommandEvent() 11 } 12 13 @IBAction func playButtonPressed(_ sender: UIButton) { 14 play() 15 } 16 17 @IBAction func dismissButtonPressed(_ sender: UIButton) { 18 dismiss(animated: true, completion: nil) 19 } 20 21 func play(){ 22 let utterance = AVSpeechUtterance(string: "テスト") 23 utterance.voice = AVSpeechSynthesisVoice(language: "ja-JP") 24 utterance.rate = 0.5 25 synthesizer.speak(utterance) 26 } 27 28 func addRemoteCommandEvent() { 29 let commandCenter = MPRemoteCommandCenter.shared() 30 31 commandCenter.playCommand.addTarget(handler: { (_) -> MPRemoteCommandHandlerStatus in 32 self.remotePlay() 33 return .success 34 }) 35 commandCenter.playCommand.isEnabled = true 36 37 commandCenter.pauseCommand.addTarget(handler: { (_) -> MPRemoteCommandHandlerStatus in 38 self.remotePause() 39 return .success 40 }) 41 42 commandCenter.pauseCommand.isEnabled = true 43 44 } 45 46 func remotePlay() { 47 if synthesizer.isPaused { 48 synthesizer.continueSpeaking() 49 50 } 51 else if synthesizer.isSpeaking { 52 synthesizer.pauseSpeaking(at: AVSpeechBoundary.immediate) 53 54 } 55 else if !synthesizer.isSpeaking { 56 play() 57 } 58 } 59 func remotePause() { 60 if synthesizer.isSpeaking { 61 synthesizer.pauseSpeaking(at: .immediate) 62 } 63 } 64 65} 66
試したこと
stackoverflowで解決策を探しましたが良い解決策が見つかりませんでした。現在もStackoverFlowで解決策を探してます。
ご存じの方いらっしゃらないでしょうか。
補足情報(FW/ツールのバージョンなど)
swift5.4
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。