• 大小: 310KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: 其他
  • 标签: didi  

资源简介

多媒体技术实验二

资源截图

代码片段和文件信息

#define _ATL_APARTMENT_THREADED

#include 
#include se.h>
#include 
#include 
#include 
#include
using namespace std;


int main(int argc char* argv[])
{
ISpVoice * pVoice = NULL;

if (FAILED(::CoInitialize(NULL)))
return FALSE;

HRESULT hr = CoCreateInstance(CLSID_SpVoice NULL CLSCTX_ALL IID_ISpVoice (void **)&pVoice);
if (SUCCEEDED(hr))
{
FILE* file;
file = fopen(“C:/test/test.txt“ “r“);
if (file != NULL)
{
char buff[1024];
USES_CONVERSION;
while (fgets(buff 1024 file) != NULL)
{
// hr = pVoice->Speak(L“Hello world“ 0 NULL);
wchar_t* test12 = A2W(buff);
cout << buff << endl;
pVoice->SetVolume((USHORT)100); //设置音量,范围是 0-100
pVoice->SetRate(1); //设置速度,范围是 -10 - 10
hr = pVoice->Speak(test12 0 NULL);
}
cout << “结束“ << endl;
pVoice->Release();
pVoice = NULL;
}
else
{
return 0;
}
::CoUninitialize();
}

return TRUE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-12-19 21:16  多媒体技术实验二\
     目录           0  2018-12-19 21:08  多媒体技术实验二\Project1\
     目录           0  2018-12-19 21:08  多媒体技术实验二\Project1\Debug\
     文件          86  2018-12-19 21:07  多媒体技术实验二\Project1\Debug\Project1.log
     目录           0  2018-12-19 21:08  多媒体技术实验二\Project1\Debug\Project1.tlog\
     文件         746  2018-12-19 20:59  多媒体技术实验二\Project1\Debug\Project1.tlog\CL.command.1.tlog
     文件       40648  2018-12-19 20:59  多媒体技术实验二\Project1\Debug\Project1.tlog\CL.read.1.tlog
     文件         500  2018-12-19 20:59  多媒体技术实验二\Project1\Debug\Project1.tlog\CL.write.1.tlog
     文件         216  2018-12-19 21:07  多媒体技术实验二\Project1\Debug\Project1.tlog\Project1.lastbuildstate
     文件        1188  2018-12-19 21:07  多媒体技术实验二\Project1\Debug\Project1.tlog\link.command.1.tlog
     文件        3956  2018-12-19 21:07  多媒体技术实验二\Project1\Debug\Project1.tlog\link.read.1.tlog
     文件         466  2018-12-19 21:07  多媒体技术实验二\Project1\Debug\Project1.tlog\link.write.1.tlog
     文件      228173  2018-12-19 20:59  多媒体技术实验二\Project1\Debug\helloworld.obj
     文件      404480  2018-12-19 20:59  多媒体技术实验二\Project1\Debug\vc141.idb
     文件      774144  2018-12-19 20:59  多媒体技术实验二\Project1\Debug\vc141.pdb
     文件        7273  2018-12-19 20:32  多媒体技术实验二\Project1\Project1.vcxproj
     文件         955  2018-12-19 20:32  多媒体技术实验二\Project1\Project1.vcxproj.filters
     文件         165  2018-12-19 20:25  多媒体技术实验二\Project1\Project1.vcxproj.user
     文件        1034  2018-12-19 20:59  多媒体技术实验二\Project1\helloworld.cpp
     文件        1438  2018-12-19 20:25  多媒体技术实验二\Project1.sln
     文件          74  2018-12-19 20:57  多媒体技术实验二\test.txt
     文件       55808  2018-12-19 21:13  多媒体技术实验二\实验2-语音模拟-王玉峰.doc
     文件           0  2018-12-19 21:15  多媒体技术实验二\运行程序时记得修改.txt文件的打开路径.txt

评论

共有 条评论

相关资源