TTS的總結 (轉)

worldblog發表於2007-12-29
TTS的總結 (轉)[@more@]

這幾天在用TTS,有了好多網友的幫助,才有了這篇文章!

MSTTS的地址:

.sohu.com/disk2/it/new/update/0514/MSTTS.EXE">

關於庫的匯入:

1:(c++ builder)

開啟選單項PROJECT->Import Type Library...,在彈出的對話方塊中單擊Add,選擇
speech目錄下的Vtxtauto.tlb,加入VtxtAuto[Version 1.0]一項。單擊OK,
就會自動生成一個VtxtAuto_TLB.pas。這個檔案包含了TTS引擎的COM類介面,可以用來與DLL檔案通訊。新建一個工程,將這個檔案包含進來:
uses VtxtAuto_TLB;

執行透過,不過小弟的音效卡剛好壞掉。那位兄弟幫我試試看效果如何。有問題的話請告訴我。

#ifndef Unit1H
#define Unit1H

#include
#include
#include
#include

class TForm1 : public TForm
{
__published:  // -managed Components
  TEdit *Edit1;
  TButton *Button1;
  void __fastcall FormCreate(T *Sender);
  void __fastcall Button1Click(TObject *Sender);
private:  // User declarations
public:  // User declarations
  __fastcall TForm1(TComponent* Owner);
};

extern PACKAGE TForm1 *Form1;

#endif


#include
#pragma hdrstop

#include "Unit1.h"
#include "wstring.h"
#include "VTxtAuto_TLB.h"

#pragma package(smart_init)
#pragma re "*.dfm"
TForm1 *Form1;
IVTxtAuto *IVTxtAuto1;

__fastcall TForm1::TForm1(TComponent* Owner)
  : TForm(Owner)
{
}

void __fastcall TForm1::FormCreate(TObject *Sender)
{
  WideString a = "Demo1";
  WideString b = "Project1.exe";
  WideString c= "Hi,I am trying to speak to you,Do you hear me?";

  IVTxtAuto1 = NULL;
  CoInitialize(NULL);
  OleCheck(CoCreateInstance(CLSID_VTxtAuto_,0,CLSCTX_ALL,IID_IVTxtAuto, (LPVOID*)&IVTxtAuto1));
  IVTxtAuto1->Register(a,b);
  IVTxtAuto1->set_Enabled(1);
  IVTxtAuto1->set_Speed(150);
  IVTxtAuto1->Speak(c,vtxtsp_VERYHIGH);
}

void __fastcall TForm1::Button1Click(TObject *Sender)
{
  if(IVTxtAuto1 != NULL)
  {
  IVTxtAuto1->Speak((WideString)Edit1->Text,vtxtsp_VERYHIGH);
  ShowMessage("OK");//我的語句(沒音效卡)
  }else{
  ShowMessage("沒有初始化成功");
  }
}


#include
#pragma hdrstop
USERES("Project1.res");
USEFORM("Unit1.cpp", Form1);
USEUNIT("D:BorlandCBuilder5ImportsVTxtAuto_TLB.CPP");

WIN WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
  try
  {
  Application->Initialize();
  Application->CreateForm(__classid(TForm1), &Form1);
  Application->Run();
  }
  catch (Exception &exception)
  {
  Application->ShowException(&exception);
  }
  return 0;
}

2.從中匯入vtext.dll(compent-import control);

生成texttospeech

Project1.cpp

#include
#pragma hdrstop
USERES("Project1.res");
USEFORM("Unit1.cpp", Form1);

WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
  try
  {
  Application->Initialize();
  Application->CreateForm(__classid(TForm1), &Form1);
  Application->Run();
  }
  catch (Exception &exception)
  {
  Application->ShowException(&exception);
  }
  return 0;
}

unit1.cpp
#include
#pragma hdrstop

#include "Unit1.h"

#pragma package(smart_init)
#pragma link "HTTSLib_OCX"
#pragma resource "*.dfm"
TForm1 *Form1;

__fastcall TForm1::TForm1(TComponent* Owner)
  : TForm(Owner)
{
}

void __fastcall TForm1::Button1Click(TObject *Sender)
{
AnsiString c;
c="good";
TextToSpeech1->Speak((WideString)c);
}

unit1.h

#ifndef Unit1H
#define Unit1H

#include
#include
#include
#include
#include "HTTSLib_OCX.h"
#include

class TForm1 : public TForm
{
__published: // IDE-managed Components
  TTextToSpeech *TextToSpeech1;
  TButton *Button1;
  void __fastcall Button1Click(TObject *Sender);
private: // User declarations
public: // User declarations
  __fastcall TForm1(TComponent* Owner);
};

extern PACKAGE TForm1 *Form1;

#endif


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-996068/,如需轉載,請註明出處,否則將追究法律責任。

相關文章