AmazonSpeechTranslator Save

End-to-end Solution for Speech Recognition, Text Translation, and Text-to-Speech for iOS using Amazon Translate and Amazon Polly as AWS Machine Learning managed services.

Project README

Speech Recognition, Translation, and Text-to-Speech on iOS

License License

This is a powerful, yet simple solution for demonstrating the power of machine learning on mobile using managed cloud services. The app provides speech recognition via Apple Speech API, text translation via Amazon Translate, and showcases speech synthesis using Amazon Polly to read back our translated text!


Watch the entire app unfold YouTube - Mobile Quickie
Speech Recognition Translation
Recognition Translation

Getting Started

Of all the AWS services, Amazon Translate is by far the easiest to implement into your app. Amazon Polly is a close 2nd. So, if you have never used AWS before and want to try adding some machine learning to your mobile app, now is the time! And, it only takes less than 5 minutess for both backend and client configuration.

Architectural Diagram

There are two easy steps to building this solution: Part 1. Configure backend by creating an Amazon Cognito Identity Pool, IAM Role(s), and adding permission to those roles for accessing Amazon Translate and Polly directly from a mobile app. Part 2. Create a mobile app to showcase natural language processing by cloning my sample app from GitHub and configuring it to use the values created in step #1.

PART 1: Configure Backend (1 minute)

I created a CloudFormation template to automate the creation of a Cognito Identity Pool, IAM Role(s), and permissions. The other services (Translate & Polly) do not require any backend configuration and will be called directly from our mobile app. Note: Creating a CloudFormation Stack to provision the above AWS resources is FREE.

  1. Click on the Launch Stack button

    Launch Stack

    This will launch the AWS CloudFormation Console, passing in the template, create a new stack, and automate the creation of a Cognitio Identity Pool, associated authenticate & authenticated IAM Roles along with policies for accessing Amazon Translate and Amazon Polly directly from a mobile app.

  2. Click Next on the Select Template page

  3. Click Next

  4. On the Options page, leave all the defaults and click Next

  5. On the Review page, check the box to acknowledge that CloudFormation will create IAM resources and click Create.

  6. Wait for the speechtranslator-stack stack to reach a status of CREATE_COMPLETE

  7. With the speechtranslator-stack selected, click on the Outputs tab and you should see three rows. We only need the identityPoolId for now. Stack Output

  8. Copy the Value for just the identityPoolId as we’ll be pasting this value into the AWSConfiguration.json file in our Xcode project.

PART 2: Mobile Client Setup (3 1/2 minutes)

In this part, we'll clone the repo, update Cocoapods, and update the AppDelagate.swift file with your own backend Identity pool Id and IAM Roles generated in PART 1.

  1. Download or clone this project

    $ git clone https://github.com/mobilequickie/AmazonSpeechTranslator.git
    
    $ cd AmazonSpeechTranslator
    
  2. Install Cocoapods

    $ sudo gem install cocoapods
    
    $ pod install --repo-update
    
  3. Launch project in Xcode

    $ open SpeechRec.xcworkspace
    
  4. Update the AWSConfiguration.json by pasting in your own identityPoolId from the output tab of CloudFormation Stack that you created in Part 1, step #7. Stack Output

  5. Build and run the app

Requirements

  • Cocoapods 1.5.0 +
  • iOS 10.2+ / Mac OS X 10.13+
  • Xcode 9.0+

Built Using

  • See THIRD-PARTY-LICENSES.txt
  • Pulsator - Used for animating the live listener
  • DropDown - Used as a dropdown for selecting the different languages

Author

Dennis Hills (Mobile Quickie) - Initial work

YouTube | Blog | Twitter

Open Source Agenda is not affiliated with "AmazonSpeechTranslator" Project. README Source: mobilequickie/AmazonSpeechTranslator