Transcripts, Search, and Keyword Spotting With Twilio And VoiceBase

February 20, 2015
Written by

BlogImage

Here’s a little exercise. When you get off of an important call, try to remember the last thing you said. Your words have a funny way of escaping you. VoiceBase makes it incredibly easy to programmatically pull up call recordings, powered by Twilio, to find the information you need. In this blog series they’ll walk you through integrating and managing VoiceBase in your app.

The following is a guest post from VoiceBase

voicebase-logo-2
Your Twilio app is up and running, thousands of connections are being made daily, and your library of recordings is growing fast. For your customers, knowing what is spoken inside these recordings is absolutely critical for monitoring agent compliance, keyword spotting, trend detection and much more. By taking a comprehensive look through this content, VoiceBase provides tools for Twilio users to identify and distinguish between hot leads, opportunities, complaints, etc. Wouldn’t it be great to deliver this valuable information straight into your customers’ laps?  The VoiceBase solution adds value to any Twilio user whether you are a contact center, CRM platform, sales organization or conferencing solution.

In the past, the only way to gather spoken information was to have a human physically listen to every recording, write descriptions, and manually tag calls or fill out scorecards. However, this is an expensive and time-consuming process. Fortunately, we have a solution! Twilio’s simple integration with VoiceBase allows users to incorporate speech analytics to multiple layers of businesses at disruptively low costs. 

VoiceBase fully indexes calls, making all of your content searchable and discoverable within minutes of being uploaded. Users can search into the timeline of a recording to play the precise part of any audio or video file. VoiceBase also provides a Web SDK enabling easy setup for a slick end user display.

VoiceBase-Player-Plugin2 (1)
VoiceBase’s powerful API is a cloud-based solution, with zero upfront costs.  Simple API calls allow VoiceBase to grab .wav.files from Twilio recording URLs. VoiceBase utilizes parallel processing to quickly index these individual recordings. The machine transcripts are then made available with time-stamped keywords and search capabilities within minutes. All of this data is made accessible as JSON responses.

We caught up with Greenrope CEO, Lars Helgeson, to talk with him about his own experiences with Twilio’s VoiceBase integration.

 

We will focus on how to efficiently use the VoiceBase API with Twilio to index a recording.  Check out the VoiceBase Landing Page here for more info on retrieving the keywords, topics, and transcripts as well as building end user displays using Voicebase and Twilio.

Indexing Content with TwiML

In part 1 we will be specifying an action URL in the TwiML so VoiceBase can be notified when a recording is complete.  We will then write some code to receive the end of call event and make an API call to VoiceBase to upload and index the recording. We will simply pass along the URL to the recording we get from the Twilio event as a parameter to the VoiceBase API. We will then specify another callback in the VoiceBase API so we can be notified when the indexing is complete.

Often in your TwiML you use the dial command.   For example here is a dial command that is being used for joining a conference room.  Twilio enables you to record the call with the record flag and specify the action to take when the call completes like this:

<dial record=”true” action=indexCallRecording.php>

 

Or you can do something like this to record a conference call.

<Response>

    <Dial>

           <Conference record="record-from-start"     

eventCallbackUrl="indexConferenceRecording.php">

                LoveTwilio

          </Conference>

     </Dial>

</Response>

 

In the callback, you will have access to a link to the recording. The callback is where you can initiate the indexing request to VoiceBase, which we will show below. Alternatively you can find links to Twilio recordings through the Twilio API – https://www.twilio.com/docs/API/rest/recording

Let’s take a look at the code in indexConferenceRecording.php, which initiates the request to VoiceBase that eventually creates a transcript of your recording, indexes it so it is searchable and also extracts keywords from the recording.

First we will extract some important values that Twilio provides in POST form.

      # Collect meta data from Twilio
      $rec= $_POST['RecordingUrl'];                    # Location (for indexing, use .wav only)
      $recStream= $_POST['RecordingUrl'].”.mp3”;      # Location (for streaming)

      $callSid= $_POST['CallSid'];	
      $from= $_POST['From'];                    # Can be used as Title in VoiceBase
      $recSid= $_POST['RecordingSid'];
      $externalId = $recSid;                        # Map recordings by setting 
                                                                         #VoiceBase ExternalID = Sid

Then we set some of the values we will want to include in the API call to the VoiceBase upload method that will initiate the processing on VoiceBase servers.

   # set some of the VoiceBase API call parameters
      $action = "uploadMedia";
      $transcriptType = "machine";    #Human transcription is also available
      $public="false";
      $APIkey="";
      $password="";
      $version =”1.1”;
      $machineReadyCallBack="http://www.example.com";

      # and the VoiceBase API base URL
      $baseurl=”https://API.VoiceBase.com/services”;

Next we do the HTTP GET (POST is also supported).

     # uploadMedia allows http GET  to the VoiceBase API to upload the audio file
      #  note the link to the mediaUrl (the audio file that was recorded)
      #  using the callSid as the unique externalId
      #  using the from field for the title
         $url = $baseurl;
         $url .= "?version=".$version;
         $url .= "&APIkey=".$APIkey;
         $url .= "&password=".$password;
         $url.= "&machineReadyCallBack=".$machineReadyCallBack;
         $url .= "&action=".$action;
         $url .= "&mediaURL=".$rec;
         $url .= "&sourceURL=".$recStream;  
         $url .= "&transcriptType=".$transcriptType;
         $url .= "&public=".$public;
         $url .= "&externalId=".$externalId;
         $url .= "&searchHitUrl=".makeSearchHitUrl($externalId,$appUrl); #see part 4
         $url .= "&title=".$from;
         $ch = curl_init();
         curl_setopt($ch, CURLOPT_VERBOSE, 1);
         curl_setopt($ch, CURLOPT_TIMEOUT, 300);
         curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 300);
         curl_setopt($ch, CURLOPT_URL, $url);
         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
         $response = curl_exec($ch);
         curl_close($ch);

And finally we get the JSON response from the API call.

   # get the response from VoiceBase
        #   check the status
        #   get the unique mediaId for the file
        #   get the  fileUrl (can be used for links to branded page)
        $jsonDoc =json_decode($response, true); 
        $statusMessage=$jsonDoc['statusMessage'];
        $fileUrl = $jsonDoc['fileUrl'];
        $mediaId=$jsonDoc['mediaId'];

A few words about the VoiceBase API’s upload method above. Every method has 4 required parameters in common.

  • API key and password
  • Version: Current version is 1.1
  • Action: In this case the action is uploadMedia

For upload media, we are passing in the following parameters:

    • mediaUrl: Location of the recording. Used at upload time for building the transcript, keyword extraction and indexing. Use the wav file.
    • sourceUrl: You can use this setting if you plan on storing the mp3 yourself.VoiceBase will use this URL for streaming and will not transcode the audio to mp4.
      If not set VoiceBase will transcode the audio into a standard mp4 format and store it for streaming purposes later. If you plan on using Twilio store and stream (using the mp3), we recommend that you set this.
    • transcriptType: The transcript can be either machine or human transcribed. It is machine by default.
      Human transcripts are more costly but can be useful for important calls.
    • Externalid: This ID is external from the point of view of VoiceBase. It allows you to use your own uniqueID’s to reference the recording, its transcript and other metadata. It is your responsibility to make sure the externalId’s are unique.
    • SearchHitUrl: By default the search method will return a link to the recordings player page on the VoiceBase server.
      You can use this field to override that URL. This is useful if you plan on using the VoiceBase Web SDK that includes a search component and a player component. More about this in a future blog or at VoiceBase.com
    • machineReadyCallBack: This is similar to the Twilio action parameter.
      This is a way to get notified when the machine transcript and associated processing has been completed.

 

The response from VoiceBase includes a mediaId, which you can store and use to reference recordings, transcripts and keywords later. The externalId allows you to use your own unique Id and can be used in place of the mediaId in any VoiceBase call. In this example we are setting the VoiceBase externalId to Twilio’s RecordingSid . This way we do not have to store the mediaId and maintain a mapping between the Twilio ID and the VoiceBase IDs. You can do the same or use another unique identifier. It is your responsibility to ensure that the identifiers are unique. Or you can just use the VoiceBase unique mediaIds if you like.