Skip to content

Abhishek-op/SR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

💡 This is a kivy-android speech to text implementation.

GitHub forks GitHub stars

GitHub issues GitHub issues closed

➡️➡️See a example vedio➡️

GIF

Note: Needed permissions for Android: RECORD_AUDIO, INTERNET[if you want online voice recognition API to be used]

📌 How to use

To start listening::

>>> from Speechrecognizer import stt
>>> stt.start()

To retrieve partial results while listening::

>>> assert stt.listening
>>> print(stt.partial_results)

To stop listening::

>>> stt.stop()

To retrieve results after the listening stopped::

>>> print(stt.results)

⭐Give this Project a Star and also Check out my Github profile ☝️ Abhishek-op