Skip to main content

Adobe

Website Voice Search with the WebSpeech API and Adobe Search&Promote

Istock 824613094 Featured Image

With the takeover of the web by mobile browsers, tailoring experiences to mobile users is critical to creating successful experiences. Nearly 21.6% of mobile visitors use voice search on a daily basis, so providing voice search on mobile web experiences helps to craete a more native experience for mobile users.

Historically there has not been a good API for integrating voice recognition into websites, however, the (relatively) new WebSpeech API makes this possible right through JavaScript. This API is still experimental and only works in certain browsers, but has significant promise to more closely align web and native mobile experiences.

 

Using the WebSpeech API

 

Using the WebSpeech API is pretty simple. First, you’ll want to check if your browser supports it by checking if the SpeechRecognition or webkitSpeechRecognition properties are available on the window object as such:

 

!('webkitSpeechRecognition' in window) && !('SpeechRecognition' in window)

 

Once you have confirmed that, you can construct a new SpeechRecognition object and configure it:

 

recognition = new webkitSpeechRecognition() || new SpeechRecognition();
recognition.continuous = true;
recognition.interimResults = true;
recognition.lang = navigator.language;

 

Here, I am setting the SpeechRecognition object to continuously listen, return interim results for display purposes and use the browser’s language as the language for speech recognition. 

After configuring the settings, you’ll want to set the following functions on the recognition object:

 

  • onstart – called when the speech recognition starts, use this for initializing any variables and resetting the results
  • onerror – called when an error occurs starting voice recognition, this received an event object with an error parameter with more details as to why the speech recognition was not successful
  • onend – called when the speaking stops or is stopped by the user, this will be where we add the code to call the search results
  • onresult – called when the WebSpeech API recognizes a result. This can be either interim or final, so make sure you check if the results are final or interim

 

Once you’ve added your custom code, you can call the start method to start the speech recognition:

 

recognition.start();

 

This will kick off the speech recognition and invoke your callback methods.

 

Combining WebSpeech + Adobe Search&Promote

 

Website search is a nearly universal paradigm and aligns closely with what most website users expect for voice interactions: provide a term, get some results. With this in mind, why not integrate the WebSpeech API and Adobe Search&Promote

To try this out, I started with Google’s WebSpeech API Demonstration and extended it to componentize it for Adobe Experience Manager and add the callback to call my Search&Promote search results component via AJAX. The core of this code can be found in the AEM ClientLib JS file: 

 

 

The code to fetch the results is in the finishRecognition method and is a pretty simple jQuery load method call which fetches the results from the Search&Promote results component. I added a Sling Model to allow configuring the path to the page containing this component as well as the CSS Selector for the component in the DOM.

You can see the source code for this proof of concept on Perficient Digital’s GitHub site. It will install into any AEM 6.3 instance with the command:

 

mvn clean install -P autoInstallPackage

 

Once installed, you will need to enable the component within your AEM Design configuration and set up a page with an Adobe Search&Promote component.

 

End Result

 

The end result is pretty slick! As you can see in the video below, I can click on the mic icon and use voice search to get website search results from Adobe Search&Promote.

 

 

Download the source code from Perficient Digital’s GitHub site to get started!

 

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Dan Klco, Adobe Digital Marketing Technical Director

Dan is a certified Adobe Digital Marketing Technologist, Architect, and Advisor, having led multiple successful digital marketing programs on the Adobe Experience Cloud. He's passionate about solving complex problems and building innovative digital marketing solutions. Dan is a PMC Member of the Apache Sling project, frequent Adobe Beta participant and committer to ACS AEM Commons, allowing a unique insight into the cutting edge of the Adobe Experience Cloud platform.

More from this Author

Follow Us
TwitterLinkedinFacebookYoutubeInstagram