We released a new Speech SDK supporting the new Speech Service. The new Speech SDK comes with support for Windows, Android, Linux, Javascript and iOS.
Please check out Microsoft Cognitive Services Speech SDK for documentation, links to the download pages, and the samples.
NOTE: The content of this repository is supporting the Bing Speech Service, not the new Speech Service. Bing Speech Service has been deprecated, please use the new Speech Service.
This repo contains the Android client library and samples for Speech-to-Text in Microsoft Speech API, an offering within Microsoft Cognitive Services on Azure, formerly known as Project Oxford.
The Speech To Text client library is a client library for Microsoft Speech, Speech-to-text API.
The easiest way to consume the client library is to add the com.microsoft.projectoxford:speechrecognition package from Maven Central Repository. To find the latest version of client library, go to http://search.maven.org, and search for "g:com.microsoft.projectoxford".
To add the client library dependency from build.gradle file, add the following line in dependencies.
dependencies {
//
// Use the following line to include client library from Maven Central Repository
// Change the version number from the search.maven.org result
//
compile 'com.microsoft.projectoxford:speechrecognition:1.2.2'
// Your other Dependencies...
}
To add the client library dependency from Android Studio:
- From Menu, Choose
File>Project Structure. - Click on your app module.
- Click on
Dependenciestab. - Click "+" sign to add new dependency.
- Pick
Library dependencyfrom the drop-down list. - Type
com.microsoft.projectoxfordand hit the search icon fromChoose Library Dependencydialog. - Pick the client library that you intend to use.
- Click
OKto add the new dependency. - Download the appropriate JNI library
libandroid_platform.sofrom this page and put into your project's directoryapp/src/main/jniLibs/armeabi/orapp/src/main/jniLibs/x86/.
This sample demonstrates the following features using a wav file or external microphone input:
- Short-form recognition
- Long-form dictation
- Recognition with intent
- Android OS must be Android 4.1 or higher (API Level 16 or higher)
- The speech client library contains native code. To use this sample in an emulator, make sure that your build variant matches the architecture (x86 or arm) of your emulator.
-
First, you must obtain a Speech API subscription key by following the instructions on Subscriptions.
-
Start Android Studio, choose
Import project (Eclipse ADT, Gradle, etc.)from theQuick Startoptions and select Cognitive-Speech-STT-Android folder. -
When a
Gradle Syncdialog pops up, choose OK to continue downloading the latest tools. -
In Android Studio ->
Projectpanel ->Androidview, open file "SpeechRecoExample/res/values/strings.xml", and find the line "Please_add_the_subscription_key_here;". Replace the "Please_add_the_subscription_key_here" value with your subscription key from the first step. -
If you want to use Recognition with intent, you also need to sign up for Language Understanding Intelligent Service (LUIS) and set the key values in
luisAppIDandluisSubscriptionIDin Samples_SpeechRecoExample_res_values_strings.xml. -
In Android Studio, select menu
Build>Make Projectto build the sample, andRunto launch this sample app.
In Android Studio, select menu Run, and Run app to launch this sample app.
-
In the application, press the button
Select Modeto select what type of speech recognition you would like to use. -
To start recognition, press the
Startbutton.
We welcome contributions. Feel free to file issues and submit pull requests on the repo and we'll try to address them as soon as possible. Learn more about how you can help on our Contribution Rules & Guidelines.
You can reach out to us anytime with questions and suggestions using our communities below:
- Support questions: StackOverflow
- Feedback & feature requests: Cognitive Services UserVoice Forum
This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
All Microsoft Cognitive Services SDKs and samples are licensed with the MIT License. For more information, see LICENSE.
Sample images are licensed separately, please refer to LICENSE-IMAGE.
Developers using Cognitive Services, including this client library & sample, are expected to follow the "Developer Code of Conduct for Microsoft Cognitive Services", found at http://go.microsoft.com/fwlink/?LinkId=698895.
