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
Dependencies
tab. - Click "+" sign to add new dependency.
- Pick
Library dependency
from the drop-down list. - Type
com.microsoft.projectoxford
and hit the search icon fromChoose Library Dependency
dialog. - Pick the client library that you intend to use.
- Click
OK
to add the new dependency. - Download the appropriate JNI library
libandroid_platform.so
from this page and put into your project's directoryapp/src/main/jniLibs/armeabi/
orapp/src/main/jniLibs/x86/
.
To add prevention rule from proguard-rules.pro file:
# Microsoft
-keep class com.microsoft.**{*;}
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 Start
options and select Cognitive-Speech-STT-Android folder. -
When a
Gradle Sync
dialog pops up, choose OK to continue downloading the latest tools. -
In Android Studio ->
Project
panel ->Android
view, 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
luisAppID
andluisSubscriptionID
in Samples_SpeechRecoExample_res_values_strings.xml. -
In Android Studio, select menu
Build
>Make Project
to build the sample, andRun
to 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 Mode
to select what type of speech recognition you would like to use. -
To start recognition, press the
Start
button.
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 opencode@microsoft.com 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.