本章将讲解如何快速地集成BDVRClient到现有应用中。一个完整的Demo请参考开发包中的示例程序VoiceRecognitionDemo。
创建应用
请参考《百度语音开放平台使用指南》创建应用,开通服务并完成个性化设置。
引入编译需要的Framework
BDVRClient使用了录音和播放功能,因此需要在Xcode工程中引入AudioToolbox.framework和AVFoundation.framework;BDVRClient还使用到了网络状态检测功能,因此还需要引入SystemConfiguration.framework;为了生成设备UDID,需要引入Security.framework;为了支持gzip压缩,需要引入libz.1.dylib; 网络模块需要引入CFNetwork.framework;某些场景需要获取设备地理位置以提高识别准确度,需引入CoreLocation.framework。
为了支持识别控件,需要引入OpenGLES.framework,QuartzCore.framework,GLKit.framework,CoreGraphics.framework和CoreText.framework。
添加方式:右键点击Xcode中的工程文件,在出现的界面中,选中TARGETS中应用,在出现的界面中选中Build Phase->Link Binary With Libraries,点击界面中的“+”图标,在弹出的界面中选择此7个Framework即可,添加完成效果图如图所示(libBDVoiceRecognitionClient.a将在随后添加)。
注意:如果文件不成功
1 将整个SDK包先复制到工程,然后再add file的方式加入工程 create group
2 将主题删除引用,再重新加入,create folder references
记得删除里面的demo
将son文件设置为关闭arc
3 再导入工程框架
=====
百度语音目前最新版的1.6.2少了CoreTelephony.framework类库、会报5个错,加上就好、再将JSONKit文件拉进工程、就okl
若不导入JSONKit 需将在 Build Settings 中的 Other Linker Flags 修改为 -all_load
具体流程
1.将在百度语音开房平台上下载的SDK拖入到项目工程的文件目录下
3.删除BDVRClientSample文件夹
4.如图 向项目中添加文件夹
4.1 将文件夹BDVoiceRecognitionClientResources从项目中移除 再添加
添加模式如下:
二.引入BDVRClient的头文件
1.首先将BDVRClient提供的头文件拷贝到工程目录下,在XCode中添加此文件,引入BDVRClient提供的头文件。
2.1 如果使用识别UI,请添加如下头文件(本文只使用识别UI和接口):
1.#import “BDRecognizerViewController.h”
2.#import “BDRecognizerViewDelegate.h”
2.2 如果只使用识别接口,添加如下头文件:
1.#import “BDVoiceRecognitionClient.h”
2.3 如果要对音频数据或音频文件直接进行识别,请分别添加如下头文件:
1.#import “BDVRRawDataRecognizer.h”
2.#import “BDVRFileRecognizer.h”
#import"BDRecognizerViewController.h"#import"BDRecognizerViewDelegate.h"#import"BDVoiceRecognitionClient.h"@interfaceViewController(){
BDRecognizerViewController *bdrv;
NSMutableData *allData;
BDRecognizerViewParamsObject *bdvp;
UILabel *label;
}@end
三.添加第三方开源库
3.1 BDVRClient中使用了第三方开源库,包括TTTAttributedLabel和苹果非官方的录音API, 如果产品项目中已经包含其中的部分库,请勿重复添加,否则,请添加这三种第三方开源库到项目中,第三方库文件可以在SDK开发包下的Third-party目录下找到。由于SDK中使用了类别扩展,请在Build Setting中的Other Linker Flags中添加-ObjC。
注意:其中第三方库TTTAttributedLabel需要设置为ARC方式编译。
- (void)viewDidLoad {
[super viewDidLoad];// Do any additional setup after loading the view, typically from a nib.//Lable初始化label = [[UILabel alloc]initWithFrame:CGRectMake(50,100,300, 50)];
label.backgroundColor = [UIColor blueColor];
[self.view addSubview:label];//这里用一个button来实现UIButton *b = [UIButton buttonWithType:UIButtonTypeRoundedRect];
b.frame = CGRectMake(100, 400, 100, 30);
[b setTitle:@"click" forState:UIControlStateNormal];
[b addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:b];//主题设置BDTheme *me = [BDTheme lightGreenTheme];
bdrv = [[BDRecognizerViewController alloc]initWithOrigin:CGPointMake(20, 180) withTheme:me];//全屏幕bdrv.enableFullScreenMode = YES;
bdrv.delegate = self;
bdvp = [[BDRecognizerViewParamsObject alloc]init];//bdvp.productID 不用设置bdvp.apiKey = @"ANQLQINhgf2TL0gVP5xhNCxm";
bdvp.secretKey = @"c3d5f5f8ac5478e87802431389b2cba7";
}//button方法-(void)click{
allData = [[NSMutableData alloc]init];
[bdrv startWithParams:bdvp];
}
/*** @brief录音数据返回* @paramrecordData 录音数据* @paramsampleRate 采样率*/
- (void)onRecordDataArrived:(NSData *)recordData sampleRate:(int)sampleRate{
[allData appendData:recordData];
}//此方法是将语音传递到lable上
- (void)onPartialResults:(NSString *)results
{
label.text = results;
}
//生成二维码
- (void)clickBtn1{
UIImageView *imgV = [[UIImageView alloc]initWithFrame:CGRectMake(50, 280, 200, 200)];
imgV.backgroundColor = [UIColor purpleColor];
[self.view addSubview:imgV];
// 生成二维码
UIImage *img = [QRCodeGenerator qrImageForString:label.text imageSize:imgV.frame.size.width];
// 把生成的二维码展示在图像框上
imgV.image = img;
}