iOS如何?語音播報及後台播放

來源:互聯網
上載者:User

  最近項目剛剛交付,偶然間用到了語音播報和語音搜尋的功能。語音搜尋我用的是訊飛的demo,感覺效果還不錯,感興趣的話可以去官網上面下載demo,裡面講的特別的詳細,不過稍顯麻煩一些。語音播報訊飛也有demo,不過做開發當然要尋求最簡潔的處理方式,ios7.0之後新添加了一些新的功能,裡面就有系統內建的語音播報庫AVFoundation。關於語音播報的文章其實挺多的。文本轉語音技術, 也叫TTS, 是Text To Speech的縮寫. iOS如果想做有聲書等功能的時候, 會用到這門技術.

  一,使用iOS內建TTS需要注意的幾點: iOS7之後才有該功能 需要 AVFoundation 庫 AVSpeechSynthesizer: 語音合成器, 可以假想成一個可以說話的人, 是最主要的介面 AVSpeechSynthesisVoice: 可以假想成人的聲音 AVSpeechUtterance: 可以假想成要說的一段話

  二,程式碼範例, 播放語音

    //語音播報    AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:@"床前明月光,疑是地上霜。"];    utterance.pitchMultiplier=0.8;        //中式發音    AVSpeechSynthesisVoice *voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"zh-CN"];    //英式發音//    AVSpeechSynthesisVoice *voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-GB"];        utterance.voice = voice;        NSLog(@"%@",[AVSpeechSynthesisVoice speechVoices]);        AVSpeechSynthesizer *synth = [[AVSpeechSynthesizer alloc]init];        [synth speakUtterance:utterance];

  三,AVSpeechSynthesizer介紹

  這個類就像一個會說話的人, 可以”說話”, 可以”暫停”說話, 可以”繼續”說話, 可以判斷他當前是否正在說話.有以下的方法或者屬性: 說話: speakUtterance 控制: continueSpeaking(繼續說), pauseSpeakingAtBoundary(暫停說話), paused(暫停狀態的屬性), speaking(說話的狀態), stopSpeakingAtBoundary(停止說話) 委託: delegate

 

  四,AVSpeechBoundary介紹

   這是一個枚舉. 在暫停, 或者停止說話的時候, 停下的方式用這個枚舉標示. 包括兩種: AVSpeechBoundaryImmediate: 立即停 AVSpeechBoundaryWord : 說完一個整詞再停

  五,AVSpeechSynthesizerDelegate介紹

  合成器的委託, 對於一些事件, 提供了響應的介面. didCancelSpeechUtterance: 已經取消說話 didContinueSpeechUtterance: 已經繼續說話 didFinishSpeechUtterance: 已經說完 didPauseSpeechUtterance: 已經暫停 didStartSpeechUtterance:已經開始 willSpeakRangeOfSpeechString:將要說某段話

  六,AVSpeechSynthesisVoice介紹

  AVSpeechSynthesisVoice定義了一系列的聲音, 主要是不同的語言和地區. voiceWithLanguage: 根據制定的語言, 獲得一個聲音. speechVoices: 獲得當前裝置支援的聲音 currentLanguageCode: 獲得當前聲音的語言字串, 比如”ZH-cn” language: 獲得當前的語言

  七,AVSpeechUtterance介紹

   這個類就是一段要說的話. 主要的屬性和方法有: pitchMultiplier: 音高 postUtteranceDelay: 讀完一段後的停頓時間 preUtteranceDelay: 讀一段話之前的停頓 rate: 讀地速度, 系統提供了三個速度: AVSpeechUtteranceMinimumSpeechRate, AVSpeechUtteranceMaximumSpeechRate, AVSpeechUtteranceDefaultSpeechRate speechString: 要讀的字串 voice: 使用的聲音, 是AVSpeechSynthesisVoice對象

  上面這些是關於語音播報的基本用法和一些屬性、方法,但是如何結合程式推送,在程式後台啟動並執行時候實現語音播報的效果呢。當然還有很多需要注意的地方。 1.啟用推送喚醒

和上面的後台擷取類似,更改Info.plist,在UIBackgroundModes下加入remote-notification即可開啟,當然同樣的更簡單直接的辦法是使用Capabilities,勾選下面的三個modes。

2.更改推送的payload

在iOS7中,如果想要使用推送來喚醒應用運行代碼的話,需要在payload中加入content-available,並設定為1。

  {"aps":{"content-available":1,"alert":"今天是個好天氣"}}

 

  "content-available":1  推送喚醒

  "alert":""  推送內容

  "badge":1   app右上方數字

 “sound”:”default”   預設聲音

   aps

  {  

       content-available: 1

       alert: {...}

  } 3.實現推送喚醒代碼並通知系統

  最後在appDelegate中實現-application:didReceiveRemoteNotification:fetchCompletionHandle:。這部分內容和上面的後台擷取部分完全一樣,在此不再重複。

//接收到推送訊息

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(nonnull void (^)(UIBackgroundFetchResult))completionHandler {

    NSLog(@"remote: %@", userInfo);

    //回調

    completionHandler(UIBackgroundFetchResultNewData);

    //語音播報

    AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:userInfo[@"aps"][@"alert"]];

    AVSpeechSynthesizer *synth = [[AVSpeechSynthesizer alloc] init];

    [synth speakUtterance:utterance];

}

  完成以上步驟就可在後台進行語音播報了。

參考文章連結: 
一、http://www.jianshu.com/p/174fd2673897 
二、https://onevcat.com/2013/08/ios7-background-multitask/ 
三、http://hayageek.com/ios-silent-push-notifications/

四、http://blog.csdn.net/u012477117/article/details/52039506

五、http://www.cnblogs.com/luerniu/p/5901350.html

六、https://www.oschina.net/question/2556708_2194798

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.