为textView添加语音输入功能的实例代码(集成讯飞语音识别)
程序员文章站
2024-02-12 14:51:28
非常感谢大家利用自己宝贵的时间来阅读我的文章 , 今天给大家带来的是一个集成讯飞语音识别功能的小demo,为textview添加一个语音输入的功能,相信在这个智能化趋势的大...
非常感谢大家利用自己宝贵的时间来阅读我的文章 , 今天给大家带来的是一个集成讯飞语音识别功能的小demo,为textview添加一个语音输入的功能,相信在这个智能化趋势的大环境的下,很多人能用得到这个功能。如果需要的话希望能帮到你 , 当然, 有任何不妥的地方 欢迎指正。
先上demo --->xunfeidemo
效果展示:
功能实现,sdk中提供了两种方式,一种是带界面的语音识别,有一个识别语音的动画的界面效果。另一种是*面的。我这里使用的是带界面的,不带界面的自己可以去看一下,大同小异
第一步:去注册账号、创建应用、下载sdk、拖入项目
第二步:添加依赖库
libz.tbd avfoundation.framework systemconfiguration.framework foundation.framework coretelephony.framework audiotoolbox.framework uikit.framework addressbook.framework corelocation.framework coregraphics.framework
第三步:appdelegate配置
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions { //存储路径 nsarray *paths = nssearchpathfordirectoriesindomains(nscachesdirectory, nsuserdomainmask, yes); nsstring *cachepath = [paths objectatindex:0]; [iflysetting setlogfilepath:cachepath]; //创建语音配置,appid必须要传入,仅执行一次则可 nsstring *initstring = [[nsstring alloc] initwithformat:@"appid=%@",@"你的appid"]; //所有服务启动前,需要确保执行createutility [iflyspeechutility createutility:initstring]; }
第四步:把demo里的isrdatahelper.h及.m文件拖入项目中
第五步:控制器代码
1、引用头文件
#import "iflymsc/iflymsc.h" #import "isrdatahelper.h"
2、初始化_iflyrecognizerview
//有界面 -(void)initrecognizer{ //单例模式,ui的实例 if (_iflyrecognizerview == nil) { //ui显示剧中 _iflyrecognizerview= [[iflyrecognizerview alloc] initwithcenter:self.view.center]; [_iflyrecognizerview setparameter:@"" forkey:[iflyspeechconstant params]]; //设置听写模式 [_iflyrecognizerview setparameter:@"iat" forkey:[iflyspeechconstant ifly_domain]]; } _iflyrecognizerview.delegate = self; if (_iflyrecognizerview != nil) { //设置最长录音时间 [_iflyrecognizerview setparameter:@"30000" forkey:[iflyspeechconstant speech_timeout]]; //设置后端点 3000 [_iflyrecognizerview setparameter:@"3000" forkey:[iflyspeechconstant vad_eos]]; //设置前端点 3000 [_iflyrecognizerview setparameter:@"3000" forkey:[iflyspeechconstant vad_bos]]; //设置采样率,推荐使用16k 16000 [_iflyrecognizerview setparameter:@"16000" forkey:[iflyspeechconstant sample_rate]]; // if ([instance.language isequaltostring:[iatconfig chinese]]) { // //设置语言 zh_cn [_iflyrecognizerview setparameter:@"zh_cn" forkey:[iflyspeechconstant language]]; // //设置方言 mandarin [_iflyrecognizerview setparameter:@"mandarin" forkey:[iflyspeechconstant accent]]; // }else if ([instance.language isequaltostring:[iatconfig english]]) { // //设置语言 // [_iflyrecognizerview setparameter:instance.language forkey:[iflyspeechconstant language]]; // } // //设置是否返回标点符号 0 [_iflyrecognizerview setparameter:@"1" forkey:[iflyspeechconstant asr_ptt]]; } }
3、按钮点击响应
-(void)startbtn{ if (_iflyrecognizerview == nil) { [self initrecognizer ]; } //设置音频来源为麦克风 [_iflyrecognizerview setparameter:ifly_audio_source_mic forkey:@"audio_source"]; //设置听写结果格式为json [_iflyrecognizerview setparameter:@"plain" forkey:[iflyspeechconstant result_type]]; //保存录音文件,保存在sdk工作路径中,如未设置工作路径,则默认保存在library/cache下 [_iflyrecognizerview setparameter:@"asr.pcm" forkey:[iflyspeechconstant asr_audio_path]]; [_iflyrecognizerview start]; }
4、代理方法,结果解析
- (void)onresult:(nsarray *)resultarray islast:(bool)islast { nsmutablestring *result = [[nsmutablestring alloc] init]; nsdictionary *dic = [resultarray objectatindex:0]; for (nsstring *key in dic) { [result appendformat:@"%@",key]; } self.textfield.text =[nsstring stringwithformat:@"%@%@",_textfield.text,result]; [_iflyrecognizerview cancel]; } - (void)onerror: (iflyspeecherror *) error { nslog(@"识别出错"); }
恩,理论上到这里就算完成~,这里仅提供一个参考,具体使用请查看集成文档
以上这篇为textview添加语音输入功能的实例代码(集成讯飞语音识别)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。