TTS2 / web /index.html
Moustafa1111111111
Add all application files and TTS submodule
7651129
raw
history blame contribute delete
599 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Text to Speech</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Text to Speech</h1>
<textarea id="inputText" rows="5" cols="50"></textarea><br><br>
<button id="convertButton">Convert to Speech</button>
<div id="status"></div>
<div id="audioOutput" style="margin-top: 20px;">
<a id="downloadLink" href="#" download="output.wav" style="display: none;">Download Audio</a>
<audio id="audioPlayer" controls style="display: none;"></audio>
</div>
<script src="script.js"></script>
</body>
</html>