| 123456789101112131415161718192021 |
- #pragma once
- #include<string>
- class TtsBaidu
- {
- public:
- TtsBaidu();
- ~TtsBaidu();
- void Init(std::string ttsPath);
- bool TextToAudio(std::string Content, std::string& FileName);
- private:
- std::string app_id = "10483258";
- std::string api_key = "RT5zdEeOCPZChiZQb4qWlKKM";
- std::string secret_key = "AULkhbhosuBXBIAgNUWG0cIyWxoaojxO";
- std::string m_ttsPath = "";
- };
|