iOS中的语音播报

作者: JollyJerry | 来源:发表于2018-06-25 16:12 被阅读47次

    偶然发现的原生的语音播报,简单的看一下:

    注:原生的语音播报功能是在7.0以后才出现的,在使用时要注意判断当前版本号。

    语音播报的三个类: AVSpeechSynthesizerAVSpeechUtteranceAVSpeechSynthesisVoice

    AVSpeechSynthesizer : 用于控制语音播报的开始、暂停、继续和停止 —— 有代理,监听播报状态;
    AVSpeechUtterance : 播报声音的对象 : 指定播报内容,语速设置 、 声音大小设置等;
    AVSpeechSynthesisVoice : 设置声音的属性 : 语言类型、播报者名称等;

    1、首先导入头文件:

    #import <AVFoundation/AVFoundation.h>
    
    @interface ViewController ()<AVSpeechSynthesizerDelegate>{
        
    //    用于控制语音播报的开始、暂停、继续和停止 —— 有代理,监听播报状态
        AVSpeechSynthesizer *_synthesizer;
    
    //    播报声音的对象 : 指定播报内容,语速设置 、 声音大小设置等
        AVSpeechUtterance *_utterance;
        
        //    设置声音的属性 : 语言类型、播报者名称等
        AVSpeechSynthesisVoice *_voiceType;
        
    }
    

    2、设置播报的内容:

    - (void)viewDidLoad {
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
        
        self.playContentStr = @"自然地理是研究自然地理环境的组成、结构、功能、动态及其空间分异规律的学科,是地理学的一个重要分支学科。综合性的分支科学有综合自然地理学、区域自然地理学、古地理学等。部门性的分支科学有地貌学、气候学、水文地理学、生物地理学、冰川学等。狭义的自然地理学仅指综合自然地理学,部门自然地理学已逐步发展成为一门独立的学科。狭义的自然地理学仅指综合自然地理学。";
         
        //初始化语音播报,控制播放、暂停
        _synthesizer = [[AVSpeechSynthesizer alloc]init];
        _synthesizer.delegate = self;//注意:代理方法写在启动前
        
        //语音对象,说中文(zh_CN),英文(en-US)
        _voiceType = [AVSpeechSynthesisVoice voiceWithLanguage:@"zh_CN"];
        
        // 实例化发声的对象,及朗读的内容 ---  发声对象
        _utterance = [AVSpeechUtterance speechUtteranceWithString:self.playContentStr];
        
        //指定语音类型
        _utterance.voice = _voiceType;
        //     语音的播放速度
        //    utterance.rate = 1;
        
        _utterance.volume = 1.0;
        
    }
    

    3、开始播报:

     - (IBAction)starPlay:(id)sender {
    
        if ([[[UIDevice currentDevice]systemVersion]integerValue]>=7.0) {
            
            [_synthesizer speakUtterance:_utterance];//启动
    
        }
    
    }
    

    4、暂停播报:

    /*
     *   AVSpeechBoundaryImmediate,  立即停止
     *
     *
     *   AVSpeechBoundaryWord  说完一个整词再停
     *
     */
    
    - (IBAction)pausePlay:(id)sender {
        
        [_synthesizer pauseSpeakingAtBoundary:AVSpeechBoundaryImmediate];
        
    }
    
    

    5、继续播报和停止播报:

     - (IBAction)resumePlay:(id)sender {
        
        [_synthesizer continueSpeaking];
        
    }
    - (IBAction)stopPlay:(id)sender {
        [_synthesizer stopSpeakingAtBoundary:AVSpeechBoundaryImmediate];
        
    }
    

    代理方法 —— 监听 播报状态

    #pragma mark - AVSpeechSynthesizer的代理方法 - 监听状态
    -(void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didStartSpeechUtterance:(AVSpeechUtterance *)utterance {
        
        NSLog(@"已经开始播报");
        //1,0
        NSLog(@"判断播报状态%u\n%u",_synthesizer.isSpeaking,_synthesizer.isPaused);
        
    }
    
    -(void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didPauseSpeechUtterance:(AVSpeechUtterance *)utterance{
        
        NSLog(@"暂停播报");
        
        NSLog(@"判断播报状态%u\n%u",_synthesizer.isSpeaking,_synthesizer.isPaused);//1,1
        
    }
    
    -(void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didFinishSpeechUtterance:(AVSpeechUtterance *)utterance
    {
        
        NSLog(@"完成播报");
        
        //0,0
        NSLog(@"判断播报状态%u\n%u",_synthesizer.isSpeaking,_synthesizer.isPaused);
        
    }
    
    -(void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didCancelSpeechUtterance:(AVSpeechUtterance *)utterance
    {
        
        NSLog(@"已经停止播报");
        
    }
    
    -(void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didContinueSpeechUtterance:(AVSpeechUtterance *)utterance
    {
        
        NSLog(@"继续播报");
        
        NSLog(@"判断播报状态%u\n%u",_synthesizer.isSpeaking,_synthesizer.isPaused);//1,0
        
    }
    
    -(void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer willSpeakRangeOfSpeechString:(NSRange)characterRange utterance:(AVSpeechUtterance *)utterance
    {
        
    }
    
    

    PS:AVSpeechSynthesisVoice *_voiceType; 支持的声音类型如下:

    AVSpeechSynthesisVoice *_voiceType;  支持的声音类型如下:
     
     <__NSArrayM 0x1742487c0>(
     
     [AVSpeechSynthesisVoice 0x174013040] Language: ar-SA, Name: Maged, Quality: Default [com.apple.ttsbundle.Maged-compact],
     
     [AVSpeechSynthesisVoice 0x174010210] Language: cs-CZ, Name: Zuzana, Quality: Default [com.apple.ttsbundle.Zuzana-compact],
     
     [AVSpeechSynthesisVoice 0x174013400] Language: da-DK, Name: Sara, Quality: Default [com.apple.ttsbundle.Sara-compact],
     
     [AVSpeechSynthesisVoice 0x174012b00] Language: de-DE, Name: Anna, Quality: Default [com.apple.ttsbundle.Anna-compact],
     
     [AVSpeechSynthesisVoice 0x174012dc0] Language: de-DE, Name: Helena, Quality: Default [com.apple.ttsbundle.siri_female_de-DE_compact],
     
     [AVSpeechSynthesisVoice 0x174013140] Language: de-DE, Name: Martin, Quality: Default [com.apple.ttsbundle.siri_male_de-DE_compact],
     
     [AVSpeechSynthesisVoice 0x1740131c0] Language: el-GR, Name: Melina, Quality: Default [com.apple.ttsbundle.Melina-compact],
     
     [AVSpeechSynthesisVoice 0x174012bc0] Language: en-AU, Name: Catherine, Quality: Default [com.apple.ttsbundle.siri_female_en-AU_compact],
     
     [AVSpeechSynthesisVoice 0x174012d40] Language: en-AU, Name: Gordon, Quality: Default [com.apple.ttsbundle.siri_male_en-AU_compact],
     
     [AVSpeechSynthesisVoice 0x174012ec0] Language: en-AU, Name: Karen, Quality: Default [com.apple.ttsbundle.Karen-compact],
     
     [AVSpeechSynthesisVoice 0x174012b40] Language: en-GB, Name: Arthur, Quality: Default [com.apple.ttsbundle.siri_male_en-GB_compact],
     
     [AVSpeechSynthesisVoice 0x174012c40] Language: en-GB, Name: Daniel, Quality: Default [com.apple.ttsbundle.Daniel-compact],
     
     [AVSpeechSynthesisVoice 0x174013100] Language: en-GB, Name: Martha, Quality: Default [com.apple.ttsbundle.siri_female_en-GB_compact],
     
     [AVSpeechSynthesisVoice 0x174013240] Language: en-IE, Name: Moira, Quality: Default [com.apple.ttsbundle.Moira-compact],
     
     [AVSpeechSynthesisVoice 0x174012730] Language: en-US, Name: Aaron, Quality: Default [com.apple.ttsbundle.siri_male_en-US_compact],
     
     [AVSpeechSynthesisVoice 0x174012d00] Language: en-US, Name: Fred, Quality: Default [com.apple.speech.synthesis.voice.Fred],
     
     [AVSpeechSynthesisVoice 0x1740132c0] Language: en-US, Name: Nicky, Quality: Default [com.apple.ttsbundle.siri_female_en-US_compact],
     
     [AVSpeechSynthesisVoice 0x1740133c0] Language: en-US, Name: Samantha, Quality: Default [com.apple.ttsbundle.Samantha-compact],
     
     [AVSpeechSynthesisVoice 0x1740134b0] Language: en-ZA, Name: Tessa, Quality: Default [com.apple.ttsbundle.Tessa-compact],
     
     [AVSpeechSynthesisVoice 0x174013280] Language: es-ES, Name: Monica, Quality: Default [com.apple.ttsbundle.Monica-compact],
     
     [AVSpeechSynthesisVoice 0x174013380] Language: es-MX, Name: Paulina, Quality: Default [com.apple.ttsbundle.Paulina-compact],
     
     [AVSpeechSynthesisVoice 0x174013440] Language: fi-FI, Name: Satu, Quality: Default [com.apple.ttsbundle.Satu-compact],
     
     [AVSpeechSynthesisVoice 0x174012ac0] Language: fr-CA, Name: Amelie, Quality: Default [com.apple.ttsbundle.Amelie-compact],
     
     [AVSpeechSynthesisVoice 0x174012c80] Language: fr-FR, Name: Daniel, Quality: Default [com.apple.ttsbundle.siri_male_fr-FR_compact],
     
     [AVSpeechSynthesisVoice 0x174013080] Language: fr-FR, Name: Marie, Quality: Default [com.apple.ttsbundle.siri_female_fr-FR_compact],
     
     [AVSpeechSynthesisVoice 0x1740134f0] Language: fr-FR, Name: Thomas, Quality: Default [com.apple.ttsbundle.Thomas-compact],
     
     [AVSpeechSynthesisVoice 0x174012b80] Language: he-IL, Name: Carmit, Quality: Default [com.apple.ttsbundle.Carmit-compact],
     
     [AVSpeechSynthesisVoice 0x174012f80] Language: hi-IN, Name: Lekha, Quality: Default [com.apple.ttsbundle.Lekha-compact],
     
     [AVSpeechSynthesisVoice 0x1740130c0] Language: hu-HU, Name: Mariska, Quality: Default [com.apple.ttsbundle.Mariska-compact],
     
     [AVSpeechSynthesisVoice 0x174012c00] Language: id-ID, Name: Damayanti, Quality: Default [com.apple.ttsbundle.Damayanti-compact],
     
     [AVSpeechSynthesisVoice 0x174012a40] Language: it-IT, Name: Alice, Quality: Default [com.apple.ttsbundle.Alice-compact],
     
     [AVSpeechSynthesisVoice 0x174012d80] Language: ja-JP, Name: Hattori, Quality: Default [com.apple.ttsbundle.siri_male_ja-JP_compact],
     
     [AVSpeechSynthesisVoice 0x174012f00] Language: ja-JP, Name: Kyoko, Quality: Default [com.apple.ttsbundle.Kyoko-compact],
     
     [AVSpeechSynthesisVoice 0x174013340] Language: ja-JP, Name: O-ren, Quality: Default [com.apple.ttsbundle.siri_female_ja-JP_compact],
     
     [AVSpeechSynthesisVoice 0x1740135f0] Language: ko-KR, Name: Yuna, Quality: Default [com.apple.ttsbundle.Yuna-compact],
     
     [AVSpeechSynthesisVoice 0x174012cc0] Language: nl-BE, Name: Ellen, Quality: Default [com.apple.ttsbundle.Ellen-compact],
     
     [AVSpeechSynthesisVoice 0x174010060] Language: nl-NL, Name: Xander, Quality: Default [com.apple.ttsbundle.Xander-compact],
     
     [AVSpeechSynthesisVoice 0x174013300] Language: no-NO, Name: Nora, Quality: Default [com.apple.ttsbundle.Nora-compact],
     
     [AVSpeechSynthesisVoice 0x174012930] Language: pl-PL, Name: Zosia, Quality: Default [com.apple.ttsbundle.Zosia-compact],
     
     [AVSpeechSynthesisVoice 0x174013000] Language: pt-BR, Name: Luciana, Quality: Default [com.apple.ttsbundle.Luciana-compact],
     
     [AVSpeechSynthesisVoice 0x174012e40] Language: pt-PT, Name: Joana, Quality: Default [com.apple.ttsbundle.Joana-compact],
     
     [AVSpeechSynthesisVoice 0x174012e00] Language: ro-RO, Name: Ioana, Quality: Default [com.apple.ttsbundle.Ioana-compact],
     
     [AVSpeechSynthesisVoice 0x174013200] Language: ru-RU, Name: Milena, Quality: Default [com.apple.ttsbundle.Milena-compact],
     
     [AVSpeechSynthesisVoice 0x174012f40] Language: sk-SK, Name: Laura, Quality: Default [com.apple.ttsbundle.Laura-compact],
     
     [AVSpeechSynthesisVoice 0x174012a80] Language: sv-SE, Name: Alva, Quality: Default [com.apple.ttsbundle.Alva-compact],
     
     [AVSpeechSynthesisVoice 0x174012e80] Language: th-TH, Name: Kanya, Quality: Default [com.apple.ttsbundle.Kanya-compact],
     
     [AVSpeechSynthesisVoice 0x174013570] Language: tr-TR, Name: Yelda, Quality: Default [com.apple.ttsbundle.Yelda-compact],
     
     [AVSpeechSynthesisVoice 0x174012fc0] Language: zh-CN, Name: Li-mu, Quality: Default [com.apple.ttsbundle.siri_male_zh-CN_compact],
     
     [AVSpeechSynthesisVoice 0x174012950] Language: zh-CN, Name: Ting-Ting, Quality: Default [com.apple.ttsbundle.Ting-Ting-compact],
     
     [AVSpeechSynthesisVoice 0x1740135b0] Language: zh-CN, Name: Yu-shu, Quality: Default [com.apple.ttsbundle.siri_female_zh-CN_compact],
     
     [AVSpeechSynthesisVoice 0x1740129a0] Language: zh-HK, Name: Sin-Ji, Quality: Default [com.apple.ttsbundle.Sin-Ji-compact],
     
     [AVSpeechSynthesisVoice 0x174013180] Language: zh-TW, Name: Mei-Jia, Quality: Default [com.apple.ttsbundle.Mei-Jia-compact]
     
     )
    

    相关文章

      网友评论

        本文标题:iOS中的语音播报

        本文链接:https://www.haomeiwen.com/subject/dysyyftx.html