Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DELIA-62843:TTS thunder plugin missing "speechrate" attribute #272

Merged
merged 2 commits into from
Aug 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion interfaces/ITextToSpeech.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace Exchange {
std::string ttsEndPointSecured;
std::string language;
std::string voice;
std::string speechRate;
uint8_t volume;
uint8_t rate;
};
Expand Down Expand Up @@ -79,7 +80,6 @@ namespace Exchange {
virtual uint32_t SetFallbackText(const string scenario,const string value) = 0;
virtual uint32_t SetAPIKey(const string apikey) = 0;
virtual uint32_t SetPrimaryVolDuck(const uint8_t prim) = 0;
virtual uint32_t SetSpeechRate(const string speechRate) = 0;

// @brief Retrieve tts configuration attributes
// @param config tts configuration
Expand Down
Loading