Speech to text convertion open source library for python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Speech to text convertion open source library for python

I am working on a project in which I need to convert speech to text and I am looking for an open source library as google speech recognition api is not a commercial one

20th Apr 2020, 2:27 PM
Amrish Kumar.G
Amrish Kumar.G - avatar
2 Answers
0
You need to imprort most popular python library Import speech_recognization as sr r=sr.Recognizer() with sr.Microphone() as source: print("say something"); audio=r.listen(source) try: print("TEXT: "+r.recognize_google(audio)); except: pass;
22nd Apr 2020, 6:16 AM
Rana Kamran Suleman
Rana Kamran Suleman - avatar
0
For using google recoginzer they are give as Caution: The default key provided by SpeechRecognition is for testing purposes only, and Google may revoke it at any time. It is not a good idea to use the Google Web Speech API in production. Even with a valid API key, you’ll be limited to only 50 requests per day, and there is no way to raise this quota. Fortunately, SpeechRecognition’s interface is nearly identical for each API, so what you learn today will be easy to translate to a real-world project. I want to use library for patent purpose.so please recommend me a library
30th Apr 2020, 5:38 PM
Amrish Kumar.G
Amrish Kumar.G - avatar