cordova-plugin-speechrecognition icon indicating copy to clipboard operation
cordova-plugin-speechrecognition copied to clipboard

Fix get languages available for Oreo

Open 2-towns opened this issue 6 years ago • 1 comments

An issue was opened here : https://issuetracker.google.com/issues/73044965

2-towns avatar Nov 06 '18 07:11 2-towns

ing *str = @"Hello friend, how are you?";

AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init];

AVSpeechUtterance *speechutt = [AVSpeechUtterance speechUtteranceWithString:strtext]; speechutt.volume=90.0f; speechutt.rate=0.50f; speechutt.pitchMultiplier=0.80f; [speechutt setRate:0.3f]; speechutt.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-us"]; [synthesizer speakUtterance:speechutt];

ramanihiteshc avatar Oct 14 '20 06:10 ramanihiteshc