三、Audio To Text

简介:

本节来概要的谈一下利用Google的Api实现将语音转换为文字

请求的URL为:http://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang=zh-CN  
         http://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang=zh-CN&maxresults=1
参数:
1、xjerr  ???参数功能不详,值只能是0或1,去掉也能正常获得结果;
2、client  客户端类型
3、lang    语言类型,英文为en-US。更多参见http://msdn.microsoft.com/en-us/library/ms533052(v=vs.85).aspx
4、maxresults  最大返回结果数量,多个结果在hypotheses(请求返回的数据项)列表中保存。

使用方式:

复制代码
        protected void Page_Load(object sender, EventArgs e)
        {
            Response.Write(GoogleSTT());
        }
        private string GoogleSTT()
        {
            string result = string.Empty;

            string inFile = @"F:\hebeidaxue.wav";
            FileStream fs = new FileStream(inFile, FileMode.Open);
            byte[] voice = new byte[fs.Length];
            fs.Read(voice, 0, voice.Length);
            fs.Close();

            HttpWebRequest request = null;
            string url = "http://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang=zh-CN";
            Uri uri = new Uri(url);
            request = (HttpWebRequest)WebRequest.Create(uri);
            request.Method = "POST";
            request.ContentType = "audio/L16; rate=16000";
            request.ContentLength = voice.Length;
            using (Stream writeStream = request.GetRequestStream())
            {
                writeStream.Write(voice, 0, voice.Length);
            }
            using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
            {
                using (Stream responseStream = response.GetResponseStream())
                {
                    using (StreamReader readStream = new StreamReader(responseStream, Encoding.UTF8))
                    {
                        result = readStream.ReadToEnd();
                    }
                }
            }

            return result;
        }
复制代码

返回结果的格式

{"status":0,"id":"a44e9fab4888a7713175a07b035d49ad-1","hypotheses":[{"utterance":"大家早上好","confidence":0.7236291}]}

 

其实就是通过Http向google发送语音请求,返回的是识别的内容。
需要注意: request.ContentType
google默认的是request.ContentType = "audio/x-flac; rate=16000; 即:支持flac格式的语音。

其他的语音格式:

 1、WAV格式

    请求Header:Content-Type: audio/L16; rate=16000

    返回结果:识别成功

    2、MP3格式

    请求Header:Content-Type: audio/mpeg; rate=16000

    返回结果:无法识别的编码

 

    请求Header:Content-Type: audio/mpeg3; rate=16000

    返回结果:无法识别的编码

    请求Header:Content-Type: audio/x-mpeg; rate=16000

    返回结果:无法识别的编码

 

    请求Header:Content-Type: audio/x-mpeg-3; rate=16000

    返回结果:无法识别的编码

    请求Header:Content-Type: audio/mp3; rate=16000

    返回结果:无法识别的编码

    3、PCM格式

    请求Header:Content-Type: audio/x-ogg-pcm; rate=16000

    返回结果:无法识别的编码

    请求Header:Content-Type: audio/pcm; rate=16000

    返回结果:无法识别的编码

    4、SPEEX格式

    请求Header:Content-Type: audio/x-speex-with-header-byte; rate=16000

    返回结果:识别成功

    请求Header:Content-Type: audio/speex; rate=16000

    返回结果:识别成功

无法识别的类型,就只能转码之后在去请求了。

 

本机测试语音时候可以通过软件Audacity去录音(rate=16000),然后保存为想要的格式。


本文转自武沛齐博客园博客,原文链接:http://www.cnblogs.com/wupeiqi/archive/2013/05/07/3064088.html,如需转载请自行联系原作者

目录
相关文章
|
14天前
|
移动开发 编解码 UED
除了 `<audio>` 和 `<video>` 标签,HTML5 还支持哪些多媒体格式?
【10月更文挑战第19天】HTML5对多种多媒体格式的支持,为网页开发者提供了丰富的选择,能够更好地满足不同类型多媒体内容在网页中的展示和交互需求,提升了网页的用户体验和多媒体应用的多样性。
|
1月前
video和audio的事件
【10月更文挑战第5天】video和audio的事件。
35 4
|
6月前
|
编解码 应用服务中间件 nginx
DemuxException: type = CodecUnsupported, info = Flv: Unsupported codec in video frame: 2
DemuxException: type = CodecUnsupported, info = Flv: Unsupported codec in video frame: 2
392 0
|
6月前
|
JavaScript 前端开发
video-03-video事件汇总
video-03-video事件汇总
101 1
|
JSON 前端开发 数据格式
前端上传前预览文件image,text,json,video,audio
前天有个需求,上传前需要校验视频长度,然后让我出个 Demo。 预览文件 demo 其实预览功能实现上都差不多,所以今天我们都来实现一下咯。
268 0
前端上传前预览文件image,text,json,video,audio
|
JavaScript 前端开发
|
Web App开发 移动开发 JavaScript
opensecuritytraining video
https://www.youtube.com/user/OpenSecurityTraining/playlists https://www.
759 0
GRRCON 2014 video
http://www.securitytube.net/video/11380
579 0