Government Polytechnic, Solapur: Micro Project Proposal On
Government Polytechnic, Solapur: Micro Project Proposal On
Government Polytechnic, Solapur: Micro Project Proposal On
Solapur
Micro project proposal on:
Client side scripting Language (22519)
Write a JavaScript program to perform Speech To Text Application.
Submitted by:
Brief introduction:
Literature review:
Speech To Text is one of the basic projects a JavaScript or any other language a
newbie programmer should probably know how to create. It is a basic project
because it entailsEvent in JavaScript. All you have to do is to create a button for
conversion operations.
Speech to text is a speech recognition software that enables the recognition and
translation of spoken language into text through computational linguistics
Proposed methodology:
1. Discussion about given topic
2. Selection of Group leader and distributions on responsibilities
3. Collection of information using different resources
4. Analysis of information performance given
5. Representation information in a required format
6. Preparation of project report
7. Computation and submission of assign task
Resources required
Ram 8GB
2 Internet Www.wikipedia.com 3
Www.studytonight.com
Www.tutorialspoint.com
Title:-
Write a JavaScript program to perform Speech To Text application.
Rationale
Literature review
Actual methodology:
1. Discussion about given topic
2. Selection of Google and distributions on responsibilities
3. Collection of information using different resources
4. Analysis of information performance given
5. Representation information in a required format
6. Preparation of project report
7. Computation and submission of assign task
Skill development:
1. Communication
2. Problem-solving
3. Teamwork
4. Adaptability
5. Creativity
6. IT skills
7. Programming skill
code
<!doctype html>
<head>
<style>
/* CSS comes here */
body {
font-family: arial;
}
button {
padding:10px;
background-color:#6a67ce;
color: #FFFFFF;
border: 0px;
cursor:pointer;
border-radius: 5px;
}
#output {
background-color:#F9F9F9;
padding:10px;
width: 100%;
margin-top:20px;
line-height:30px;
}
.hide {
display:none;
}
.show {
display:block;
}
</style>
<title>JavaScript Speech to Text</title>
</head>
<body>
<h2>JavaScript Speech to Text</h2>
<p>Click on the below button and speak something...</p>
<p><button type="button" onclick="runSpeechRecognition()">Speech to Text</button>
<span id="action"></span></p>
<div id="output" class="hide"></div>
<script>
/* JS comes here */
function runSpeechRecognition() {
// get output div reference
var output = document.getElementById("output");
// get action element reference
var action = document.getElementById("action");
// new speech recognition object
var SpeechRecognition = SpeechRecognition || webkitSpeechRecognition;
var recognition = new SpeechRecognition();
recognition.onspeechend = function() {
action.innerHTML = "<small>stopped listening, hope you are done...</small>";
recognition.stop();
}
Ram 8GB
2 Internet Www.wikipedia.com 3
Www.studytonight.com
Www.tutorialspoint.com