资源简介
C# 语音识别 示例源码

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.IO;
using System.Threading;
using Newtonsoft.Json.Linq;
namespace voice
{
public partial class Form1 : Form
{
string cuid = “666“;//可以随便写
string serverURL = “http://vop.baidu.com/server_api“;
public Form1()
{
InitializeComponent();
cuid = Guid.NewGuid().ToString();
}
private string Post(string audioFilePath)
{
string token = “24.cd839bae72bde020346a1534258d8173.2592000.1479976284.282335-8792499“;
serverURL += “?lan=zh&cuid=kwwwvagaa&token=“ + token;
FileStream fs = new FileStream(audioFilePath FileMode.Open);
byte[] voice = new byte[fs.Length];
fs.Read(voice 0 voice.Length);
fs.Close();
fs.Dispose();
HttpWebRequest request = null;
Uri uri = new Uri(serverURL);
request = (HttpWebRequest)WebRequest.Create(uri);
request.Timeout = 5000;
request.Method = “POST“;
request.ContentType = “audio/wav; rate=16000“;
request.ContentLength = voice.Length;
try
{
using (Stream writeStream = request.GetRequestStream())
{
writeStream.Write(voice 0 voice.Length);
writeStream.Close();
writeStream.Dispose();
}
}
catch
{
return null;
}
string result = string.Empty;
string result_final = string.Empty;
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
using (Stream responseStream = response.GetResponseStream())
{
using (StreamReader readStream = new StreamReader(responseStream Encoding.UTF8))
{
string line = string.Empty;
StringBuilder sb = new StringBuilder();
while (!readStream.EndOfStream)
{
line = readStream.ReadLine();
sb.Append(line);
sb.Append(“\r“);
}
readStream.Close();
readStream.Dispose();
result = sb.ToString();
string[] indexs = result.Split(‘‘);
foreach (string index in indexs)
{
string[] _indexs = index.Split(‘“‘);
if (_indexs[2] == “:[“)
result_final = _indexs[
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-10-18 18:30 voice\
目录 0 2019-10-18 18:30 voice\.vs\
目录 0 2019-10-18 18:34 voice\.vs\voice\
目录 0 2019-10-18 18:30 voice\.vs\voice\v14\
文件 43520 2016-10-26 10:55 voice\.vs\voice\v14\.suo
目录 0 2019-10-18 18:34 voice\.vs\voice\v15\
文件 51200 2019-10-18 19:18 voice\.vs\voice\v15\.suo
目录 0 2019-10-18 18:34 voice\.vs\voice\v15\Server\
目录 0 2019-10-18 18:34 voice\.vs\voice\v15\Server\sqlite3\
文件 0 2019-10-18 18:34 voice\.vs\voice\v15\Server\sqlite3\db.lock
文件 4096 2019-10-18 18:34 voice\.vs\voice\v15\Server\sqlite3\storage.ide
文件 32768 2019-10-18 18:34 voice\.vs\voice\v15\Server\sqlite3\storage.ide-shm
文件 803432 2019-10-18 18:50 voice\.vs\voice\v15\Server\sqlite3\storage.ide-wal
文件 240 2016-10-26 10:44 voice\README.txt
目录 0 2019-10-18 18:40 voice\voice\
文件 189 2016-10-25 12:21 voice\voice\App.config
文件 2585 2016-10-25 18:37 voice\voice\Form1.Designer.cs
文件 3453 2019-10-18 18:40 voice\voice\Form1.cs
文件 5817 2016-10-25 18:37 voice\voice\Form1.resx
文件 517 2016-10-25 12:21 voice\voice\Program.cs
目录 0 2019-10-18 18:30 voice\voice\Properties\
文件 1336 2016-10-25 12:21 voice\voice\Properties\AssemblyInfo.cs
文件 2823 2016-10-25 12:21 voice\voice\Properties\Resources.Designer.cs
文件 5612 2016-10-25 12:21 voice\voice\Properties\Resources.resx
文件 1092 2016-10-25 12:21 voice\voice\Properties\Settings.Designer.cs
文件 249 2016-10-25 12:21 voice\voice\Properties\Settings.settings
目录 0 2019-10-18 18:30 voice\voice\bin\
目录 0 2019-10-18 18:42 voice\voice\bin\Debug\
文件 156204 2016-10-25 15:42 voice\voice\bin\Debug\0.wav
文件 97324 2016-10-25 15:41 voice\voice\bin\Debug\1.wav
文件 135724 2016-10-25 15:41 voice\voice\bin\Debug\2.wav
............此处省略38个文件信息
- 上一篇:今日头条新闻文章采集爬虫.csv
- 下一篇:ASP.NET+SQL网上商城网站
相关资源
- C# OCR数字识别实例,采用TessnetOcr,对
- 考试管理系统 - C#源码
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
- C#自定义控件
- 基于c#的实验室设备管理系统621530
评论
共有 条评论