f195ba5a5c
Search bar stays at top as the "command center". Download queue and extract controls follow. Results render at the bottom — the main scrolling area.
50 lines
1.5 KiB
HTML
50 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AKAI Utils</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<header>
|
|
<h1>AKAI Utils</h1>
|
|
<span class="subtitle">Sampler ISO Downloader & WAV Extractor</span>
|
|
</header>
|
|
|
|
<section id="search-section">
|
|
<div class="search-bar">
|
|
<input type="text" id="search-query" placeholder="Search archive.org AKAI samplers..."
|
|
value="subject:akai AND subject:sampler">
|
|
<input type="text" id="search-filter" placeholder="Extra filter (e.g. vocal, drum)">
|
|
<button id="search-btn">Search</button>
|
|
<button id="search-dl-all">Download Top 10</button>
|
|
</div>
|
|
<div id="search-status"></div>
|
|
</section>
|
|
|
|
<section id="download-section">
|
|
<h2>Downloads <span id="dl-count"></span></h2>
|
|
<div id="download-queue"></div>
|
|
</section>
|
|
|
|
<section id="extract-section">
|
|
<h2>WAV Extraction</h2>
|
|
<div class="extract-controls">
|
|
<input type="text" id="extract-iso-dir" placeholder="ISO directory" value="./output/isos">
|
|
<input type="text" id="extract-wav-dir" placeholder="WAV output directory" value="./output/wavs">
|
|
<button id="extract-btn">Extract</button>
|
|
</div>
|
|
<div id="extract-status"></div>
|
|
</section>
|
|
|
|
<section id="results-section">
|
|
<h2>Results <span id="result-count"></span></h2>
|
|
<div id="search-results"></div>
|
|
</section>
|
|
</div>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|