36 lines
1 KiB
HTML
36 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>musicdlp</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<script src="/script.js"></script>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<input type="text" id="url" placeholder="Playlist or track URL">
|
|
<button type="button" id="guess-site-btn">Guess site</button>
|
|
</div>
|
|
<div>
|
|
<select id="site-select">
|
|
<option value="youtube" selected>YouTube</option>
|
|
<option value="soundcloud">SoundCloud</option>
|
|
<option value="yandex">Yandex Music</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label for="proxy-cb"><input type="checkbox" id="proxy-cb">Proxy</label>
|
|
</div>
|
|
<div>
|
|
<button type="button" id="items-btn">Get playlist items</button>
|
|
</div>
|
|
<div id="items-container"></div>
|
|
<div>
|
|
<button type="button" id="dl-btn">Download</button>
|
|
</div>
|
|
<div>
|
|
<pre><code id="log"></code></pre>
|
|
</div>
|
|
</body>
|
|
</html>
|