资源简介

语音识别功能,可以直接说话进行识别,然后转换成文字

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using SpeechLib;
namespace Speech
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender EventArgs e)
        {
            SpRecognition cc = new SpRecognition();

            cc.MessageBegin();

            cc.BeginRec(textBox1);  //Fan:把内容输入textbox1

        }

        private void button2_Click(object sender EventArgs e)
        {
            SpRecognition cc = new SpRecognition();
            cc.MessageEnd();
            cc.CloseRec();

        }
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     163840  2013-01-23 16:27  Speech\Speech\bin\Debug\Interop.SpeechLib.dll

     文件       9728  2013-01-29 20:08  Speech\Speech\bin\Debug\Speech.exe

     文件      26112  2013-01-29 20:08  Speech\Speech\bin\Debug\Speech.pdb

     文件      11600  2013-01-29 20:09  Speech\Speech\bin\Debug\Speech.vshost.exe

     文件        490  2010-03-17 22:39  Speech\Speech\bin\Debug\Speech.vshost.exe.manifest

     目录          0  2013-01-23 17:09  Speech\Speech\bin\Debug

     目录          0  2013-01-23 16:27  Speech\Speech\bin

     文件       3066  2013-01-29 20:09  Speech\Speech\Form1.cs

     文件       3135  2013-01-23 17:15  Speech\Speech\Form1.Designer.cs

     文件       5817  2013-01-23 17:15  Speech\Speech\Form1.resx

     文件       4440  2013-01-24 08:55  Speech\Speech\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6273  2013-01-29 20:08  Speech\Speech\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        180  2013-01-23 17:15  Speech\Speech\obj\x86\Debug\GenerateResource.read.1.tlog

     文件        712  2013-01-23 17:15  Speech\Speech\obj\x86\Debug\GenerateResource.write.1.tlog

     文件       9305  2013-01-23 17:09  Speech\Speech\obj\x86\Debug\ResolveAssemblyReference.cache

     文件        595  2013-01-29 20:09  Speech\Speech\obj\x86\Debug\Speech.csproj.FileListAbsolute.txt

     文件       9728  2013-01-29 20:08  Speech\Speech\obj\x86\Debug\Speech.exe

     文件        180  2013-01-23 17:15  Speech\Speech\obj\x86\Debug\Speech.Form1.resources

     文件      26112  2013-01-29 20:08  Speech\Speech\obj\x86\Debug\Speech.pdb

     文件        180  2013-01-23 17:15  Speech\Speech\obj\x86\Debug\Speech.Properties.Resources.resources

     目录          0  2013-01-23 16:27  Speech\Speech\obj\x86\Debug\TempPE

     目录          0  2013-01-29 20:08  Speech\Speech\obj\x86\Debug

     目录          0  2013-01-23 16:27  Speech\Speech\obj\x86

     目录          0  2013-01-23 16:27  Speech\Speech\obj

     文件        487  2013-01-23 16:27  Speech\Speech\Program.cs

     文件       1344  2013-01-23 16:27  Speech\Speech\Properties\AssemblyInfo.cs

     文件       2862  2013-01-23 16:27  Speech\Speech\Properties\Resources.Designer.cs

     文件       5612  2013-01-23 16:27  Speech\Speech\Properties\Resources.resx

     文件       1091  2013-01-23 16:27  Speech\Speech\Properties\Settings.Designer.cs

     文件        249  2013-01-23 16:27  Speech\Speech\Properties\Settings.settings

............此处省略9个文件信息

评论

共有 条评论