Spaces:
Runtime error
Runtime error
File size: 849 Bytes
756e034 |
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 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>YCSEP Viewer</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.5/css/jquery.dataTables.min.css">
<script src="https://cdn.datatables.net/1.13.5/js/jquery.dataTables.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<h2>YCSEP Audio Dataset Viewer</h2>
<input type="text" id="searchBox" placeholder="Search text..." style="width:300px; margin-bottom:10px;">
<table id="resultsTable" class="display" style="width:100%">
<thead>
<tr>
<th>ID</th><th>Channel</th><th>Video ID</th><th>Speaker</th><th>Start</th><th>End</th><th>Upload Date</th><th>Text</th><th>POS</th><th>Audio</th>
</tr>
</thead>
<tbody></tbody>
</table>
</body>
</html>
|