YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
GoogleSpeechSynthesizer Class Reference

googleSpeechSynthesizer: A yarp device for speech synthesis using google cloud cpp libraries More...

#include </home/runner/work/yarp-documentation/yarp-documentation/yarp/opt-modules/yarp-devices-google-cloud/src/devices/googleSpeechSynthesizer/GoogleSpeechSynthesizer.h>

+ Inheritance diagram for GoogleSpeechSynthesizer:

Public Member Functions

 GoogleSpeechSynthesizer ()
 
 GoogleSpeechSynthesizer (const GoogleSpeechSynthesizer &)=delete
 
 GoogleSpeechSynthesizer (GoogleSpeechSynthesizer &&) noexcept=delete
 
GoogleSpeechSynthesizeroperator= (const GoogleSpeechSynthesizer &)=delete
 
GoogleSpeechSynthesizeroperator= (GoogleSpeechSynthesizer &&) noexcept=delete
 
 ~GoogleSpeechSynthesizer () override=default
 
bool _voiceSupported (const std::string &voice_name)
 Checks whether or not a particular voice name is supported by the currently selected language code.
 
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.
 
- Public Member Functions inherited from yarp::dev::DeviceDriver
 DeviceDriver ()
 
 DeviceDriver (const DeviceDriver &other)=delete
 
 DeviceDriver (DeviceDriver &&other) noexcept=delete
 
DeviceDriveroperator= (const DeviceDriver &other)=delete
 
DeviceDriveroperator= (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 DeviceDrivergetImplementation ()
 Some drivers are bureaucrats, pointing at others.
 
- Public Member Functions inherited from GoogleSpeechSynthesizer_ParamsParser
 GoogleSpeechSynthesizer_ParamsParser ()
 
 ~GoogleSpeechSynthesizer_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.
 
- Public Member Functions inherited from yarp::dev::IDeviceDriverParams
virtual ~IDeviceDriverParams ()
 
- Public Member Functions inherited from yarp::dev::ISpeechSynthesizer
virtual ~ISpeechSynthesizer ()
 

Additional Inherited Members

- Public Attributes inherited from GoogleSpeechSynthesizer_ParamsParser
const std::string m_device_classname = {"GoogleSpeechSynthesizer"}
 
const std::string m_device_name = {"googleSpeechSynthesizer"}
 
bool m_parser_is_strict = false
 
const parser_version_type m_parser_version = {}
 
const std::string m_language_code_defaultValue = {""}
 
const std::string m_voice_name_defaultValue = {""}
 
const std::string m_voice_speed_defaultValue = {"1"}
 
const std::string m_voice_pitch_defaultValue = {"0"}
 
std::string m_language_code = {}
 
std::string m_voice_name = {}
 
double m_voice_speed = {1}
 
double m_voice_pitch = {0}
 

Detailed Description

googleSpeechSynthesizer: A yarp device for speech synthesis using google cloud cpp libraries

googleSpeechSynthesizer

Parameters required by this device are described in class GoogleSpeechSynthesizer_ParamsParser

Definition at line 35 of file GoogleSpeechSynthesizer.h.

Constructor & Destructor Documentation

◆ GoogleSpeechSynthesizer() [1/3]

GoogleSpeechSynthesizer::GoogleSpeechSynthesizer ( )

Definition at line 28 of file GoogleSpeechSynthesizer.cpp.

◆ GoogleSpeechSynthesizer() [2/3]

GoogleSpeechSynthesizer::GoogleSpeechSynthesizer ( const GoogleSpeechSynthesizer )
delete

◆ GoogleSpeechSynthesizer() [3/3]

GoogleSpeechSynthesizer::GoogleSpeechSynthesizer ( GoogleSpeechSynthesizer &&  )
deletenoexcept

◆ ~GoogleSpeechSynthesizer()

GoogleSpeechSynthesizer::~GoogleSpeechSynthesizer ( )
overridedefault

Member Function Documentation

◆ _voiceSupported()

bool GoogleSpeechSynthesizer::_voiceSupported ( const std::string &  voice_name)

Checks whether or not a particular voice name is supported by the currently selected language code.

Parameters
voice_namethe name of of the voice
Returns
true on success

Definition at line 33 of file GoogleSpeechSynthesizer.cpp.

◆ close()

bool GoogleSpeechSynthesizer::close ( )
overridevirtual

Close the DeviceDriver.

Returns
true/false on success/failure.

Reimplemented from yarp::dev::DeviceDriver.

Definition at line 98 of file GoogleSpeechSynthesizer.cpp.

◆ getLanguage()

yarp::dev::ReturnValue GoogleSpeechSynthesizer::getLanguage ( std::string &  language)
overridevirtual

Gets the current language set for speech synthesis.

Parameters
languagethe returned string (code) representing the speech language (e.g. ita, eng...). Default value is "auto".
Returns
a ReturnValue, convertible to true/false

Implements yarp::dev::ISpeechSynthesizer.

Definition at line 134 of file GoogleSpeechSynthesizer.cpp.

◆ getPitch()

yarp::dev::ReturnValue GoogleSpeechSynthesizer::getPitch ( double voice)
overridevirtual

Gets the current pitch set for speech synthesis.

Parameters
pitchthe current voice pitch.
Returns
a ReturnValue, convertible to true/false

Implements yarp::dev::ISpeechSynthesizer.

Definition at line 205 of file GoogleSpeechSynthesizer.cpp.

◆ getSpeed()

yarp::dev::ReturnValue GoogleSpeechSynthesizer::getSpeed ( double speed)
overridevirtual

Gets the current voice speed.

Parameters
speedthe current voice speed.
Returns
a ReturnValue, convertible to true/false

Implements yarp::dev::ISpeechSynthesizer.

Definition at line 186 of file GoogleSpeechSynthesizer.cpp.

◆ getVoice()

yarp::dev::ReturnValue GoogleSpeechSynthesizer::getVoice ( std::string &  voice_name)
overridevirtual

Gets the current voice set for speech synthesis.

Parameters
voice_namethe currently used voice (device dependent).
Returns
a ReturnValue, convertible to true/false

Implements yarp::dev::ISpeechSynthesizer.

Definition at line 167 of file GoogleSpeechSynthesizer.cpp.

◆ open()

bool GoogleSpeechSynthesizer::open ( yarp::os::Searchable config)
overridevirtual

Open the DeviceDriver.

Parameters
configis 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).
Returns
true/false upon success/failure

Reimplemented from yarp::dev::DeviceDriver.

Definition at line 57 of file GoogleSpeechSynthesizer.cpp.

◆ operator=() [1/2]

GoogleSpeechSynthesizer & GoogleSpeechSynthesizer::operator= ( const GoogleSpeechSynthesizer )
delete

◆ operator=() [2/2]

GoogleSpeechSynthesizer & GoogleSpeechSynthesizer::operator= ( GoogleSpeechSynthesizer &&  )
deletenoexcept

◆ setLanguage()

yarp::dev::ReturnValue GoogleSpeechSynthesizer::setLanguage ( const std::string &  language = "auto")
overridevirtual

Sets the language for speech synthesis.

Parameters
languagea string (code) representing the speech language (e.g. ita, eng...). Default value is "auto".
Returns
a ReturnValue, convertible to true/false

Implements yarp::dev::ISpeechSynthesizer.

Definition at line 103 of file GoogleSpeechSynthesizer.cpp.

◆ setPitch()

yarp::dev::ReturnValue GoogleSpeechSynthesizer::setPitch ( const double  pitch)
overridevirtual

Sets the pitch for speech synthesis.

Parameters
pitchthe voice pitch.
Returns
a ReturnValue, convertible to true/false

Implements yarp::dev::ISpeechSynthesizer.

Definition at line 193 of file GoogleSpeechSynthesizer.cpp.

◆ setSpeed()

yarp::dev::ReturnValue GoogleSpeechSynthesizer::setSpeed ( const double  speed = 0)
overridevirtual

Sets the voice speed for speech synthesis.

Parameters
speedthe voice speed.
Returns
a ReturnValue, convertible to true/false

Implements yarp::dev::ISpeechSynthesizer.

Definition at line 174 of file GoogleSpeechSynthesizer.cpp.

◆ setVoice()

yarp::dev::ReturnValue GoogleSpeechSynthesizer::setVoice ( const std::string &  voice_name = "auto")
overridevirtual

Sets the voice set for speech synthesis.

Parameters
voice_namethe name of of the voice (device dependent).
Returns
a ReturnValue, convertible to true/false

Implements yarp::dev::ISpeechSynthesizer.

Definition at line 141 of file GoogleSpeechSynthesizer.cpp.

◆ synthesize()

yarp::dev::ReturnValue GoogleSpeechSynthesizer::synthesize ( const std::string &  text,
yarp::sig::Sound sound 
)
overridevirtual

Performs the speech synthesis.

Parameters
textthe text to synthesize
soundthe synthesized audio stream
Returns
a ReturnValue, convertible to true/false

Implements yarp::dev::ISpeechSynthesizer.

Definition at line 212 of file GoogleSpeechSynthesizer.cpp.


The documentation for this class was generated from the following files: