问题描述
我想知道ASP.NET MVC 5是否支持语音识别.我想用它来编写登录系统.
I want to know if ASP.NET MVC 5 supports speech recoginition. I want to code a login system with it.
推荐答案
ASP.net是一个用于使用HTML,Javascript和CSS构建网站的Web框架,甚至根本无法处理声音.
ASP.net is a web framework for building websites with HTML, Javascript and CSS, it doesn't even work with sound at all.
但是,您可以使用HTML语音识别API(仅适用于Chrome浏览器)进行语音识别.您可以使用ASP.NET创建所需的HTML页面并将其呈现给用户.您可以从以下页面了解有关HTML语音识别API的更多信息:
However, you can use HTML speech recognition API (works in Chrome only) for speech recognition. You can create required HTML page with ASP.NET and present it to the user. You can learn more about HTML speech recognition API from the following page:
http://updates.html5rocks.com/2013/01/Voice-Driven-Web-Apps-Introduction-to-the-Web-Speech-API
不建议使用语音识别进行登录,因为它不是很安全.
It is not recommended to use speech recognition for login, it's not very secure.
这篇关于ASP.NET MVC 5是否支持语音识别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!