iOS---语音转文字

iOS中实现语音转文字,除了一些第三方,如科大讯飞语音、百度语音等第三方的外(这种第三方的在其官方都有详细的教程,这里就不在叙述了。特点是:百度语音支持离线并免费。讯飞的也支持离线,虽然识别率很高也很精准,但是收费),苹果官方也推出了自己的一套识别标准。

苹果官方的文字转语音支持iOS10之后

文字转语音的需求:

1.创建一个按钮用来控制启动、关闭录音

 2.创建一个语音控制器,一个语音识别器 。一个语音任务管理器,

 3.创建显示转换好的文字的控件

步骤:

 iOS语音转文字:1.需要添加Speech.framework库    2.导入头文件#import


 3.在info.plist文件里添加了两个键值Privacy - Microphone Usage Description、Privacy - Speech Recognition Usage Description

具体代码如下:

#import "ViewController.h"

#import<Speech/Speech.h>

#import<AVFoundation/AVFoundation.h>

@interface ViewController ()

@property (nonatomic,strong)UIButton *swicthBut;

@property (nonatomic,strong)UILabel *labText;

@property(nonatomic,strong)SFSpeechRecognizer*speechRecognizer;//语音识别器

@property (nonatomic,strong) SFSpeechAudioBufferRecognitionRequest *recognitionRequest;//语音识别请求

@property (nonatomic, strong) SFSpeechRecognitionTask *recognitionTask;//语音任务管理器

@property (nonatomic,strong) AVAudioEngine *audioEngine;//语音控制器

@end

@implementation ViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    //发送语音认证请求(首先要判断设备是否支持语音识别功能)

    [SFSpeechRecognizer requestAuthorization:^(SFSpeechRecognizerAuthorizationStatus status) {

        boolisButtonEnabled =false;

        switch(status) {

            case SFSpeechRecognizerAuthorizationStatusAuthorized:

                isButtonEnabled =true;

                NSLog(@"可以语音识别");

                break;

            case SFSpeechRecognizerAuthorizationStatusDenied:

                isButtonEnabled =false;

                NSLog(@"用户未授权使用语音识别");

                break;

            case SFSpeechRecognizerAuthorizationStatusRestricted:

                isButtonEnabled =false;

                NSLog(@"语音识别在这台设备上受到限制");

                break;

            case SFSpeechRecognizerAuthorizationStatusNotDetermined:

                isButtonEnabled =false;

                NSLog(@"语音识别未授权");

                break;

            default:

                break;

        }


    }];



    // Do any additional setup after loading the view, typically from a nib.

    self.title=@"测试";

    self.view.backgroundColor = [UIColor whiteColor];

    [self.viewaddSubview:self.swicthBut];

    [self.viewaddSubview:self.labText];



}

- (void)speechRecognizer:(SFSpeechRecognizer*)speechRecognizer availabilityDidChange:(BOOL)available{

    if(available) {

        self.swicthBut.enabled=YES;

          [self.swicthBut setTitle:@"开始录音" forState:UIControlStateNormal];

    }else{


        self.swicthBut.enabled=NO;

          [self.swicthBut setTitle:@"语音识别不可用" forState:UIControlStateNormal];

    }

}

#pragma mark----语音识别

- (SFSpeechRecognizer*)speechRecognizer{


    if (!_speechRecognizer) {

        NSLocale *cale = [[NSLocale alloc]initWithLocaleIdentifier:@"zh-CN"];

       _speechRecognizer= [[SFSpeechRecognizeralloc]initWithLocale:cale];


        //设置代理

        _speechRecognizer.delegate = self;

    }

    return _speechRecognizer;

}

#pragma mark---停止录音

- (void)endRecording{

    [self.audioEngine stop];

    if (_recognitionRequest) {

        [_recognitionRequest endAudio];

    }


    if (_recognitionTask) {

        [_recognitionTask cancel];

        _recognitionTask = nil;

    }

    self.swicthBut.enabled=NO;

}

#pragma  mark---开始录音

- (void)startRecording{

    if (self.recognitionTask) {

        [self.recognitionTask cancel];

        self.recognitionTask = nil;

    }

    AVAudioSession *audioSession = [AVAudioSession sharedInstance];

    NSError*error;

    bool  audioBool = [audioSessionsetCategory:AVAudioSessionCategoryRecorderror:&error];

    NSParameterAssert(!error);

    bool  audioBool1= [audioSessionsetMode:AVAudioSessionModeMeasurementerror:&error];

      NSParameterAssert(!error);

    bool  audioBool2= [audioSessionsetActive:true withOptions:AVAudioSessionSetActiveOptionNotifyOthersOnDeactivation error:&error];

      NSParameterAssert(!error);

    if(audioBool || audioBool1||  audioBool2) {

        NSLog(@"可以使用");

    }else{

        NSLog(@"这里说明有的功能不支持");

    }

    self.recognitionRequest = [[SFSpeechAudioBufferRecognitionRequest alloc]init];

    AVAudioInputNode *inputNode = self.audioEngine.inputNode;

    NSAssert(inputNode,@"录入设备没有准备好");

    NSAssert(self.recognitionRequest, @"请求初始化失败");


    self.recognitionRequest.shouldReportPartialResults = true;

     __weaktypeof(self) weakSelf =self;


    //开始识别任务

    self.recognitionTask = [self.speechRecognizer recognitionTaskWithRequest:self.recognitionRequest resultHandler:^(SFSpeechRecognitionResult * _Nullable result, NSError * _Nullable error) {

        __strongtypeof(weakSelf) strongSelf = weakSelf;

        boolisFinal =false;

        if(result) {

            strongSelf.labText.text= [[resultbestTranscription]formattedString];//语音转文本

            isFinal = [resultisFinal];

        }

        if(error || isFinal) {

            [strongSelf.audioEnginestop];

            [inputNoderemoveTapOnBus:0];

            strongSelf.recognitionRequest=nil;

            strongSelf.recognitionTask=nil;

            [strongSelf.swicthButsetTitle:@"开始录音"forState:UIControlStateNormal];

            strongSelf.swicthBut.enabled=true;

        }

    }];

    AVAudioFormat*recordingFormat = [inputNodeoutputFormatForBus:0];

    //在添加tap之前先移除上一个  不然有可能报"Terminating app due to uncaught exception 'com.apple.coreaudio.avfaudio',"之类的错误

    [inputNoderemoveTapOnBus:0];

    [inputNodeinstallTapOnBus:0bufferSize:1024format:recordingFormatblock:^(AVAudioPCMBuffer*_Nonnullbuffer,AVAudioTime*_Nonnullwhen) {

         __strongtypeof(weakSelf) strongSelf = weakSelf;

        if(strongSelf.recognitionRequest) {

            [strongSelf.recognitionRequestappendAudioPCMBuffer:buffer];

        }


    }];

    [self.audioEngine prepare];

    boolaudioEngineBool = [self.audioEnginestartAndReturnError:&error];

     NSParameterAssert(!error);

    self.labText.text = @"正在录音。。。";

    NSLog(@"%d",audioEngineBool);



}

#pragma mark---创建录音引擎

- (AVAudioEngine*)audioEngine{


    if (!_audioEngine) {

        _audioEngine= [[AVAudioEnginealloc]init];

    }

    return _audioEngine;

}

#pragma mark----显示控件

- (UILabel*)labText{


    if(!_labText) {

        _labText= [[UILabelalloc]init];

        _labText.frame = CGRectMake(0, 140, [UIScreen mainScreen].bounds.size.width, 50);

        _labText.font= [UIFontsystemFontOfSize:13.0f];

        _labText.numberOfLines = 0;

        _labText.textAlignment = NSTextAlignmentCenter;

        _labText.textColor = [UIColor yellowColor];

    }

    return _labText;

}

#pragma mark----开关

- (UIButton*)swicthBut{


    if (!_swicthBut) {

        _swicthBut= [[UIButtonalloc]init];

        _swicthBut.frame=CGRectMake(50,100,80,30);

        _swicthBut.titleLabel.textAlignment = NSTextAlignmentCenter;

        [_swicthBut setTitleColor:[UIColor orangeColor] forState:UIControlStateNormal];

        [_swicthBut addTarget:self action:@selector(switchOn:) forControlEvents:UIControlEventTouchUpInside];

        [_swicthBut setTitle:@"开始录音" forState:UIControlStateNormal];

    }

    return _swicthBut;

}

- (void)switchOn:(id)sender{


    if([self.audioEngineisRunning]) {

        [self endRecording];

       [_swicthBut setTitle:@"开始录音" forState:UIControlStateNormal];

    }else{

        [self startRecording];

         [_swicthBut setTitle:@"关闭" forState:UIControlStateNormal];

    }

}

#pragma mark---识别本地音频文件

- (void)recognizeLocalAudioFile:(UIButton*)sender {

    NSLocale *local =[[NSLocale alloc] initWithLocaleIdentifier:@"zh_CN"];

    SFSpeechRecognizer *localRecognizer =[[SFSpeechRecognizer alloc] initWithLocale:local];

    NSURL *url =[[NSBundle mainBundle] URLForResource:@"录音.m4a" withExtension:nil];

    if(!url)return;

    SFSpeechURLRecognitionRequest *res =[[SFSpeechURLRecognitionRequest alloc] initWithURL:url];

    __weak typeof(self) weakSelf = self;

    [localRecognizerrecognitionTaskWithRequest:resresultHandler:^(SFSpeechRecognitionResult*_Nullableresult,NSError*_Nullableerror) {

        if(error) {

            NSLog(@"语音识别解析失败,%@",error);

        }

        else

        {

            weakSelf.labText.text = result.bestTranscription.formattedString;

        }

    }];

}

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

@end

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

推荐阅读更多精彩内容

  • 龟钮吉语印“八千万” 【尺寸、重量】印面纵9.76毫米横9.4毫米,总高7.66毫米,重2.6克 【描述】汉印...
    清语宛如阅读 432评论 0 0
  • 你紧拽着皱纹穿过一路的狂奔 退却到生命最初的宅院 古老的香樟沉闷了许多年 喜鹊和啄木鸟都已不知去向 风温柔的抚慰着...
    默默huangjuan阅读 432评论 18 21
  • 你是站在什么角度去看待一个事情的是与非的?你怎么就知道你不是自以为是的明辨是非?在你大义凛然的轻易明辨是非的时候,...
    funny1229阅读 262评论 0 0
  • 人必须要有朋友吗?我觉得交朋友也不怎么让我快乐,还耗费很多精力,所以人必须交朋友吗?
    予川以风阅读 287评论 0 0
  • 纷纷扬扬的雪花 清清静静飘下 喝一...
    芳小棠阅读 176评论 0 1