Spaces:
Runtime error
Runtime error
<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> |