speechSynthesizer_nwc_yarp
: A network wrapper client that connects to a speechSynthesizer_nws_yarp to perform speech synthesis.
More...
#include <networkWrappers/speechSynthesizer_nwc_yarp/SpeechSynthesizer_nwc_yarp.h>
Public Member Functions | |
SpeechSynthesizer_nwc_yarp ()=default | |
SpeechSynthesizer_nwc_yarp (const SpeechSynthesizer_nwc_yarp &)=delete | |
SpeechSynthesizer_nwc_yarp (SpeechSynthesizer_nwc_yarp &&)=delete | |
SpeechSynthesizer_nwc_yarp & | operator= (const SpeechSynthesizer_nwc_yarp &)=delete |
SpeechSynthesizer_nwc_yarp & | operator= (SpeechSynthesizer_nwc_yarp &&)=delete |
~SpeechSynthesizer_nwc_yarp () override | |
bool | open (yarp::os::Searchable &config) override |
Open the DeviceDriver. | |
bool | close () override |
Close the DeviceDriver. | |
yarp::dev::ReturnValue | setLanguage (const std::string &language="auto") override |
Sets the language for speech synthesis. | |
yarp::dev::ReturnValue | getLanguage (std::string &language) override |
Gets the current language set for speech synthesis. | |
yarp::dev::ReturnValue | setVoice (const std::string &voice_name="auto") override |
Sets the voice set for speech synthesis. | |
yarp::dev::ReturnValue | getVoice (std::string &voice_name) override |
Gets the current voice set for speech synthesis. | |
yarp::dev::ReturnValue | setSpeed (const double speed=0) override |
Sets the voice speed for speech synthesis. | |
yarp::dev::ReturnValue | getSpeed (double &speed) override |
Gets the current voice speed. | |
yarp::dev::ReturnValue | setPitch (const double pitch) override |
Sets the pitch for speech synthesis. | |
yarp::dev::ReturnValue | getPitch (double &pitch) override |
Gets the current pitch set for speech synthesis. | |
yarp::dev::ReturnValue | synthesize (const std::string &text, yarp::sig::Sound &sound) override |
Performs the speech synthesis. | |
![]() | |
DeviceDriver () | |
DeviceDriver (const DeviceDriver &other)=delete | |
DeviceDriver (DeviceDriver &&other) noexcept=delete | |
DeviceDriver & | operator= (const DeviceDriver &other)=delete |
DeviceDriver & | operator= (DeviceDriver &&other) noexcept=delete |
virtual | ~DeviceDriver () |
virtual std::string | id () const |
Return the id assigned to the PolyDriver. | |
virtual void | setId (const std::string &id) |
Set the id for this device. | |
template<class T > | |
bool | view (T *&x) |
Get an interface to the device driver. | |
virtual DeviceDriver * | getImplementation () |
Some drivers are bureaucrats, pointing at others. | |
![]() | |
virtual | ~ISpeechSynthesizer () |
![]() | |
SpeechSynthesizer_nwc_yarp_ParamsParser () | |
~SpeechSynthesizer_nwc_yarp_ParamsParser () override=default | |
bool | parseParams (const yarp::os::Searchable &config) override |
Parse the DeviceDriver parameters. | |
std::string | getDeviceClassName () const override |
Get the name of the DeviceDriver class. | |
std::string | getDeviceName () const override |
Get the name of the device (i.e. | |
std::string | getDocumentationOfDeviceParams () const override |
Get the documentation of the DeviceDriver's parameters. | |
std::vector< std::string > | getListOfParams () const override |
Return a list of all params used by the device. | |
bool | getParamValue (const std::string ¶mName, std::string ¶mValue) const override |
Return the value (represented as a string) of the requested parameter. | |
std::string | getConfiguration () const override |
Return the configuration of the device. | |
![]() | |
virtual | ~IDeviceDriverParams () |
Protected Attributes | |
yarp::os::Port | m_thriftClientPort |
Additional Inherited Members | |
![]() | |
const std::string | m_device_classname = {"SpeechSynthesizer_nwc_yarp"} |
const std::string | m_device_name = {"speechSynthesizer_nwc_yarp"} |
bool | m_parser_is_strict = false |
const parser_version_type | m_parser_version = {} |
std::string | m_provided_configuration |
const std::string | m_local_defaultValue = {""} |
const std::string | m_remote_defaultValue = {""} |
std::string | m_local = {} |
std::string | m_remote = {} |
speechSynthesizer_nwc_yarp
: A network wrapper client that connects to a speechSynthesizer_nws_yarp to perform speech synthesis.
Parameters required by this device are shown in class: SpeechSynthesizer_nwc_yarp_ParamsParser
Definition at line 38 of file SpeechSynthesizer_nwc_yarp.h.
|
default |
|
delete |
|
delete |
|
override |
Definition at line 18 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Close the DeviceDriver.
Reimplemented from yarp::dev::DeviceDriver.
Definition at line 23 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Gets the current language set for speech synthesis.
language | the returned string (code) representing the speech language (e.g. ita, eng...). Default value is "auto". |
Implements yarp::dev::ISpeechSynthesizer.
Definition at line 79 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Gets the current pitch set for speech synthesis.
pitch | the current voice pitch. |
Implements yarp::dev::ISpeechSynthesizer.
Definition at line 157 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Gets the current voice speed.
speed | the current voice speed. |
Implements yarp::dev::ISpeechSynthesizer.
Definition at line 131 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Gets the current voice set for speech synthesis.
voice_name | the currently used voice (device dependent). |
Implements yarp::dev::ISpeechSynthesizer.
Definition at line 105 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Open the DeviceDriver.
config | is a list of parameters for the device. Which parameters are effective for your device can vary. See device invocation examples. If there is no example for your device, you can run the "yarpdev" program with the verbose flag set to probe what parameters the device is checking. If that fails too, you'll need to read the source code (please nag one of the yarp developers to add documentation for your device). |
Reimplemented from yarp::dev::DeviceDriver.
Definition at line 28 of file SpeechSynthesizer_nwc_yarp.cpp.
|
delete |
|
delete |
|
overridevirtual |
Sets the language for speech synthesis.
language | a string (code) representing the speech language (e.g. ita, eng...). Default value is "auto". |
Implements yarp::dev::ISpeechSynthesizer.
Definition at line 67 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Sets the pitch for speech synthesis.
pitch | the voice pitch. |
Implements yarp::dev::ISpeechSynthesizer.
Definition at line 145 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Sets the voice speed for speech synthesis.
speed | the voice speed. |
Implements yarp::dev::ISpeechSynthesizer.
Definition at line 119 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Sets the voice set for speech synthesis.
voice_name | the name of of the voice (device dependent). |
Implements yarp::dev::ISpeechSynthesizer.
Definition at line 93 of file SpeechSynthesizer_nwc_yarp.cpp.
|
overridevirtual |
Performs the speech synthesis.
text | the text to synthesize |
sound | the synthesized audio stream |
Implements yarp::dev::ISpeechSynthesizer.
Definition at line 171 of file SpeechSynthesizer_nwc_yarp.cpp.
|
protected |
Definition at line 75 of file SpeechSynthesizer_nwc_yarp.h.