资源简介

这是我花了5天时间做出来的基于科大讯飞语音云的语音识别和文字转语音的软件,支持多种中文语言,使用C++/CLR开发,讯飞提供的是C的开发包。同时录音部分还使用了DirectX,使用该软件需要安装DirectX。需要该软件详细介绍的可以访问我的CSDN博客。整个代码相当于拼凑出来的,若大家有其他意见,欢迎指教。

资源截图

代码片段和文件信息

#include “stdafx.h“

using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;

//
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
//
[assembly:AssemblytitleAttribute(“SoundTest“)];
[assembly:AssemblyDescriptionAttribute(““)];
[assembly:AssemblyConfigurationAttribute(““)];
[assembly:AssemblyCompanyAttribute(““)];
[assembly:AssemblyProductAttribute(“SoundTest“)];
[assembly:AssemblyCopyrightAttribute(“Copyright (c)  2014“)];
[assembly:AssemblyTrademarkAttribute(““)];
[assembly:AssemblyCultureAttribute(““)];

//
// 程序集的版本信息由下面四个值组成:
//
//      主版本
//      次版本
//      内部版本号
//      修订号
//
// 您可以指定所有值,也可使用“修订号”和“内部版本号”的默认值,
// 方法是按如下所示使用“*”:

[assembly:AssemblyVersionAttribute(“1.0.*“)];

[assembly:ComVisible(false)];

[assembly:CLSCompliantAttribute(true)];

[assembly:SecurityPermission(SecurityAction::RequestMinimum UnmanagedCode = true)];

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-06-17 09:36  SoundTestV2.6\
     目录           0  2014-06-17 09:42  SoundTestV2.6\bin\
     文件        4762  2014-06-17 09:43  SoundTestV2.6\bin\log.txt
     目录           0  2014-06-17 09:43  SoundTestV2.6\bin\msc\
     文件        2318  2014-06-09 13:15  SoundTestV2.6\bin\msc.cfg
     文件     1139200  2014-06-09 13:15  SoundTestV2.6\bin\msc.dll
     目录           0  2014-06-10 10:20  SoundTestV2.6\bin\msc\9610f5f5b79a660f5a009fae9bd3326d\
     文件        5370  2014-06-12 15:48  SoundTestV2.6\bin\msc\cisr1P1HHBHMs-VTH+hlPHHPsokA9urskGn.log
     文件        5230  2014-06-17 09:43  SoundTestV2.6\bin\msc\cisr1PdHHBHMOgUbbjI5HHm+h0KHkt0mQY.log
     文件        5368  2014-06-13 08:20  SoundTestV2.6\bin\msc\cisr1PdHHBHMsv5ptXFZHHCZRuuR0AvuT0.log
     文件        5641  2014-06-13 08:22  SoundTestV2.6\bin\msc\cisr1PdHHBHMsvE7tqU9HHtX1lvUWDxdgn.log
     文件      129536  2014-06-13 13:50  SoundTestV2.6\bin\msc\ctts1P1HHBHMsKdNHnLJNHHmX-lIc0k703f.log
     文件       53746  2014-06-13 13:36  SoundTestV2.6\bin\msc\ctts1P1HHBHMsY8DH5q9cHHmi7CMB5twmYf.log
     文件         742  2014-06-13 13:36  SoundTestV2.6\bin\msc\ctts1P1HHBHMsY8dH5YIAHH002mm81uYWDq.log
     文件         742  2014-06-13 13:34  SoundTestV2.6\bin\msc\ctts1P1HHBHMsYUsH5psxHH5zBmnk0aHksX.log
     文件          40  2014-06-17 09:43  SoundTestV2.6\bin\msc\isr.logcache
     文件      366173  2014-06-17 09:43  SoundTestV2.6\bin\msc\lgi.log
     文件        2318  2014-06-17 09:43  SoundTestV2.6\bin\msc\msc.cfg
     文件     3549454  2014-06-17 09:43  SoundTestV2.6\bin\msc\msc.log
     文件        2847  2014-06-17 09:43  SoundTestV2.6\bin\msc\no_send_data.txt
     文件       39439  2014-06-17 09:43  SoundTestV2.6\bin\msc\sessinfo.log
     文件          41  2014-06-13 13:50  SoundTestV2.6\bin\msc\tts.logcache
     文件      732119  2014-06-17 09:43  SoundTestV2.6\bin\msc\waiter.log
     文件     1417216  2014-06-09 13:15  SoundTestV2.6\bin\msc_x64.dll
     文件       88044  2014-06-17 09:43  SoundTestV2.6\bin\record.wav
     文件        8704  2014-06-12 14:01  SoundTestV2.6\bin\SoundRecord.dll
     文件     1112576  2014-06-13 13:50  SoundTestV2.6\bin\SoundTest.exe
     文件           0  2014-06-13 13:50  SoundTestV2.6\bin\SoundTest.ilk
     文件     3451904  2014-06-13 13:50  SoundTestV2.6\bin\SoundTest.pdb
     文件         155  2014-06-10 08:54  SoundTestV2.6\bin\stdafx.h
     目录           0  2014-06-10 14:18  SoundTestV2.6\Debug\
............此处省略85个文件信息

评论

共有 条评论