Red Santa 🎅 will send you a new fresh grandma 👵, if you punch the red subscribe button
@Rishikesh-244 жыл бұрын
Before 1000000 billion year I pressed it🙂😜😉
@Amanda-fv2te4 жыл бұрын
I waiting for fresh grandma...
@satoshiking95744 жыл бұрын
Bro tell some other functionalities we can add in it??
@aLinuxMan4 жыл бұрын
May I hit subscribe button if you talk about my girlfriend instead of grandma 😂😂
@parthiveshill26954 жыл бұрын
Jhonker bro plz bring the bangla version of its!
@JustAlgato4 жыл бұрын
Who got this randomly recommended and is now thinking of creating Jarvis.
@kesavae95524 жыл бұрын
Haha, same
@JustAlgato4 жыл бұрын
@@kesavae9552 let's make the next Iron man together lol
@kesavae95524 жыл бұрын
@@JustAlgato 😂, sure buddy 🙌
@JustAlgato4 жыл бұрын
@@kesavae9552 😂
@sub-vu4sp4 жыл бұрын
same boi
@akimcarrot38324 жыл бұрын
imagine google recommend this video because it does not want people to buy alexa
@nullvoid4134 жыл бұрын
It did 💀
@GaliGaloj_gaming_014 жыл бұрын
😂👍
@ashleyboykin77774 жыл бұрын
Haha google sent me here 😂
@harshgupta20314 жыл бұрын
no google will not reccomend bcoz it wants to sell his google home samajh rhe ho! samajh rahe ho!
@phantomsays89354 жыл бұрын
It did
@murugamurgan31802 жыл бұрын
in nut shell 1. Importing speech_recognition, pyttsx3, pywhatkit, datetime, and wikipedia modules. 2. Creating a listener object from the speech_recognition module. 3. Creating a command variable to hold the voice command given by the user. 4. Creating a talk() function to convert the text to speech. 5. Creating a take_command() function to take voice commands from the user. 6. Creating a run_alexa() function to run the alexa code. 7. Creating a while loop to run the alexa code continuously.
@simphiweyende6346 Жыл бұрын
Thanks for the check list👍🏾
@moonchild-il2xs Жыл бұрын
which python version should I use ?
@TheMusicerN Жыл бұрын
The recent one should do it
@manu_ovg Жыл бұрын
i use 3.7 and i got no problem@@moonchild-il2xs
@rons3634 Жыл бұрын
The issue I'm having is that I already have Alexa, so every time he says 'Alexa' my Alexa starts doing something stupid. I really wish he had named this something else. LOL
@khank14483 жыл бұрын
This Guy in 5-10 years: “Don’t live in the Universe, make you own in 1000 lines of code!”
@dillonacle62473 жыл бұрын
Program the matrix in 10 lines.
@dhruvakikkeri62173 жыл бұрын
LMAO
@raajeew3 жыл бұрын
LOL
@lindadelalisey54083 жыл бұрын
😂😂
@BakwasBoy3 жыл бұрын
xD
@sahalayamon3 жыл бұрын
MAA : what are u doing MEE : learn coding MAA : your code is romantic?
@ProgrammingHero3 жыл бұрын
hahahaha! hats off to Maa!
@iamnexom3 жыл бұрын
I wasted thousands of dollars in college and learned nothing compared to what i learned here in this channel for free. You guys are amazing . You people deserve a noble prize for what you are doing here.
@OliverCaneteOfficial2 жыл бұрын
Really good man. Very inspiring. After completing this project and creating my own "Alexa" I want to build an even better version for a project of mine. God bless you dude. Keep post this excellent content.
@nylhsaaaa4 жыл бұрын
**casually puts google, apple, and amazon out of business with a KZbin video**
@TurboIsHome3 жыл бұрын
lmao
@mavdotj3 жыл бұрын
Imagine googled own product putting another product out of business
@phani51953 жыл бұрын
Imagine creating a own voice assistant which says "I have a boyfriend" when you ask it are you single
@ProgrammingHero3 жыл бұрын
Nice idea! hahahaha!
@arunsubramanian76373 жыл бұрын
@@ProgrammingHero Its not an idea smh, your stupid. The bot rejected you. And your very cringe
@affanarsyad22093 жыл бұрын
@@arunsubramanian7637 you cant even do html
@Sigmos4 жыл бұрын
This man is going to ruin alexa's whole career😂
@vandelfs4 жыл бұрын
what career 😂
@7ru7h384 жыл бұрын
😂😂😂
@compositingwithkushal4 жыл бұрын
@Isaac W i am new to python. So that means buddy this guy is just showing how to pull the set of codes of someone else and use it, am i right?
@artibahuguna23294 жыл бұрын
😄😍
@ripdude36923 жыл бұрын
@@compositingwithkushal well he just simply used some modules
@firestorm5312 жыл бұрын
I recently had an issue with the unbound local error. My friends, if you also have this error then simply change the variable called 'command' to something else in the second function so that it recognizes it as a variable in it. It doesn't recognize 'command' because it was locally created in the first function. All the best with the project guys!
@N-MRC2 жыл бұрын
could you paste your code here
@parveenverma59122 жыл бұрын
@@N-MRC import speech_recognition as sr import pyttsx3 import pywhatkit import datetime import wikipedia import pyjokes listener = sr.Recognizer() engine = pyttsx3.init() voices = engine.getProperty('voices') engine.setProperty('voice', voices[1].id) def talk(text): engine.say(text) engine.runAndWait() def take_command(): try: with sr.Microphone() as source: print('listening...') voice = listener.listen(source) command = listener.recognize_google(voice) command = command.lower() if 'alexa' in command: command = command.replace('alexa', '') print(command) except: pass return command def run_alexa(): command = take_command() print(command) if 'play' in command: song = command.replace('play', '') talk('playing ' + song) pywhatkit.playonyt(song) elif 'time' in command: time = datetime.datetime.now().strftime('%I:%M %p') talk('Current time is ' + time) elif 'who the heck is' in command: person = command.replace('who the heck is', '') info = wikipedia.summary(person, 1) print(info) talk(info) elif 'date' in command: talk('sorry, I have a headache') elif 'are you single' in command: talk('I am in a relationship with wifi') elif 'joke' in command: talk(pyjokes.get_joke()) else: talk('Please say the command again.') while True: run_alexa()
@WarpedAbyss2 жыл бұрын
yoooo @firestorm531 same problem could u paste ur code
@khaledkhairy7232 жыл бұрын
can u explain more please !!
@fighterluky50552 жыл бұрын
@@WarpedAbyss def take_command(): command = "" try: with sr.Microphone() as source: print('ich höre zu...') voice = listener.listen(source) command = listener.recognize_google(voice, language="de-DE") if 'James' in command: command = command.replace('James', '') print(command) except: pass return command Just put command="" after def take_command(): to fix your error.
@shinchanh48284 жыл бұрын
dont buy house, make your own
@ProgrammingHero4 жыл бұрын
😊
@RandomPerson494-12c4 жыл бұрын
Not a bad idea.
@chargeslained31044 жыл бұрын
Lol
@jarvistarush_pa55274 жыл бұрын
ya i did that in minecraft
@A1A17844 жыл бұрын
@@jarvistarush_pa5527 lol
@priyacosta32414 жыл бұрын
Programming hero : Alexa play arianda grande Video: PLAYS AD Me : huh?
@gentworm23774 жыл бұрын
Hold up, I came to KZbin to watch a Java tutorial but I ended up watching this hilarious-genius video
@insanesoul224 жыл бұрын
Same I came for pfp
@gentworm23774 жыл бұрын
@@insanesoul22 php*
@manousakis014 жыл бұрын
@@gentworm2377 From Sql videos🤚
@Aecor4 жыл бұрын
@@insanesoul22 php = soul selling
@gentworm23774 жыл бұрын
@@manousakis01 👋 hi
@projackson35511 ай бұрын
Imagine combining this and machine learning ai. You basically created Jarvis
@warlordjahrise8421Ай бұрын
Looking forward to a project like that ❤
@kravlone76123 жыл бұрын
Sing programmers be like : now I m gonna make a virtual girlfriend who'll talk to me
@luisg2773 жыл бұрын
Yes! with the voice of Scarlett Johansson please... like the movie
@dharmikthej3 жыл бұрын
He Made a virtual gf
@zschibi69423 жыл бұрын
Bro all programmers are single
@fireyeyes46753 жыл бұрын
You got me!
@alimbabar6623 жыл бұрын
Me too
@buzzdx4 жыл бұрын
for security reasons you should switch from using google to a local speech recognizer. the vosk api for python for example is easy to use and can even be run on raspberry pi, while also having bigger models for normal computers.
@ProgrammingHero4 жыл бұрын
Thanks for the advice
@olivergorgiev2243 жыл бұрын
@Program Program u mean how to implement the vost api in ur project?
@23p503 жыл бұрын
@Program Program and now for other people interested you should provide a link (if theres one) so every other beginner can do it too
@OsoTedyfazbear33292 жыл бұрын
@@ProgrammingHero Ok, after watching this video I only have 2 questions 1- What should I change the code so that my Alexa has another name? 2- Does it work privately, that is, as Siri making requests anonymously?
@jugadu_gaming2 жыл бұрын
@@OsoTedyfazbear3329 😮💨😓🥱🤣
@KoushikPal4 жыл бұрын
Disclaimer: No Amazon is harmed during making this video.
@ProgrammingHero4 жыл бұрын
xD
@pandipatipavan38044 жыл бұрын
@@ProgrammingHero sir kzbin.info/www/bejne/d3zcnp-blp2mj68 this is the link you have shared to me to fix the pyaudio issue. But this is not working and in this link he is showing folder called Local which was not at all present in my laptop. so please help me to rectify the issues sir.
@torpezaincreible86924 жыл бұрын
@@pandipatipavan3804 press start + r And type the location. Press enter
@talalrashid92684 жыл бұрын
Yes it is🤣
@sourabhverma3764 жыл бұрын
can anyone help me here, for completing the code at 5:58 i run my program ....it runs without error , it prints listening..... , I speak something but it cant recognize and do not give any output as text.
@josephsmart5602 Жыл бұрын
This video is the best programming tutoring video I have watched. I couldn't press the stop or end button because I didn't get bored at any point. You did a great job keeping me focused on all the lectures you made. Looking forward to seeing more of these videos from you🔥
@GAMEOLOGIST3 жыл бұрын
I love this guy, his teaching style is entirely different and fun too..
@ProgrammingHero3 жыл бұрын
thanks man, love you more!
@avenger57633 жыл бұрын
@@ProgrammingHero can i add this project in my resume
@YellappaM4 жыл бұрын
The best way of explaining the usage and power of Python without boring :)
@ProgrammingHero4 жыл бұрын
Thanks a ton!
@sakshamsaini68943 жыл бұрын
And in a romantic way😆
@SUPER_GIANT3 жыл бұрын
True
@avenger57633 жыл бұрын
Bro can i add this project in my resume
@orbitalweapon75384 жыл бұрын
Why this guy always stays romantic 😂
@ProgrammingHero4 жыл бұрын
Cause I am!!!
@gadamsettybhuvanesh61913 жыл бұрын
@@ProgrammingHero how can i contact u Im having a problem in this code
@walterbeckett94613 жыл бұрын
@@ProgrammingHero ha ha ha!
@d3v4nsh803 жыл бұрын
@@gadamsettybhuvanesh6191 discord server mate
@creativehub20233 жыл бұрын
@@gadamsettybhuvanesh6191 Me too i also have error so atleast your whatsapp number?
@noprobliem23 Жыл бұрын
i just realised, if we code it like this, the option would be quite limited right? can we use openAI and implement it inside of this ? if anyone have done it please reply, im very interested
@rafy-ivanmorales30773 жыл бұрын
I'm a new student trying to learn, so I can become a programmer with python and I have a project on how to make a port scan. So far I already make a port scan with Python3, and it scans fine, give a date and everything working good so far. I see on your video tutorial, it is very good. I would like to ask for your advice if you can and guide me on how I will add this 3 in a Python script, I have: 2. System should look for all the ports between the range of 1 to 1025 3. If the Ports is open, it should create a file and add an entry for port number 4. In case of any exception for instance “host is not available”, “host name could not be resolved” or due to any other error, you need to write that exception into the same file. Thank you and Merry Christmas.
@WillowWarrenFarms4 жыл бұрын
New subscriber here. Just finished my data structures along with other programming classes. I barely got out of those classes because I just never really learned how to program. These videos are very clear and well organized. Thank you!
@ProgrammingHero4 жыл бұрын
Welcome aboard!
@naomihotarutadashii91102 жыл бұрын
@@ProgrammingHero please help me, I am having issues with pyaudio installation. Can you please please PLEASE make a tutorial on how to fix that issue? Thank you very much :) By the way I subscribed!
@_sayandas Жыл бұрын
You didn't understand data structure classes but you're here to make AI assistant? Bro you skipped like 3 years 🤣🤣🤣🤣
@nagamani1215 Жыл бұрын
@@ProgrammingHero bro please explain how to keep that ai on a device?. Should we run that python code always to use ai?.
@Mandy-gr7qg Жыл бұрын
@@_sayandas to understand how to code you have to create projects. good for them, trying to build projects to develop their understanding!
@rinkujain12454 жыл бұрын
Amazon wants to know your location
@ProgrammingHero4 жыл бұрын
😁
@asdf78344 жыл бұрын
@@ProgrammingHero bd
@andersonpgs2 жыл бұрын
it would be good to contain in the video a part teaching to leave the "alexa" running always, without having to run in vscode or pycharm, for example create an application in the system tray or that there was only a function to start and stop, just to know if it is or not working, because I believe that just like me, many people do not know how to do this function, thanks for the video
@bellabear6532 жыл бұрын
You could create an application to leave it running I believe the lesson is just to provide proof of pythons ability and that these so called amazing fancy pieces of tech are nothing more than a few dozen lines of code.
@abhaykapoor41394 жыл бұрын
The reaction when KZbin popped up first time was so amazing
@sangeeth773 жыл бұрын
I just really love the way this guy says ‘Romantic’ 😂❤️
@subhadeepghosh90934 жыл бұрын
Literally sir and his grandma are genius 😂😂... Thank you for such a best content
@ProgrammingHero4 жыл бұрын
You're most welcome!
@craftrumzen23932 жыл бұрын
Imagine buying Alexa when you can download free python and packages to make your own.
@ifeogunb71373 жыл бұрын
I love the enthusiasm and the detailed tutoring and explanations. The fact that you seemed like you were enjoying yourself in making this video make me enjoy it too. This is amazing! Definitely looking forward to more videos and recommending them to people.
@unknowblox25002 жыл бұрын
181 likes and no comments? lemme change that.
@socorinhamendes Жыл бұрын
Mine doesn't work
@omskariyazmaraikayer9134 жыл бұрын
I appreciate the energy of this young man. Also his explanation is good. One more KZbin hero! Way to go.
@ProgrammingHero4 жыл бұрын
Thank you so much ❤
@t.e.aravindhanstudent-mca90744 жыл бұрын
வணக்கம் நண்பா
@mohammedashifm81394 жыл бұрын
@@ProgrammingHero I don't get answer
@zentteri31393 жыл бұрын
@@ProgrammingHero i have a question, i have never programmed or used python before. can i still do this if i really want or do i need to have learnt something+
@thatbook33123 жыл бұрын
@@zentteri3139 i would just follow the video, if you have problems with it stack exchange is a good place to go for help. ive found the only way to learn programming is to start doing it.
@AlAmin-el8yy3 жыл бұрын
This is the first time I notice, programing is super easy. I love you, dude. Please keep it continue. Good luck
@JohnMattingly-t5g Жыл бұрын
A printout of the finial code would help a beginner troubleshoot his code because with the changes you made it was really hard for me to keep up with you so my code has errors in it that I can't fix and I think it would help others.
@AliKhaidhir4 жыл бұрын
Man, i love how you explain what's in line by line. The command process also give me so much experience and knowledge boost. Hope you can meet Ariana Grande soon in SUPER SIMPLE way!!
@ProgrammingHero4 жыл бұрын
Glad to help!
@manishsinha72924 жыл бұрын
@@ProgrammingHero Help i am not able to to do this error shows when i paste it and it has with every command this error is this 'pip' is not recognized as an internal or external command, operable program or batch file.
@buythiscoin59254 жыл бұрын
Lord knows if I paid for this course I would be glad I did this tutorial
@ProgrammingHero4 жыл бұрын
Thanks for watching! ❤
@m1gald3 жыл бұрын
All I can say is wow and thank you bro, your grandma's very kind btw
@acegameboy62322 жыл бұрын
I recently got back into wanting to learn Python after leaving my programming class. Seeing this was incredible and I definitely want to make one for myself but I'm curious how I would make it more personal. For example, how would I ask it do something like "turn my lights off/on" or "when is my assignment due" or just something a little more human. Think like Jarvis (Tony Starks personal AI assistant). I want something that can adapt to me and have all the basics like this awesome video but have more capabilities and the ability to learn and adapt to my life style and or just become smarter on it's own. If this is possible then please someone show some videos and tell me how and what I would need to add or do to make it happen. For now I'll get to work making this. Really appreciate this video.
@dadolab23142 жыл бұрын
You would need to use other packages for these kind of things.For the lights, you would probably need to buy smart lights or something like that and then use and then use a raspberry pi to turn the lights on or off.You can also use the arduino and then put a servo motor on the light so that it turns it off, if you dont want to buy the lights, but in this case you would need to use the arduino programming language, which isnt that hard. For your project to be able to check for the due of the assignment, you would probably need to use selenium.
@acegameboy62322 жыл бұрын
@@dadolab2314 Alright so that's cool. What about other things? Well beyond that I want to be able to access my ai from anywhere without opening my laptop and hitting run. I've seen that some people said you need a raspberry pi and link it to your phone and have the program running through that. I've also seen more videos on what ai can do like machine learning to predict stuff and I want to be able to link the machine learning program with the ai assistant program and have my assistant run the predictions when I ask where ever I am. There's just so much I want to do with the ai assistant and so many other ai videos like this one but the code is far more different using like an extra 5 lines for the simple tasks like he showed in the video. I basically want for there to be a way to link up all of the programs I see and make them work together and as for the other tasks I want to include I'll just add those in when I want to and make it work.
@vishalaggarwal12914 жыл бұрын
THIS guy is literally mad for Ariana Grande 😂😂
@saifuddinsd4 жыл бұрын
😂😂
@69hackerkuttakimot864 жыл бұрын
!!!!
@futurebillionaires28874 жыл бұрын
👿
@qwertyphysics4 жыл бұрын
True words
@5C_B4 жыл бұрын
Dont buy a house, code your own
@Mk.MostafaKamal3 жыл бұрын
epic
@onlyshorts68373 жыл бұрын
😂😂😂
@arasoftware39483 жыл бұрын
hhaahahahaha
@orcave88023 жыл бұрын
Underrated 😂😂
@orcave88023 жыл бұрын
@@5C_B nevermind don't comment just use a command
@roy_shuvo4 жыл бұрын
I have read many of the comments. Everyone is appreciating you. As a Bangladeshi, I feel proud to have you. God bless you Jhankar vai. ♥️
@jmaguilar57782 жыл бұрын
Thank you for this! I love how genuine and enthusiastic you are through the whole guide
@ag360154 жыл бұрын
I just subbed, I love this kind of channels with tutorials on how to automate/build cool things!
@ProgrammingHero4 жыл бұрын
Awesome, thank you!
@aymanshaikh36323 жыл бұрын
Only 10% of the people can complete this code with patience
@itzmealex53253 жыл бұрын
It's not that much code tbh. I remember making a game. Very simple and I never finished it. It was a lot of code and every sprite had a lot of lines and I kinda just hopped on minecraft lmao
@vishnuprasanth47254 жыл бұрын
Programming Hero: Alexa, I miss you My Alexa: That's really sweet Me: ...
@Observer-a112 жыл бұрын
Love your enthusiasm, not to mention the in depth knowledge of Python and associated modules. You are a Certified Super Pythonista-CSP.
@MrJakson1123 жыл бұрын
I have never written a single line of code in my life, thank you for making this so easy to understand. Would it be possible, to make this an app for the phone/pc or possibly put it on a raspberry pie, so I can make a physical voice assistant, like alexa?
@shxdww85423 жыл бұрын
yes it would
@alejandroooow3 жыл бұрын
Yeah it is possible
@ZikyFranky4 жыл бұрын
Messed with these packages some time ago, just love your reactions which is why I'm watching lol. Nice Video Man
@shirkedance4 жыл бұрын
2020 has made many Jobless, Including Alexa.
@prophatcheeusebio4218 Жыл бұрын
Everybody can be a master of python programmer with a teacher like you!!!! thank you!!!!
@mondal95094 жыл бұрын
I don't know why I discovered this channel but *I really did a very good job* . I'm a new subscriber. So I am gonna try this then I will ask you Questions. 😍👏
@ProgrammingHero4 жыл бұрын
Thank you! ❤
@snoopyjc4 жыл бұрын
“Alexa play coldplay” will play “cold” as replace does ALL instances
@butterbot3334 жыл бұрын
simply type command = command.replace("play","",1) the one at the end tells it to only remove the first instance of 'play'
@MattaparthiShivaBhargav4 жыл бұрын
,😂
@prprawish4 жыл бұрын
you can mention as command = command.replace(" play ","") By adding space before and after play so it will deduct in this case. else command = command.replace(" play ","",1) replace first occurrences only
@JS-kc1tm3 жыл бұрын
you could leave this script running 24/7 on a raspberry pi so it would activate *whenever* you say alexa, just like the real alexa :)
@waseemupnxt3 жыл бұрын
how?
@JS-kc1tm3 жыл бұрын
@@waseemupnxt just turn on your rpi with a monitor, start the script, and disconnect the monitor. or make it so that the script starts as startup
@sayanbhadra32233 жыл бұрын
@js can you pls explain it in simple way I am a beginner
@JS-kc1tm3 жыл бұрын
@@sayanbhadra3223 you do exactly what he does in this video. then at the end, run the program on a loop and leave it running. disconnect the monitor, keyboard and mouse. keep the pi running. then you can use it like a normal alexa
@sayanbhadra32233 жыл бұрын
@@JS-kc1tm thank you friend
@MOHSINALI-xh2ss2 жыл бұрын
Great man! Love your content, you made me realize that python is not just a programming language, it's a modern world in itself.
@tojojose79104 жыл бұрын
All the dislikes are by Alexa developers 😂😂😂
@suchitrasart22494 жыл бұрын
Lol
@DarshJain4 жыл бұрын
Dislikes are also by people who don't want romantic story in the video
@cutebrain4 жыл бұрын
😂😂😂 lol
@pituboro4 жыл бұрын
But KZbin recommended me
@tojojose79104 жыл бұрын
@@pituboro because they don't know what is this video about. Bots!
@shobhit78444 жыл бұрын
When he says 'super simple' that brings me more confidence 😅😂
@ProgrammingHero4 жыл бұрын
Yes It's Super Simple!
@zhengkaitaken3 жыл бұрын
The person who is reading this, I wish you a calm, successful, and healthy life forever ❤
@ProgrammingHero3 жыл бұрын
AWWW... You are so sweet!
@ProgrammingHero3 жыл бұрын
are you on our discord server? come join us! Link given in the description! I would love to meet you there!
@peterschmitt23103 жыл бұрын
Needed that thank you 🙏
@bindumahi17113 жыл бұрын
Tqq and same to u
@bindumahi17113 жыл бұрын
@@ProgrammingHero awesome vedio dude
@franxtheman2 жыл бұрын
Hey. I've noticed that I can only install certain amounts of packages. Then it says install error and when I remove one it won't download other. I can only download 4 to 6 packages before the error comes. I can create new projects but it then gives me another few tries and then back to error. I really need to know how I can install more packages please.
@mohammedshahidma15633 жыл бұрын
This is very interesting, would you please show us how to make this but with a user interface
@robertpietraru19393 жыл бұрын
for 10 dollars I'll show you
@shehnazsheriff9563 жыл бұрын
Help me sir after running its keep on listening ......wat to do sir
@robertpietraru19393 жыл бұрын
@@shehnazsheriff956 show me the code
@shehnazsheriff9563 жыл бұрын
@@robertpietraru1939 same coding i have tried sir but its keep on listening idk y
@journey-in-pixels3 жыл бұрын
Raspberry pi with some cheap displays or even touch displays. just watch some KZbin videos on raspberry pi.
@theinnerbeastunleashed3 жыл бұрын
He is about to destroy the whole career of jeff 😅 and google
@zeroplays99154 жыл бұрын
This man is obsessed with *Arianna Grande* 😂😂
@ProgrammingHero4 жыл бұрын
i love Ariana Grande
@Mohit-il9gx4 жыл бұрын
@@ProgrammingHero make her our new grandma😂😂
@amirulhridoy36214 жыл бұрын
Lol 😅
@b07x4 жыл бұрын
@@Mohit-il9gx lol 😂
@garvitprajapat4284 жыл бұрын
@@Mohit-il9gx op bro 😂😂😂
@THE-CRT2 жыл бұрын
Could I make it so it’s always running like an Alexa? Could I also attach it to a device in a way that shows the result on the screen?
@DylanPiper4 жыл бұрын
I am getting error on line 35 “TypeError: argument of type ‘function’ is not iterable” Please help :)
@ProgrammingHero4 жыл бұрын
You have mistaken incoding. Please check.
@minhaj62114 жыл бұрын
Download the code from github then run again. This should work without showing that error message.
@shive52gaming664 жыл бұрын
@@ProgrammingHero Yes sir
@JahangirHossain-qi4xx4 жыл бұрын
@@ProgrammingHero Your are awesome. Thanks for the app. I'm really proud of you. You are my programing Hero & teacher. Please make video on how to make spell checker like google spell checker which is my all time favorite. And also make a video on translator. Please Teacher Fantastic.
@sGs-re9uv4 жыл бұрын
@@minhaj6211 can I have your ig bruh? I have some doubts
@allstarsgamer78472 жыл бұрын
I am watching this video after buying alexa
@missphysicist24133 жыл бұрын
Decided! This is gonna be my school project!
@originals27223 жыл бұрын
if you did not know you *STOLE the code .
@ancientgear71923 жыл бұрын
@@originals2722 He can take insiration from this code, watch more similar tutorials and then write his own code.
@AgeofReason3 жыл бұрын
Update: person didn't actually do it at all just wanted people to "thumb up" the useless comment.
@sivavijay12082 жыл бұрын
Respect the people who made those packages
@カクじゃけん3 жыл бұрын
Hi, I really like your videos. Question, I tried to run after writing all code till 5:43, but it says process finished immediately once clicking run button and 'listening' word doesn't show up. Do you have any idea to solve this?
@yolobfh21933 жыл бұрын
have that problem too
@sarojpatra83063 жыл бұрын
I too have the same problem...
@Lawrence-5563 жыл бұрын
Yep :(
@bhuvneshsisodia99343 жыл бұрын
Yes
@sathappanpr12713 жыл бұрын
Yeah smae prombelm occurred to me also
@caru_marco_4 жыл бұрын
is there a way to avoid the google recognizer? may we know how the listener works, in terms of privacy and what services it uses to recognize the commands?
@ProgrammingHero4 жыл бұрын
You can Discuss your problem in this server- discord.gg/vWPHRW4
@maburwanejohannes46474 жыл бұрын
I've never heard of a question : Alexa are you sleeping or are you crying?😂😂 It's a paradox
@ProgrammingHero4 жыл бұрын
🤣🤣😂
@thulasiramteja85812 жыл бұрын
@Programming Hero greetings ! i tried your steps it was great. but when i giving task for my assistant like "alexa, tell me the time " it worked but when i tried to give task for my assistant with other name it is executing. like "siri, tell me the time" it worked i want my alexa to work when i say alexa but i noticed that when i run the code with out saying alexa it is listing and the command is executing with out saying her name. like >when i run the code >after 5 sec " listening..." >"tell me the time" it worked could you please give us an update on the working of all the commands when we say alexa only while it is in listening mode i really appreciated of your work and thanks for the video
@AaronsLifeGame2 жыл бұрын
i noticed it does work if you remove the declaration around the takeCommand() - but then the rest doesnt work, since you cant use the return command properly
@vanshbharadwaj3 жыл бұрын
"Ariana Grande is crazy , that's what she thinks" Man I love you😂
@sjohn-7773 жыл бұрын
Those having difficulty installing PyAudio in Ubuntu 18.04.5 this helped: 1. sudo apt install portaudio19-dev 2. pip install PyAudio
@sjors5003 жыл бұрын
Hello, Thank you for this awesome video. like your enthousiasm.. I have 1 issue: UnboundLocalError: local variable 'command' referenced before assignment Please can you tell me how to solve this.
@CodeWithUjval Жыл бұрын
Bro has fallen in love with Alexa 😂😂
@meetcodes58114 жыл бұрын
Best channel to learn PYTHON.. Too good bro.
@ProgrammingHero4 жыл бұрын
Thank you priti for your support. This means a lot. We will keep uploading
@inertiaoffun65594 жыл бұрын
Do you know about CODE WITH HARRY he is also very good
@vineetrajparashar38854 жыл бұрын
This is too good man 🔥🔥🔥. May Santa fullfil your all wishes this Christmas 🎉🎉. Love from India.❤️
@PictorialVibes4 жыл бұрын
Wonderful demo of what python can do! Thanks a lot. It's really a great way to build voice-command based customized automation tools (AKA assistants).
@ProgrammingHero4 жыл бұрын
CHEK HERE, github.com/ashraf-minhaj/Audio-Book/
@efootballer11912 жыл бұрын
"Ariana Grande is crazy and you are crazy too"😂😂 nice bro...has saved me a few bucks
@themstudio2043 жыл бұрын
Me after watching this video: "I AM IRON MAN"
@ProgrammingHero3 жыл бұрын
Make your own Jarvis!
@JustAlgato3 жыл бұрын
@@ProgrammingHero don't watch avengers, make your own
@JustAlgato3 жыл бұрын
@Rajendra Prasad hehe
@indhuofficial5783 жыл бұрын
Hey, thanks yar... Im studying python for a while but i don't know how to make python programmes more fun and crazy.. i learned it through your videos... keep updating more python tricks and fun loaded programmes....😍
@ProgrammingHero3 жыл бұрын
Glad to hear that
@aditikushwaha62833 жыл бұрын
10:09
@mr.scientifiz1964 жыл бұрын
THIS MAN IS GOING TO SHUT ALL JOBS 🔥🔥😂😂
@bruh124583 жыл бұрын
next: dont use the earth, code your own with 30 lines of code
@swapnil39902 жыл бұрын
"Alexa, what's the date today?" "SoRrY, i HaVe aN hEaDacHe."
@YashwardhanBanta3 жыл бұрын
The way you speak out the content, it's just superb! Thank you for the video!
@abhinavpratapsingh44454 жыл бұрын
Amazon's gonna report this 😂
@siyabonganxumalo45744 жыл бұрын
He didn't do anything wrong.
@geoffraylyon50324 жыл бұрын
If you have trouble to install PyAudio, in terminal run as admin, type pip install pipwin pipwin install pyaudio works for me and you don't have to downgrade win10 python 3.9
@eggidwitama4 жыл бұрын
this works for me too
@zaforkhan63234 жыл бұрын
i faced problem and you gave me the solution , thanks
@shivamangaitkar57434 жыл бұрын
Thanks buddy
@vaibhavmd75244 жыл бұрын
@@zaforkhan6323 . Hey i phase the problm while install pip audio
@surbhikumari75114 жыл бұрын
Thanks it work for me
@rosetembo41642 жыл бұрын
Hello am a big fan of your work sir, I tried to create my own Alex but while running the code it brought 'Process finished with exit code 0' can you help me sir
@userb8a3 жыл бұрын
This is a great "inspiration project"! But apparently I'm gonna be doing a lot of tweaks cause there's a lot of strange behavior in the code as it is. For example, you don't have to say "Alexa" (or whatever name you chose) before saying "play this or that song". You can simply say "play Ariana Grande" and it will open youtube.
@kartikbhargav63163 жыл бұрын
bro can anyone help me out while running this alexa code because it gives error that is UnboundLocalError: local variable 'command' referenced before assignment
@themarvelgirl13824 жыл бұрын
Hey there!! Do you even know, Amazon is going to recruit you in just some minutes!!😂😂
@magicmage72913 жыл бұрын
Would there be a way to add custom voices into this?
@ProgrammingHero3 жыл бұрын
unfortunately, no!
@ratulhasan71363 жыл бұрын
well you can chose option like using pyttsx3 with which you can use windows voices (win 10 have 3 english voices) (offline) or gtts to use google's default female voice (online) i believe other libs like this are also out there
@HorsyPotter2 жыл бұрын
13:00 you're receiving an output from a function so you consider not printing it in the function definition of try block of take_command() function
@mansijoshi73 жыл бұрын
Sir can you teach some major projects along with source related to artificial intelligence domain for final year student
@hxdx69504 жыл бұрын
""chillionaire like Jeff Bezos 😂😂😂"
@ArifBillahOnGoogle3 жыл бұрын
I was not in any mood to watch a half hour long tutorial now. But I tell you, I was really impressed!
@ProgrammingHero3 жыл бұрын
Glad to hear that!
@avenger57633 жыл бұрын
Bro can i add this project in my resume
@bsk38003 жыл бұрын
@@avenger5763 Yes, not a problem
@ankitseal94462 жыл бұрын
It shows this error: Traceback (most recent call last): File "d:/python prog/assistant.py", line 59, in run_alexa() File "d:/python prog/assistant.py", line 34, in run_alexa command = take_command() File "d:/python prog/assistant.py", line 30, in take_command return command
@dust13371 Жыл бұрын
same here , doesnt works
@juanrossi33 жыл бұрын
Man, thank you so much for your generosity. This lesson was incredible, one of the best videos I have seen in my life. You are basically teaching us a super power :) wish you the best!
@shamianamagembe65243 жыл бұрын
I have just fallen in love with you programming Hero /Mr.Romantic . This is gonna look like magic for my friends here in Uganda Africa . Thank you
@richardboreiko Жыл бұрын
It wasn't printing "listening..." . I found I needed to "pip install PyAudio" and then it worked. No other changes were needed, no new imports.