我对 JS、Python、Go 有一些经验,但我第一次需要用 C++ 完成一些事情。我可以尝试使用 C# 获得合成音频,但我认为最好吸收更多通用技术的知识。我关注this documentation page .来自 here我发现我需要包含 Scenario_SynthesizeText.xaml.h
。
在我的官方 Windows 10 Virtualbox 镜像中,我安装了 Visual Studio Build Tools 2019 以及通用 Windows 平台构建工具。
我的代码:
#include <iostream>
#include "Scenario_SynthesizeText.xaml.h"
int main() {
std::cout << "Hello World\n";
InitializeComponent();
synth = std::ref new SpeechSynthesizer();
media = std::ref new MediaElement();
return 0;
}
但在 Windows 10 上编译失败:
D:\>cl __windowsTTSTest.cc
fatal error C1083: Cannot open include file: 'Scenario_SynthesizeText.xaml.h': No such file or directory
看起来我需要安装一些依赖项?
我是一名优秀的程序员,十分优秀!