How to Create Virtual Assistant Using Python | Creating Virtual Assistant Using Python | Simplilearn

preview_player
Показать описание
"

This tutorial Creating Virtual Assistant using Python will help you create your virtual assistant. In the video, we will add functionalities such as current date and time, playing any video on Youtube, and searching for information through Wikipedia.

How to Create Virtual Assistant Using Python
👉 00:00 Introduction To Virtual Assistant
👉 02:18 installation of Modules
👉 04:23 Demonstration

✅ A virtual desktop assistant is a wonderful invention. If you want your device to operate according to your commands, just like Jarvis did for Tony. It is indeed feasible. Python makes it feasible. Python has a good main library that may be used to create virtual assistants.
✅ pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3.
✅ Python speech recognition Library for performing speech recognition, with support for several engines and APIs, online and offline.

#HowtoCreateVirtualAssistantUsingPython #VirtualAssistant #Jarvis #Python #PythonTraining #PythonProgramming #PythonForBeginners #LearnPythonProgramming #Simplilearn

➡️About AI & Machine Learning Bootcamp
The AI and Machine Learning Bootcamp provides Caltech CTME's academic prowess to help you accelerate your data science career. Statistics, Python, Machine Learning, Deep Learning, Natural Language Processing, and Supervised Learning are all included in this AI and Machine Learning Bootcamp.

✅Key Features
- Earn up to 22 CEUs from Caltech CTME
- Earn a bootcamp certificate from Caltech CTME
- Caltech CTME Circle Membership
- Online convocation by Caltech CTME Program Director
- Industry-relevant Capstone projects in 3 domains
- 25+ hands-on projects across industry verticals with integrated labs

✅Skills Required
- Statistics
- Python
- Supervised Learning
- Unsupervised Learning
- Recommendation Systems
- NLP
- Neural Networks
- GANs
- Deep Learning

🔥🔥 Interested in Attending Live Classes? Call Us: IN - 18002127688 / US - +18445327688"
Рекомендации по теме
Комментарии
Автор

Hii sir !!!. i am facing one error can u please help me. name 'instruction' is not defined. this is my error. please sir tell what should i do.

shoaibdalal
Автор

It is recognizing voice but it's not responding.? Can someone tell me how to fix it..?

gudibandipoojitha
Автор

I loved this exercise thank you so much! How could I change the voice? Thank you in advance for your time!

lexytaylormb
Автор

helpful but can be improved anywys thanks for video mate well done

AVinay-gqou
Автор

Yo this helped so much and I always appreciate th

mendozaglaizealm.
Автор

when i play.. terminal showed...
"typeError: argument of type 'function' is not iterable"

hiraksolanki
Автор

i have done with same code and everything is working but it is not talking back.

Bcasangaychoden
Автор

Thank you for the interesting session..

sairamapriya
Автор

At start its showing pip is not recognized as internal or external What to do

sajidnazirtantray
Автор

hi, i did the exact coding but still the assistant is answering only the "who is" question or either saying please repeat what can i do to fix it??

anshumanadhikary
Автор

"we will respond to the stuffs if you have problem"

later: only responds to the comments thanking them for the tutorial

montageofchips
Автор

I wish Jarvis had replied in bacha party way for who is Mahatma Gandhi 🙂

yvkynmp
Автор

sir please what v.scode extemtion do i need for this

txkesuj
Автор

It is showing error of NoModuleFoundError : No Module named 'speech_recognition' . However i have already installed SpeechRecognition amd checked also ..i didnt find any solution of it

mitalisaxena
Автор

I am not receiving audio what should I do

simransingh
Автор

Front end and backend for this project plzzz

Mona-bqpf
Автор

Mine says I have to update my pip installer

leonhore
Автор

Bro error line 65 play_jarvis
Error line 35 in play_jarvis instruction = input_instruction
Error line 31 in input_instruction return instruction
Pls help bro

MasterTarun-xlsk
Автор

hi, can u help me for one issue?
actually the speech recognization is not happening.it is not taking input and also None output i am getting only.



import speech_recognition as sr
import pyttsx3
import pywhatkit
import datetime
import pyaudio

r = sr.Recognizer()

machine = pyttsx3.init()

def talk(text):
machine.say(text)
machine.runAndWait()

def input():
try:
with sr.Microphone(device_index = 0) as origin:
print("listening")

speech = r.listen(origin)
instruction = r.recognize_goggle(speech)
instruction.lower()
if "jarvis" in instruction:
instruction = instruction.replace('jarvis', "")
print(instruction)









except:
pass




def play_instruction():

instruction = input()
instruction = None

print(instruction)
if instruction is not None and "play" in instruction:
song=instruction.replace('play', "")
talk("playing" + song)
pywhatkit.playonyt(song)

elif instruction is not None and 'time' in instruction:
time = %M%p ')
talk('current time' + time)

play_instruction()

tanusreesaha