ASRinServer / templates /index.html
JPLTedCas's picture
Update templates/index.html
8f9cdf5
raw
history blame
No virus
1.33 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>TedCas Speech Recognition Modelo Cliente-Servidor</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- Agregar un logotipo desde una URL -->
<img src="https://tse4.mm.bing.net/th?id=OIP.KUs6tP0b1rKLZ5lBq7JAEQHaDS&pid=Api&P=0&h=180" alt="Logotipo de la empresa" width="300" >
<h1>TedCas Speech Recognition Modelo Cliente-Servidor</h1>
<p>{{ recognized_text }}</p>
<div id="controls">
<button id="recordButton">Record</button>
<button id="pauseButton" disabled>Pause</button>
<button id="stopButton" disabled>Stop</button>
</div>
<div id="formats">Format: start recording to see sample rate</div>
<p><strong>Recordings:</strong></p>
<ol id="recordingsList"></ol>
<!-- inserting these scripts at the end to be able to use all the elements in the DOM -->
<script src="https://cdn.rawgit.com/mattdiamond/Recorderjs/08e7abd9/dist/recorder.js"></script>
<script src="/static/js/app.js"></script>
<!-- Agrega un cuadro de texto para mostrar la respuesta -->
<!--<input type="text" id="responseTextBox" readonly>-->
<div id="textElement">
<!-- El texto plano se mostrará aquí -->
</div>
</body>
</html>