Take up the challenge - Build a speech translator app using Azure
Published Apr 04 2024 08:30 AM 989 Views
Copper Contributor

Introduction

 

Join Charles and me on this exciting adventure as we dive into creating a speech translator app with Azure! This journey is far more than a simple coding challenge; it's about shattering language barriers and knitting the world a bit closer, one translated sentence at a time. Follow along this Challenge project and/or our Learn Live session and build along!

 

VidushiGupta_0-1712244935098.png

 

What are we building? What are the prerequisites?

 

Imagine being able to speak in your native language and have your words instantly translated and spoken in another language. That's exactly what we're creating—a speech translator app that seamlessly converts spoken words from one language to another. This app will listen to your voice, transcribe your words into text, translate that text into a language of your choice, and then speak the translation back to you. It's like having a personal interpreter in your pocket, ready to help you communicate with anyone, anywhere.

 

Our app will leverage Azure's powerful services, including the Speech-to-Text, Translator, and Text-to-Speech APIs, to handle the heavy lifting of transcription, translation, and vocalization. By the end of this guide, you'll have a fully functional app that can break down language barriers and bring people closer together.

Prerequisites:

 

  • An Azure account: If you don't have one already, sign up for a free account at Azure's website. This will give you access to all the services we'll be using.

  • Power Apps and Power Automate: Our app will utilize Power Apps for the user interface and Power Automate for handling the workflow between Azure services. A basic understanding of these tools will be beneficial, but not required. We'll guide you through every step.

  • Curiosity and creativity: Most importantly, bring your sense of adventure and imagination!

Why is this a challenging project?

 

  • Authentication and Security Management
    Ensuring secure and effective management of authentication keys was crucial, especially for accessing Azure Blob Storage and the Text-to-Speech connector. Balancing security with accessibility required meticulous planning.
  • Handling Diverse Connectors
    Our project depended on integrating multiple Azure services, each requiring a different language or markup, such as SSML for the Speech API. Coordinating these connectors demanded a deep understanding of each service's specifications.
  • Collaborative Dynamics
    With a team of four distributed across the globe, coordinating our efforts, sharing resources, and aligning our ideas was both a challenge and a learning opportunity. Overcoming the hurdles of remote collaboration was key to our project's success.

Where can you look for help?
Navigating the complexities of our speech translator app required extensive research and support. Here are the invaluable resources that guided us through the process:

 

  • Speech Studio on Microsoft.com
    For mastering SSML (Speech Synthesis Markup Language) and refining our text-to-speech output, Speech Studio was our go-to resource. It provided the necessary tools and documentation to enhance the app's vocal responses. Speech Studio (microsoft.com)
  • Power Automate Connectors on Microsoft Learn
    With a plethora of connectors to manage, the comprehensive list of Power Automate connectors on Microsoft Learn was indispensable. It helped us understand and implement the connectors essential for our app's functionality. List of all Power Automate connectors | Microsoft Learn
  • Azure Batch Speech-to-Text on Microsoft Power Automate
    The Azure Batch Speech-to-Text templates available on Microsoft Power Automate significantly accelerated our development process. These templates served as a foundational resource, streamlining the transcription component of our app. Azure Batch Speech-to-text | Microsoft Power Automate

How did we build this?


General workflow

Creating this speech translator app involves breaking down the process into three intuitive steps. Here’s how we do it:

 

  1. Speech-to-Text (Transcription): First, you we the audio we've recorded and convert it into written text. This means whatever we say into the microphone gets turned into words on a screen.
  2. Translation: Next, we take that written text and translate it into the language you want. It’s like having a bilingual friend who can quickly tell us how to say something in another language.
  3. Text-to-Speech: Finally, we transform the translated text back into audio. So, instead of reading the translation, we’ll hear it spoken in the language of our choice.

In essence, you speak in one language, and the app delivers your message in another language, all through audio. It’s a simple journey from speaking to listening, with a bit of tech magic in between!

(PS. After reading this blog, you can do the tech magic yourself)

Part 1: Get transcribed text from recorded audio

On the PowerApps canvas, add a microphone, a button, and a text box.

VidushiGupta_72-1711648613979.pngNavigate to the Data section, select 'Add Data', and establish connections to both Azure Blob Storage and Azure Batch Speech-to-Text.

VidushiGupta_73-1711648613988.png

 

Create a new variable named newvtext and assign it the output from a Power Automate run. Use textsendback as the variable to store the transcribed text.

 

 

 

 

 

 

 

 

Set(newvtext, SwitchCaseAdded.Run().textsendback)

 

 

 

 

 

 

 

 

Place this code within the OnSelect event for the button.

VidushiGupta_74-1711648613989.pngThe text box is configured to display the text from the variable that holds the transcription.
VidushiGupta_75-1711648613990.pngThe PowerApps (V2) connector links the PowerApp directly to the specified Power Automate flow.

VidushiGupta_76-1711648613990.png

Create a variable named varTextFromAudio to store the transcribed text.

VidushiGupta_77-1711648613992.png

This section of code establishes a connection to Blob Storage, then generates a SAS token and path.

VidushiGupta_78-1711648613993.png

Now, use the Blob path obtained from the previous step to initiate the transcription process.

VidushiGupta_79-1711648613995.png

You need to execute the following two sections of code to enable the 'apply to each' step to locate the transcription text.

VidushiGupta_80-1711648613996.png

 

 

 

 

 

 

 

substring(outputs('Create_transcription')?['body/self'], add(lastIndexOf(outputs('Create_transcription')?['body/self'], '/'), 1))

 

 

 

 

 

 

 

 

You'll also require this section of code to enumerate all files generated by this process.

VidushiGupta_81-1711648613998.png

 

 

 

 

 

 

 

substring(outputs('Create_transcription')?['body/self'], add(lastIndexOf(outputs('Create_transcription')?['body/self'], '/'), 1))

 

 

 

 

 

 

 


Much of this step was adapted from the template. Essentially, it iterates through all outputs, and when it encounters an item where the "kind" equals "transcription", it captures that value and stores it in the variable.

VidushiGupta_82-1711648614001.png

Some recommendations:

  • Test Frequently: Keep a tab open on make.powerautomate.com dedicated to your flow. Regularly run tests, especially after each run or upon adding a new block, to verify that block and review the output.
  • Monitor Variables: Open another tab on make.powerapps.com and pay close attention to the variables as you execute each control on your canvas.
  • Use Postman for API Testing: Have Postman running and test each of your API calls to the connectors. Converting code from Microsoft Learn documents into Postman configurations using ChatGPT can be both fun and satisfying. It's rewarding to hit send and receive an actual response!

 

Here's the overview of the complete Power Automate flow setup to get the first part working:

 

VidushiGupta_83-1711648614005.png

Part 2: Translate transcribed text

 

Let's simplify the process of translating transcribed text into another language, making it user-friendly and intuitive. Here’s a step-by-step guide to setting up your app for language translation:

 

VidushiGupta_84-1711648614005.png

 

  1. Choose Your Language: To allow users to select their desired translation language, add a dropdown widget to your PowerApp canvas. Populate the dropdown with a list of languages you want to offer, like French, German, and Hindi. Feel free to customize this list to your preference!

VidushiGupta_85-1711648614036.png

 

  1. Capture the Language Selection: When a user picks a language from the dropdown, you need to translate this choice into a language code that your translation service understands. For this, use the following code in the dropdown's “OnChange” property:

 

 

 

 

 

 

 

If(Dropdown1.Selected.Value = "French", Set(SelectedLanguage, "fr"), If(Dropdown1.Selected.Value = "German", Set(SelectedLanguage,"de"), If(Dropdown1.Selected.Value = "Hindi", Set(SelectedLanguage, "hi"))))

 

 

 

 

 

 

 

 

This code assigns the appropriate language code to a variable based on the user's selection.

 

VidushiGupta_86-1711648614072.png

 

  1. Set Up the Backend Flow: Behind the scenes, you'll create a workflow in Power Automate that takes the user's language choice and the text to be translated, processes it, and then returns the translated text. Here’s how to set it up:

VidushiGupta_87-1711648614095.png

 

  • Capture Inputs: The flow starts by receiving the selected language and the text from the app.
  • Initialize a Variable: Set up a variable to store the translated text.
  • Translate the Text: Use a "Translate Text" action to convert the text into the selected language, looping through the results to extract the translated text.
  • Return the Output: Finally, send the translated text back to the app.

 

VidushiGupta_88-1711648614130.png

 

VidushiGupta_89-1711648614156.png

 

VidushiGupta_90-1711648614192.png

 

VidushiGupta_91-1711648614226.png

 

VidushiGupta_92-1711648614254.png

 

VidushiGupta_93-1711648614279.png

 

  1. Trigger the Translation: Add a button to your app that, when clicked, runs the translation flow with the selected language and the text input as parameters. Use this code snippet to connect the button to the action:

 

 

 

 

 

 

 

Set(results,TranslateTranscribedText.Run(SelectedLanguage,TextInput1.Text))

 

 

 

 

 

 

 

 

VidushiGupta_94-1711648614313.png

 

  1. Display the Results: To show the translated text to the user, add a text display area to your app and set its content to the translation result.

 

VidushiGupta_95-1711648614344.png

 

  1. Test this part and wohoo, you just finished 2 out of 3 parts of your app.

textTranslate.gif

Part 3 - Convert translated text to speech

To complete our speech translator app, we now focus on transforming translated text back into speech, making the translation audible.

1. Build the Flow: Start by creating a new flow in Power Automate. This flow is responsible for converting text into speech. Set up the nodes as shown in the screenshot below

 

VidushiGupta_96-1711648614370.png

 

2. Configure Inputs and Outputs: Ensure your flow can receive the translated text from your app and then output audio. The key steps include:

    • Setting up a trigger that initiates the flow when translated text is available.
    • Adding actions within the flow to process the text through the text-to-speech service.

VidushiGupta_97-1711648614402.png

 

VidushiGupta_98-1711648614429.png

 

VidushiGupta_99-1711648614459.png

 

VidushiGupta_100-1711648614487.png

 

VidushiGupta_101-1711648614512.png

 

VidushiGupta_102-1711648614545.png

 

VidushiGupta_103-1711648614579.png

 

VidushiGupta_104-1711648614612.png

 

VidushiGupta_105-1711648614640.png

 

3. Run the Flow: With the flow built and configured, trigger it from within your app. This step involves:

    • Calling the flow with the translated text as its input.
    • Processing the text through the flow to generate speech.

 

VidushiGupta_106-1711648614695.png

 

4. Output the Result in Your App: After the flow runs and converts the text to speech, you'll need to handle the output. This involves:

    • Receiving the audio file or stream generated by the flow.
    • Playing back the audio in your app so the user can hear the translation.

 

VidushiGupta_107-1711648614725.png

 

5. Integrate and Test!

 part3.gif

 Impact of an application of this kind?

 

  • A Unified Development Environment
    Utilizing PowerApps, PowerAutomate, and the Speech API together offers a comprehensive low-code solution for developing powerful applications. This trio allows for rapid prototyping and deployment, demonstrating the potential of Microsoft's ecosystem in facilitating app development.
  • The Challenge of Specialized Implementation
    The most intricate aspects of our project revolved around debugging, managing various connectors, and implementing specialized code, such as SSML. These tasks underscored the complexity behind the seamless operation of our app, highlighting the importance of detailed technical planning and execution.
  • The Role of AI in Bridging Language Gaps
    Employing GPT-4 for real-time language translation showcased the extraordinary capabilities of AI in overcoming language barriers. The irony of using computer-generated translations to solve human communication challenges illustrates the evolving relationship between technology and language. This application not only serves as a practical communication tool but also as a testament to the power of AI in fostering global connectivity.

Fullappworking.gif

Version history
Last update:
‎Apr 04 2024 08:35 AM
Updated by: