top of page

Speech Recognition with python

  • Writer: Quan Sheng
    Quan Sheng
  • Dec 1, 2019
  • 1 min read

Next up we gonna do speech recognition using python.

We will need to pip install the packages for SpeechRecognition.

How does speechrecognition works? it uses audio processing library from google


Problem encountered:

- My laptop does not seemed to recognize my microphone


Managed to fix it by closing application that are currently using my microphone such as discord.

This is cool to use!


Next we going to do a point to point connection.

What is a point to point connection?

- A point-to-point connection is a dedicated communication link between two systems or processes.


What we have here is a publisher to publish a message to a socket where people who are connected known as the subscriber to the socket can receive the message.


Publisher

Publishes message on localhost on port 9995


Subscriber

The subscriber wait for a message being published by the publisher


Commentaires


bottom of page