- Organisation: Liquid Galaxy
- Student: Sreyas Ravichandran
- Mentors: Marc Gonzalez, Andreu.
- Project:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# pip install SpeechRecognition | |
# https://pypi.python.org/pypi/SpeechRecognition/ | |
# recognizer_instance.recognize_google(audio_data, key = None, language = "en-US", show_all = False) | |
# Performs speech recognition on audio_data (an AudioData instance), using the Google Speech Recognition API. | |
# The Google Speech Recognition API key is specified by key. If not specified, it uses a generic key that works out of the box. | |
# This should generally be used for personal or testing purposes only, as it may be revoked by Google at any time. |