iOS-系统语音播报.txt文本

本篇记录一下系统播放文本的功能。主要以代码+注释为展示方式。

#import "ViewController.h"
#import <AVFoundation/AVFoundation.h>

@interface ViewController ()<AVSpeechSynthesizerDelegate>
@property (nonatomic, strong) AVSpeechSynthesizer *synthesizer;
@property (nonatomic, strong) UIButton *button1;
@property (nonatomic, strong) UIButton *button2;
@property (nonatomic, strong) UILabel *label;


@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    self.label = [[UILabel alloc]initWithFrame:CGRectMake(10, 100, 400, 100)];
    self.label.numberOfLines = 0;
    self.label.textColor = [UIColor redColor];
    self.label.backgroundColor = [UIColor lightGrayColor];
    [self.view addSubview:self.label];
    
    self.button1 = [UIButton buttonWithType:UIButtonTypeCustom];
    [self.button1 addTarget:self action:@selector(startPlay:) forControlEvents:UIControlEventTouchUpInside];
    self.button1.backgroundColor = [UIColor redColor];
    [self.button1 setTitle:@"开始播放" forState:UIControlStateNormal];
    self.button1.frame = CGRectMake(100, 200, 100, 100);
    [self.view addSubview:self.button1];
    
    
    self.button2 = [UIButton buttonWithType:UIButtonTypeCustom];
    [self.button2 addTarget:self action:@selector(endPlay:) forControlEvents:UIControlEventTouchUpInside];
    self.button2.backgroundColor = [UIColor purpleColor];
    [self.button2 setTitle:@"结束播放" forState:UIControlStateNormal];
    self.button2.frame = CGRectMake(100, 300, 100, 100);
    [self.view addSubview:self.button2];
    
    [self getTxtFileContent];
    // Do any additional setup after loading the view.
}

⚠️:下面才是系统播放文本的重点代码

- (NSString *)getTxtFileContent {
    // 获取txt文件中的文本内容
    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"demo" ofType:@"txt"];
    NSString *text = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
    return text;
}
- (void)startPlay:(UIButton *)sender {
    NSString *text = [self getTxtFileContent];
    [self readingContentText:text];
    
}
- (void)endPlay:(UIButton *)sender {
    
    if ([self.synthesizer isSpeaking]) {
        [self.synthesizer pauseSpeakingAtBoundary:AVSpeechBoundaryWord];
    }
}
- (void)readingContentText:(NSString *)text {
    1.初始化播音器
    if (!self.synthesizer) {
        self.synthesizer = [[AVSpeechSynthesizer alloc]init];
        self.synthesizer.delegate = self;
    }
    2.将需要朗读的文本合成语音
    AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc]initWithString:text];
    
    /*
     avspeech支持的语言种类包括:
     "th-TH","pt-BR","sk-SK","fr-CA","ro-RO","no-NO","fi-FI","pl-PL","de-DE",
     "nl-NL","id-ID","tr-TR","it-IT","pt-PT","fr-FR","ru-RU","es-MX","zh-HK",
     中文(香港)粤语"sv-SE","hu-HU","zh-TW",中文(台湾)"es-ES","zh-CN",中文(普通话)
     "nl-BE","en-GB",英语(英国)"ar-SA","ko-KR","cs-CZ","en-ZA","en-AU","da-DK",
     "en-US",英语(美国)"en-IE","hi-IN","el-GR","ja-JP"
     */
    
    3.播放中文
    AVSpeechSynthesisVoice *voiceLanguage = [AVSpeechSynthesisVoice voiceWithLanguage:@"zh-CN"];
    utterance.voice = voiceLanguage;
 
    4.语速0.0f - 1.0f
    utterance.rate = 0.5f;
    
    5.播放音调 0.5f-2.0f
    utterance.pitchMultiplier = 1.0f;
    
    6.播放下一句的时候有 0.2s 延迟时间
    utterance.postUtteranceDelay = 0.2f;
    
    7.设置音量大小  0.0f-1.0f
    utterance.volume = 0.1f;
    
    8.播放合成语音
    [self.synthesizer speakUtterance:utterance];
    
   9.暂停播放合成语音
//    [self.synthesizer pauseSpeakingAtBoundary:AVSpeechBoundaryWord];
    
    
}


我们可以根据AVSpeechSynthesizerDelegate坚挺播放状态

#pragma mark - AVSpeechSynthesizerDelegate

// 开始播放
- (void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didStartSpeechUtterance:(AVSpeechUtterance *)utterance {
   NSLog(@"开始播放");
}
- (void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didFinishSpeechUtterance:(AVSpeechUtterance *)utterance {
   NSLog(@"完成播放");
   
}
- (void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didPauseSpeechUtterance:(AVSpeechUtterance *)utterance {
   NSLog(@"暂停播放");
}
- (void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didContinueSpeechUtterance:(AVSpeechUtterance *)utterance {
   NSLog(@"恢复播放");
}
- (void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didCancelSpeechUtterance:(AVSpeechUtterance *)utterance {
   NSLog(@"取消播放");
}

- (void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer willSpeakRangeOfSpeechString:(NSRange)characterRange utterance:(AVSpeechUtterance *)utterance {
   NSLog(@"将要播放某一段语音");
    self.label.text = utterance.speechString;
    
}

这个功能以代码+注释为主。
demo地址:https://github.com/sisios/systemSpeechTextDemo.git

先记录这些,感谢阅读,如有错误,不吝赐教!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容

  • 下午接儿子放学,儿子说,晚上写完作业我要做PPT,周五需要用。我问,你今天上台分享古诗鉴赏了吗?儿子说,没呢,...
    麦依20阅读 167评论 0 0
  • 是多少轮明月让我学会孤眠 是多少个日夜让我放弃怀念 是多少声再见让我不忍离别 只愿用我所有换你梦中一见 纵使世上没...
    _桃夭_阅读 316评论 5 3
  • 今天上午放学后,语文老师说下午要举行一场内务整理大赛。 下午来了以后,有许多同学都积极地去拿内务整理大赛用的东西。...
    不期而遇_31a1阅读 219评论 0 2
  • 夕阳的余晖正在消失 最美的时光总是很短暂 像爱情、友情很脆弱 他说的两个对的人相遇太早 却没有能力给她想要的生活 ...
    染裟阅读 389评论 0 3
  • 无止尽的思念,美丽的思念,美好的说说…… 摘图来自网络,版权属原作者所有!
    蕴纯巧儿阅读 231评论 0 0