Spaces:
Running
Running
File size: 932 Bytes
3ead8a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phân loại Giọng chim Đực/Cái</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
<h1>Nhận dạng Giọng chim Đực/Cái</h1>
<p>Bấm nút "Ghi âm", tạo ra âm thanh của chim và bấm "Dừng" để xem kết quả.</p>
<div class="controls">
<button id="recordButton">Ghi âm</button>
<button id="stopButton" disabled>Dừng</button>
</div>
<div id="status">Sẵn sàng ghi âm...</div>
<div class="result-container">
<h2>Kết quả:</h2>
<div id="result">---</div>
</div>
</div>
<script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>
|