我正在尝试从a Microsoft sample page运行SAPI示例。
当我运行应用程序(使用VS2010)时,此行失败:
hr = cpVoice.CoCreateInstance( CLSID_SpVoice );
hr返回错误代码,并且不执行所有其他代码。
我不知道为什么我错了,因为我认为正确使用该页面中的示例代码,我以前从未使用过此API。
这是我完整的main.cpp文件。我缺少什么?
#include "stdafx.h"
#include <sapi.h>
#include <sphelper.h>
#include <atlcomcli.h>
int _tmain(int argc, _TCHAR* argv[])
{
HRESULT hr = S_OK;
CComPtr <ISpVoice> cpVoice;
CComPtr <ISpStream> cpStream;
CSpStreamFormat cAudioFmt;
//Create a SAPI Voice
hr = cpVoice.CoCreateInstance( CLSID_SpVoice );
//Set the audio format
if(SUCCEEDED(hr))
{
hr = cAudioFmt.AssignFormat(SPSF_22kHz16BitMono);
}
//Call SPBindToFile, a SAPI helper method, to bind the audio stream to the file
if(SUCCEEDED(hr))
{
hr = SPBindToFile( L"c:\\ttstemp.wav", SPFM_CREATE_ALWAYS,
&cpStream, & cAudioFmt.FormatId(),cAudioFmt.WaveFormatExPtr() );
}
//set the output to cpStream so that the output audio data will be stored in cpStream
if(SUCCEEDED(hr))
{
hr = cpVoice->SetOutput( cpStream, TRUE );
}
//Speak the text "hello world" synchronously
if(SUCCEEDED(hr))
{
hr = cpVoice->Speak( L"Hello World", SPF_DEFAULT, NULL );
}
//close the stream
if(SUCCEEDED(hr))
{
hr = cpStream->Close();
}
//Release the stream and voice object
cpStream.Release ();
cpVoice.Release();
return 0;
}
答案 0 :(得分:1)
在使用CoCreateInstance
API之前,您必须使用CoInitialize[Ex]
初始化该主题。您获得的错误代码应明确建议:CO_E_NOTINITIALIZED
(您应该在您的问题上发布它!)。