Spaces:
Running
Running
<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> | |