-
Notifications
You must be signed in to change notification settings - Fork 3
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
Async Functionality in Cordova #6
Comments
AndroidRecognize from microphoneRecommendation:
Stop recognizing from microphoneRecommendation:
Play text to speech audioRecommendation:
Stop playing text to speech audioRecommendation:
iOSRecognize from microphoneRecommendation:
Stop recognizing from microphoneRecommendation:
Play text to speech audioRecommendation:
Stop playing text to speech audioRecommendation:
|
I believe we can efficiently use the Speech SDK to stream audio, if we leverage the SpeechConfig speechConfig = SpeechConfig.fromSubscription(...);
CustomPushAudioOutputStreamCallback callback = new CustomPushAudioOutputStreamCallback();
PushAudioOutputStream outputStream = PushAudioOutputStream.create(callback);
AudioConfig audioConfig = AudioConfig.fromStreamOutput(outputStream);
SpeechSynthesizer synthesizer = new SpeechSynthesizer(speechConfig, audioConfig); |
Description
As an architect, I want to understand how Cordova implements Async functionality, so that I can determine if plugin should implement the Speech SDK async functions.
Acceptance Criteria
The text was updated successfully, but these errors were encountered: