Skip to content

amitrana3348/CBIME17

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CBIME17

CB Ingole project

For Speech Recognition Install as follows

Firstly install pyAudio

sudo apt-get install python-pyaudio

now install Speech Recognition Library

sudo pip install SpeechRecognition

Example is here

import speech_recognition as sr

while True:
    r = sr.Recognizer()
    with sr.Microphone(device_index = 2, sample_rate = 48000) as source:
        audio = r.record(source, duration = 3)
    with open("microphone-results.wav", "wb") as f:
        f.write(audio.get_wav_data())

    try:
        print("You said: " + r.recognize_google(audio))
        
    except sr.UnknownValueError:
        print("Google Speech Recognition could not understand audio")

    except sr.RequestError as e:
        print("Could not request results from Google Speech Recognition service; {0}".format(e))

#For Text to speech Install as follows

sudo apt-get install python-dev

sudo apt-get install espeak

sudo apt-get install espeak python-espeak

sudo pip install pyttsx

example

import pyttsx
engine = pyttsx.init()
engine.say('Good morning.')
engine.runAndWait()

use below link https://pythonprogramminglanguage.com/text-to-speech/

About

CB Ingole project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages