[Django]-Is it possible to use Python SpeechRecognition on Django?

5👍

Django has no access to the users’ computers so if you try to record from a microphone you will be using the server’s microphone, if it has one.

You need to record using JS/HTML5 and then send the data to django to process with AJAX. You might even be able to stream it but it’s probably not worth the effort.

Leave a comment