资源简介
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# 实现的个人浏览器
- C#+Winform项目实战一个虚拟操作系统的
- C#超市库存管理系统
- c#(vs2017)阿里云语音识别接口demo
- C#操作excel123362
- 职工工资管理系统C#课程设计含数据库
- 松下PLC与C#上位机通讯库含程序.rar
- 基于Winform权限控制系统
- C#员工管理系统123016
- C#图书管理系统.rar
- c#汽车销售系统
- 关于C#的GIS定位显示
- C# 23种设计模式中文高清带书签
- 基于离散点的构TIN算法C#
- ASP.NET/C#小区物业管理系统
- C#制作PDF文件
- leapmotion的官方例程c#
- C#实现决策树
- C#基于BouncyCastle.Crypto的SM2_3实现导入即
- C#网络对战五子棋c/s源程序
- 酒店管理系统源码(ASP C# .NET C 毕业设
- c#写的非常完整的网络爬虫程序
- 工资管理系统C#+SQL
- c#收银系统源码修正bug
- DISCUZ论坛顶贴器C#源码
- c#编写的物资管理信息系统
- 网上选课系统源代码c#
- 个人简历c#写的
- C#编程词典个人版
- c#源码进销存管理系统
评论
共有 条评论