This was excellent. I really, really appreciate that you start *truly* from scratch (an empty folder!) and stick to vanilla HTML, CSS, JS. I can reason about these things and so can my browser. I have attempted to follow several WebRTC tutorials that start with 500 Node packages, Vite, AutoMagic.js, this that and the other thing-all to build a "simple demo" showing a technology that the browser natively supports! I invariably run into a string of issues getting all that crap to install and work, and it didn't even need to be in the project. I know that basically represents what front-end development has become, but as a relative outsider (iOS developer, primarily), I think it's absolute madness-especially in the context of a tutorial! All of my mentors taught me to treat every dependency as a liability and use as few as reasonably possible. Anyway..."kids these days"...I know. I'll get off my soapbox. Excellent content, earned my subscription. Thanks!
This is the perfect tutorial on the whole internet, I have searched everywhere for a clear understanding of this topics for 2 months but never found anything clear or relevant, thanks dennis
only good and full course on WebRTC i could find thank you very much. all the other courses are just copy and paste bins that arnt explaining anything. Hope the algo starts recommending this so people dont waste hours with crap
Saying that webrtc uses UDP and UDP is not reliable protocol is correct, but a bit misleading. It actually uses SCTP on top of UDP and it has several reliability options. Any webrtc data channel might be set to "reliable" in which case it will take care of not losing any important data (just like tcp does). Overall great tutorial, thank you!
Standard port for STUN is 3478; restrictive firewall configurations that expect applications to run on standard ports will likely break this, even if they do permit STUN.
Can you also make a tutorial for a livestreaming app without the use of Agora? I'm trying to adapt your tutorial where only the streamer is sending their media and the viewers are only watching the video but I can't get it to work.
i dont'e get why we needed the signalling servers, i only want to copy paste the sdp. but they seem to work on the same network devices, but on deifferent network devices they do not connect.
the first project does not work for me when I try to use video chatting, but it only work for audio while we have both video and audio constrains set to true ! probably it work on the same device and the same video feed! but not in separate devices !
The presentation is very interesting but as with most of that crash courses, it is outdated. Tried to find that Real-time Messaging SDK on agora site without result. So could not complete this course.
It not working for other network. Like from ex: I have a device and a internet connection and my brother have a device and other inter provide/connection. And with this when I try to do this it's not working..
@@DennisIvy Thanks but please do NextJs Authentication with Django Rest Framework, with Google OAuth. Also, adding email and password to the same tutorial will be great. I am desperately waiting for your response.
man i'm so sad, i applied for a job and they sent me a link for a test. I tried but the last one was so troll, i ran the test, which was good but when submitting there was too many errors and i had to guess where it all came from but at the end I couldn't figure it out how to fix the last 2 errors. I mean I could see what should my code send instead of what I was actually sending but it was weird do know how to set the condition right. For instance the only clue it gave me was things like : '#NoSpace' != ' behind # the scenes' ANd i was so confuse, what does that even mean? because when i just swap the output string the result was just the opposite : ' behind # the scenes' != '#NoSpace'
Hi Dennis, is there is any way in agora to send a video frames to backend Django python application server? If anyone knows the answer please reply back
@@shilashm5691 It does seem possible but unfortunately I haven't spent enough time researching this. Check this video and article out, it may help. ua-cam.com/video/h0O18R1rI9U/v-deo.html webrtchacks.com/aiy-vision-kit-uv4l-web-server/
Hello, i watched all of your django's videos and learned so many new concept, now i want to earn money by making something out of it, so please tell me where i can find client
Hello It has been long time to upload a vdio by U.... I request u to Start a course for UA-cam family....that wll b helpful for us to to get Adjust in companies...
Thanks but please do NextJs Authentication with Django Rest Framework, with Google OAuth. Also, adding email and password to the same tutorial will be great. I am desperately waiting for your response.
Cool tutorial! It worked fine within my LAN but when I uploaded it to Cloudflare pages, it would error out when I click Add Answer: "WebRTC: ICE failed, add a TURN server and see about:webrtc for more details."
This was excellent. I really, really appreciate that you start *truly* from scratch (an empty folder!) and stick to vanilla HTML, CSS, JS. I can reason about these things and so can my browser. I have attempted to follow several WebRTC tutorials that start with 500 Node packages, Vite, AutoMagic.js, this that and the other thing-all to build a "simple demo" showing a technology that the browser natively supports! I invariably run into a string of issues getting all that crap to install and work, and it didn't even need to be in the project. I know that basically represents what front-end development has become, but as a relative outsider (iOS developer, primarily), I think it's absolute madness-especially in the context of a tutorial! All of my mentors taught me to treat every dependency as a liability and use as few as reasonably possible. Anyway..."kids these days"...I know. I'll get off my soapbox. Excellent content, earned my subscription. Thanks!
Spoken my mind. Thanks!
This is the perfect tutorial on the whole internet, I have searched everywhere for a clear understanding of this topics for 2 months but never found anything clear or relevant, thanks dennis
Wow! God level tutorial. You are the best WebRTC tutor on the internet I've stumbled upon so far. Thank you for this awesome video.
only good and full course on WebRTC i could find thank you very much. all the other courses are just copy and paste bins that arnt explaining anything. Hope the algo starts recommending this so people dont waste hours with crap
🙏
Awesome tutorial, this is the only tutorial which helped me understand the peer connection code.
Awesome video, the way you visualized it in the slides really helped me understand what's going on
Thanks man!
Excellent video. Everything was well explained and easy to understand. I now have a clear understanding of the signaling process and how ICE works.
best simple explanation out there
Excellent - thanks, Dennis!
Nice tutorial for WebRTC, Thanks
You are life saver , you just saved my project ❤️❤️❤️❤️❤️❤️
omg I was just getting so confused over this new subject that i stumbled upon. Wanted to learn more and found this fantastic video. Thank you sir
Time to create a speed dating app!
what a tutorial. thank you so much man.
thanks, Dennis.❤❤❤
waiting for real time chat project
Thank you sir for such amazing course
Saying that webrtc uses UDP and UDP is not reliable protocol is correct, but a bit misleading.
It actually uses SCTP on top of UDP and it has several reliability options. Any webrtc data channel might be set to "reliable" in which case it will take care of not losing any important data (just like tcp does).
Overall great tutorial, thank you!
Great explanation! Thanks!
Thank you so much Dennis. I am currently working on Django project in which Django channel will use. How do you know I need this video 😂😂
💚💙💙💜💜♥️♥️♥️♥️♥️❤️❤️❤️❤️❤️❤️❤️
Amazing, thanks for the video!
That brilliant , Bro...
Killer demo!
this was so helpful. thank you 🎉
Waiting for that django real time chat 😍
Very well explained. Just have suggestion to create other branch in repository for the connection that is done manually.
Standard port for STUN is 3478; restrictive firewall configurations that expect applications to run on standard ports will likely break this, even if they do permit STUN.
Excellent explanation, except you didn't explain at the very beginning how you included the WebRTC scripts into your projects or did I miss that part?
WebRTC is part of the native browser api so you don’t need to import anything. Just start using it as I did in the video.
@@DennisIvy Ah OK. May you should have emphasized that also in the beginning. Thanks.
¡Muy buen vídeo! ¡Muchas gracias! 💯👏👍💙 Thanks a lot for this great video!
Can you also make a tutorial for a livestreaming app without the use of Agora? I'm trying to adapt your tutorial where only the streamer is sending their media and the viewers are only watching the video but I can't get it to work.
Did you get it to work? Wanna try the same q.q
i dont'e get why we needed the signalling servers, i only want to copy paste the sdp. but they seem to work on the same network devices, but on deifferent network devices they do not connect.
great video sir
Hi i have one confusion about ice handling.we have to add ice candidate on both remote as well as local
Dennis! Is it possible to do it with django ? I was expecting from you to use django stack to do so ?
Awesome, Thank you so much
the first project does not work for me when I try to use video chatting, but it only work for audio while we have both video and audio constrains set to true !
probably it work on the same device and the same video feed! but not in separate devices !
Amazing!!!
can u also make a video on how to implement SFU
Hi Dennis it's very good you started uploading video again. Can you make a video about JS dom?
During signaling with agora, are you using trickle ice method?
God tutorial! but it possible automatization this process with simple button for two browser?
Hi Dennis. Is it possible to createAnswer without copying the offer on the other peer ?
The presentation is very interesting but as with most of that crash courses, it is outdated. Tried to find that Real-time Messaging SDK on agora site without result. So could not complete this course.
great video
hi @Dennis ivy ........ bro its working when both peers are connected to same wifi other wise its not workig can u please help me out ..........
Can you built a project webrtc sfu architecture in django?
i have a question, can we build a video stream in django or we have to use node js instead?
is webrtc the fastest protocol? for real-time screen share + video/audio call even if u have a low internet issue?
Super 🔥
It not working for other network. Like from ex: I have a device and a internet connection and my brother have a device and other inter provide/connection. And with this when I try to do this it's not working..
did you find any solution for it
Can we have an updated React + Django integration video ? 👀
Mabye 😉
@@DennisIvy It would be amazing
@@DennisIvy Thanks but please do NextJs Authentication with Django Rest Framework, with Google OAuth. Also, adding email and password to the same tutorial will be great. I am desperately waiting for your response.
Денис ты супер!
Thank you sir
Sir webrtc not working on different network, even your demo site ??
do you find any solution for that ?
@@SachinSingh-fs2xe no, is there same problem with you? I searched a lot.
@@navdeepagrawal9201 no , i too didn't get the answers
@@navdeepagrawal9201 i think vo agora update hogya hai
@@SachinSingh-fs2xe yes, that's why I have to involve server, in future if you get then please let me also known.
Waiting for that django real time chat
man i'm so sad, i applied for a job and they sent me a link for a test. I tried but the last one was so troll, i ran the test, which was good but when submitting there was too many errors and i had to guess where it all came from but at the end I couldn't figure it out how to fix the last 2 errors. I mean I could see what should my code send instead of what I was actually sending but it was weird do know how to set the condition right. For instance the only clue it gave me was things like : '#NoSpace' != ' behind # the scenes'
ANd i was so confuse, what does that even mean? because when i just swap the output string the result was just the opposite : ' behind # the scenes' != '#NoSpace'
Hi Dennis, is there is any way in agora to send a video frames to backend Django python application server? If anyone knows the answer please reply back
Not sure why you are trying to accomplish but yea, it’s possible with fetch or axios. Just send a post request to your backend.
@@DennisIvy For real-time object detection..is it possible? I'm not that much into the front end...It is tough for me.
@@shilashm5691 It does seem possible but unfortunately I haven't spent enough time researching this. Check this video and article out, it may help.
ua-cam.com/video/h0O18R1rI9U/v-deo.html
webrtchacks.com/aiy-vision-kit-uv4l-web-server/
Hello, i watched all of your django's videos and learned so many new concept, now i want to earn money by making something out of it, so please tell me where i can find client
Hello It has been long time to upload a vdio by U....
I request u to Start a course for UA-cam family....that wll b helpful for us to to get Adjust in companies...
Actually, WebRTC allow's UDP or TCP to data transfer.
I am trying to build something similar using 100ms, any tips?
Interesting . can you make omagle clone in django?
Dennis can you please make a DJANGO social media clone or chat app?
Thanks but please do NextJs Authentication with Django Rest Framework, with Google OAuth. Also, adding email and password to the same tutorial will be great. I am desperately waiting for your response.
Dude your asking for a whole project just because you can’t do it on your own 😂😂😂
Noice 👌🏽
Cool tutorial! It worked fine within my LAN but when I uploaded it to Cloudflare pages, it would error out when I click Add Answer: "WebRTC: ICE failed, add a TURN server and see about:webrtc for more details."