Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Audio Recorder & Transcriber</title> | |
<!-- Link to CSS --> | |
<link rel="stylesheet" href="{{ url_for('static', filename='css/chatgpt.css') }}"> | |
</head> | |
<body> | |
<div class="container"> | |
<button id="recordButton" class="record-button">Start Recording</button> | |
<audio id="audioPlayback" controls style="display: none;"></audio> | |
<button id="transcribeButton" style="display: none;">Transcribe</button> | |
<div id="transcriptionResult"></div> | |
</div> | |
<!-- Script JS --> | |
<script src="{{ url_for('static', filename='js/chatgpt.js') }}"></script> | |
</body> | |
</html> | |