Skip to content

isabella232/cordova-plugin-cogsvcsspeech

 
 

Repository files navigation

Ionic Application

The Ionic application was build with the Ionic framework, an open-source front-end development kit for building cross-platform mobile apps with HTML5 and Javascript.

Getting started

First, install Node.js. The cognitive services plugin supports Node version 10.9 or greater.

Next, install Ionic using the following command:

npm install -g ionic

Note: Visual Studio Code was used for development and ionic was installed through VS Code.

Dependencies

Create a Speech resource in Azure

To add a Speech Services resource to your Azure account:

  1. Sign in to the Azure portal using your Microsoft account.

  2. Select Create a resource at the top left of the portal.

    Create a resource

  3. In the New window, search for speech.

  4. In the search results, select Speech.

    Select Speech

  5. Under Speech, select the Create button.

    Select the Create button

  6. Under Create, enter:

    • A name for the new resource. The name helps you distinguish among multiple subscriptions to the same service.

    • Choose the Azure subscription that the new resource is associated with to determine how the fees are billed.

    • Choose the region where the resource will be used.

    • Choose either a free or paid pricing tier.

    • Create a new resource group for this Speech subscription or assign the subscription to an existing resource group. Resource groups help you keep your various Azure subscriptions organized.

      • Select Create.

      Select the Create button

      It takes a moment to create and deploy your new Speech resource. Select Quickstart to see information about your new resource.

      Quickstart panel

  7. Under Quickstart, select the Keys link under step 1 to display your subscription keys. Each subscription has two keys; you can use either key in your application. Select the button next to each key to copy it to the clipboard for pasting into the Environment.ts file.

  8. Copy the name of the Speech Service and the region of the service into the Environments.ts file.

Install packages using NPM

In the folder of the Ionic Application (ie examples/ionic-angular), run the following steps.

Run the following command to install all packages within the app. In a terminal window, browse to the examples/ionic-angular folder and run the following:

npm install

Install Native-Run so that the application can run the cordova native platforms (android, ios, or browser)

npm i -g native-run

Install Cordova

npm i -g cordova

To include the wrapper for the Cognitive Services plugin as an observable, run the following command:

cp -r ../../cognitiveservices node_modules/@ionic-native/

While this should install all components, there have been a few changes to cordova recently and errors were being generated while devloping on the Mac.
If you get errors, specifically using toLowerCase, the run the following commands:

npm uninstall cordova
npm install cordova@latest
cordova platform remove ios
cordova platform add ios

Run the Application

Run on Browser

To run the application, in a terminal window, browse to the examples/ionic-angular folder and run the following:

ionic cordova run browser

Run in Android Emulator

Setting up Android environment

These steps are to set up your SDK environment to build, test, and deploy Android apps.

  1. Install Java Development Kit (JDK) 8 or later.
  2. Install Gradle. Go through each steps on the Gradle Installation page.
  3. Install Android Studio.
  4. After installing Android Studio, run the Android Studio Setup Wizard to download some standard components that are required for development.

Creating an emulator

  1. In Android Studio, click the AVD Manager in the Toolbar.

    AVD Manager

  2. In the Select Deployment Target window, click Create New Virtual Device.

    Create Virtual Device

  3. Select a device configuration of your choice and press Next.

    Device Configuration

  4. Download and select a system image. Press next.

    System Image

  5. Verify configuration and press finish.

    Verify

  6. In the Virtual Device Manager, select the run button to start the emulator.

    Run

Run Android Application

To run the application, in a terminal window, browse to the speecthtoText folder and run the following:

ionic cordova run android

Run in iOS Emulator

Setting up iOS environment

These steps are to set up your SDK environment to build, test, and deploy iOS apps. This will only work on a Mac.

  1. Install XCode with Apple Developer account, or download from the App Store.

Run iOS Application

To run the application, in a terminal window, browse to the speecthtoText folder and run the following:

ionic cordova run ios

By participating in this project, you agree to abide by the Microsoft Open Source Code of Conduct

About

Cordova plugin for Microsoft Cognitive Services speech services.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 56.0%
  • Objective-C 25.7%
  • JavaScript 18.3%