CSS Microproject
CSS Microproject
A PROJECT REPORT
Submitted By:
INFORMATION TECHNOLOGY
1
CERTIFICATE
4.0 Action Plan (Sequence and time required for major activity)
Sr Details of activity Planned Planne Name of
. Start d Finish Responsible
N date date Team
o.
Members
1 Selection of topic 05-10-21 06-10- ALL MAMBERS
21
5.0 Resources Required (major resources such as raw material, some machining facility,
software etc.)
Sr. Name of Specifications Qty Remarks
No. Resource/mater
ial
1 MS-Word MS-2010 1
2 Laptop AMD RYZEN 1
@3.30GHZ
3 Application 8GB RAM
Sub-lime text 1
Annexure – II
Part – B Micro-Project
Report
Speech To Text
1. Communication
2. Problem-solving
3. Teamwork
4. Adaptability
5. Creativity
6. IT skills
7. Programming skill
ACKNOWLEDGMENT
I wish to express our profound and sincere gratitude to our guide.
Thank You…..!!!!
Introduction
<head>
<style>
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>
recognition.onspeechend = function() {
action.innerHTML = "<small>stopped listening, hope you are done...</small>";
recognition.stop();
}
// This runs when the speech recognition service returns result
recognition.onresult = function(event) {
var transcript = event.results[0][0].transcript; var
confidence = event.results[0][0].confidence;
output.classList.remove("hide");
};
// start recognition
recognition.start();
}
</script>
</body>
</html>
10
Output:
11
Conclusion:
The project involves a good knowledge of JavaScript
and htmlogramming language. We learnt about html tags,
Events.
Speh to Text Recognition system Provides the ability of convert into
well understandable words Due to its ability of real time speech
conversion thi stem used in various fields like ,
Automated Car Environment, ASR System for Air traffic control uses
the hidden Markov model , Speech recognition used for route
navigation.
Reference:-
www.firewall.cx.com
www.wikipedia.com
Thank You!!!!!....