IOS语音集成
一、首先到科大讯飞官网注册账号(http://open.voicecloud.cn/),并创建应用获取appid,下载sdk文件
二、代码实现api调用
1.先用xcode(我这里使用的是xcode 5.1)新建好一个项目,然后在项目添加要用的类库。其中有一个是讯飞语音的类库iflyMSC,在下载的sdk文件里有,导入就行了。导入的时候要注意把iflyMSC类库拷贝到你的工程目录里,不然后果很严重!
2.导完类库之后,在建好的工程里添加好要用的头文件。
MainViewController.h
1
2
|
#import <UIKit/UIKit.h> #import "iflyMSC/IFlySpeechSynthesizerDelegate.h" |
MainViewController.m
1
2
3
4
5
6
7
|
#import "MainViewController.h" #import <QuartzCore/QuartzCore.h> #import <AVFoundation/AVAudioSession.h> #import <AudioToolbox/AudioSession.h> #import "iflyMSC/IFlySpeechConstant.h" #import "iflyMSC/IFlySpeechUtility.h" #import "iflyMSC/IFlySpeechSynthesizer.h" |
3.完成这些准备工作之后,接下来就是堆代码的工作了。为了方便,笔者只用了两个控件:一个UITextField、一个UIButton,然后给这两个控件分别做一个Outlet和Action连接。
MainViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#import <UIKit/UIKit.h> #import "iflyMSC/IFlySpeechSynthesizerDelegate.h" //引入语音合成类 @ class IFlySpeechSynthesizer; @ class IFlyDataUploader; //注意要添加语音合成代理 @interface MainViewController : UIViewController<IFlySpeechSynthesizerDelegate> //声明语音合成的对象 @property (nonatomic, strong) IFlySpeechSynthesizer *iFlySpeechSynthesizer; @property (strong, nonatomic) IBOutlet UITextField *content; - (IBAction)Start:(id)sender; @end |
MainViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
#import "MainViewController.h" #import <QuartzCore/QuartzCore.h> #import <AVFoundation/AVAudioSession.h> #import <AudioToolbox/AudioSession.h> #import "iflyMSC/IFlySpeechConstant.h" #import "iflyMSC/IFlySpeechUtility.h" #import "iflyMSC/IFlySpeechSynthesizer.h" @interface MainViewController () @end @implementation MainViewController - ( void )viewDidLoad { [super viewDidLoad]; //通过appid连接讯飞语音服务器,把@"53b5560a"换成你申请的appid NSString *initString = [[NSString alloc] initWithFormat:@ "appid=%@,timeout=%@" ,@ "53b5560a" ,@ "20000" ]; //所有服务启动前,需要确保执行createUtility [IFlySpeechUtility createUtility:initString]; //创建合成对象,为单例模式 _iFlySpeechSynthesizer = [IFlySpeechSynthesizer sharedInstance]; _iFlySpeechSynthesizer.delegate = self; //设置语音合成的参数 //合成的语速,取值范围 0~100 [_iFlySpeechSynthesizer setParameter:@ "50" forKey:[IFlySpeechConstant SPEED]]; //合成的音量;取值范围 0~100 [_iFlySpeechSynthesizer setParameter:@ "50" forKey:[IFlySpeechConstant VOLUME]]; //发音人,默认为”xiaoyan”;可以设置的参数列表可参考个性化发音人列表 [_iFlySpeechSynthesizer setParameter:@ "xiaoyan" forKey:[IFlySpeechConstant VOICE_NAME]]; //音频采样率,目前支持的采样率有 16000 和 8000 [_iFlySpeechSynthesizer setParameter:@ "8000" forKey:[IFlySpeechConstant SAMPLE_RATE]]; ////asr_audio_path保存录音文件路径,如不再需要,设置value为nil表示取消,默认目录是documents [_iFlySpeechSynthesizer setParameter: "tts.pcm" forKey:[IFlySpeechConstant TTS_AUDIO_PATH]]; //隐藏键盘,点击空白处 UITapGestureRecognizer *tapGr = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(viewTapped:)]; tapGr.cancelsTouchesInView = NO; [self.view addGestureRecognizer:tapGr]; } -( void )viewTapped:(UITapGestureRecognizer*)tapGr { [self.content resignFirstResponder]; } - ( void )didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } - (IBAction)Start:(id)sender { //启动合成会话 [_iFlySpeechSynthesizer startSpeaking:self.content.text]; } #pragma mark - IFlySpeechSynthesizerDelegate //开始播放 - ( void ) onSpeakBegin { } //缓冲进度 - ( void ) onBufferProgress:( int ) progress message:(NSString *)msg { NSLog(@ "bufferProgress:%d,message:%@" ,progress,msg); } //播放进度 - ( void ) onSpeakProgress:( int ) progress { NSLog(@ "play progress:%d" ,progress); } //暂停播放 - ( void ) onSpeakPaused { } //恢复播放 - ( void ) onSpeakResumed { } //结束回调 - ( void ) onCompleted:(IFlySpeechError *) error { } @end |
IOS语音集成的更多相关文章
- 现有iOS项目集成React Native过程记录
在<Mac系统下React Native环境搭建>配置了RN的开发环境,然后,本文记录在现有iOS项目集成React Native的过程,官方推荐使用Cocoapods,项目一开始也是使用 ...
- fir.im Weekly - 暖心的 iOS 持续集成,你值得拥有
一则利好消息,flow.ci 支持 iOS 项目持续集成,想试试的伙伴去 Gitter群 问问.首批尝鲜用户@阿米amoy 已经用 flow.ci 实现了基本的 iOS 持续集成,并详细记录整个 Bu ...
- 如何在ios中集成微信登录功能
在ios中集成微信的登录功能有两种方法 1 用微信原生的api来做,这样做的好处就是轻量级,程序负重小,在Build Settings 中这样设置 然后设置 友盟的设置同上,但是要注意,加入你需要的所 ...
- 使用 Fastlane 实现 IOS 持续集成
简介 持续集成是个“一次配置长期受益”的工作.但很多小公司都没有.以前在做Windows开发配置感觉简单一些,这次配置iOS的,感觉步骤还挺多.整理出来,分享给大家,不正确的地方请及时指正. 本文主要 ...
- 使用VSTS/TFS搭建iOS持续集成环境
TFS 自2015版开始支持跨平台的持续集成环境,通过提供开源的build agent为 Windows / linux / macOS 提供了统一的持续集成环境管理能力.这篇文章给大家介绍一下如何使 ...
- 环信 之 iOS 客户端集成四:集成UI
在Podfile文件里加入 pod 'EaseUI', :git => 'https://github.com/easemob/easeui-ios-cocoapods.git' 然后在终端中的 ...
- CI Weekly #21 | iOS 持续集成快速入门指南
搭建 iOS 持续集成环境要多久?每个 iOSer 都有不同的答案.这次我们整理了 flow.ci 的 iOS 持续集成的相关文档和最佳实践,希望帮你更快地完成构建.更新文档见: flow.ci iO ...
- 视频云SDK iOS持续集成项目实践
1. 前言 2016年, 我们维护的 iOS推流播放融合SDK KSYLive_iOS 在github上发布了40多个版本, 平均两周发布一个新版本, 经历了最初痛苦的全手动版本构建和维护, 到后来慢 ...
- iOS 持续集成
iOS 持续集成系列 - 开篇 前言 iOS 开发在经过这几年的野蛮生长之后,慢慢地趋于稳定.无论开发语言是 Objective-C 还是 Swift,工程类型是 Hybird 还是原生,开发思想是 ...
随机推荐
- 使用adb shell卸载程序
个人感觉在命令行中卸载程序要比在手机界面卸载程序要方便许多,配合命令行下的报名查看包名的命令就更加方便了. 1.查看应用准确包名 adb shell pm list package -f |grep ...
- java.io.IOException: 您的主机中的软件中止了一个已建立的连接解决办法
问题现象和http://hi.baidu.com/cara_cloud/item/193a3ee327546d395a2d64be描述的一样,就是在eclipse的console栏中一直显示java. ...
- ajax跨域之设置Access-Control-Allow-Origin
通过在服务器端设置请求头的源可以实现跨域 public function test_ajax() { header("Access-Control-Allow-Origin: http:// ...
- zlog学习笔记(level)
level.h /** * */ #ifndef __zlog_level_h #define __zlog_level_h #include "stdio.h" #include ...
- swift三方库
链接: Swift 有哪些优秀的第三方库? Swift 中AFNetworking 的替代方案 Alamofire Swift2.0后Alamofire的使用方法 [快速学会Swift第三方库] Al ...
- Linux 信号详解二(信号分类,信号处理,kill)
信号分类 信号分为可靠信号和不可靠信号 不可靠信号的缺点 ①:处理完信号,需要重新再注册信号:②信号可能丢失. Linux已经对缺点①做了优化,现在的不可靠问题主要指的是信号可能丢失 信号还可以分为实 ...
- Windows 部署 Redis 群集
1,下载Redis for windows 的最新版本,解压到 c:\Redis 目录下备用https://github.com/MSOpenTech/redis/releases当前我使用的是 3. ...
- Android实现滑动刻度尺效果,选择身高体重和生日
刻度尺效果虽然看起来很美,我个人认为很不实用,即使再不实用,也有用的,鉴于群里成员对我的苦苦哀求,我就分享一个他用不到的,横屏滑动刻度尺,因为他需要竖屏的,哈哈…… 最近群里的开发人员咨询怎样实现刻度 ...
- IOS_SearchBar搜索栏及关键字高亮
搜索框的效果演示: 这个就是所谓的搜索框了,那么接下来我们看看如何使用代码来实现这个功能. 我所使用的数据是英雄联盟的英雄名单,是一个JSON数据的txt文件, JSON数据的处理代码如下所示: ? ...
- 迷你DVD管理器
import java.text.*; import java.util.*; class DVDSet { String[] name=new String[50]; //定义一个DVD数组 boo ...