-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 1.42 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="data:;base64,iVBORw0KGgo=" />
<title>Spotify to YouTube to Text/CSV & Radio4000</title>
<link rel="stylesheet" href="./src/index.css" />
<script type="module" src="./src/main.js"></script>
</head>
<body>
<header>
<h1>Convert music playlists →<br />Text, CSV, Spotify, YouTube & Radio4000.</h1>
<ul>
<li>Convert Spotify playlists to YouTube videos</li>
<li>Find matching YouTube videos from text playlists</li>
</ul>
<p>And then you could</p>
<ul>
<li>Save as .txt or .csv files for easy storage and sharing</li>
<li>Pipe to <code>yt-dlp</code> to download audio locally</li>
<li>Import your results to Radio4000</li>
</ul>
</header>
<main>
<tab-container>
<button type="button" id="tab-one" role="tab" aria-selected="true">Spotify to YouTube</button>
<button type="button" id="tab-two" role="tab" tabindex="-1">Text to YouTube</button>
<div role="tabpanel" aria-labelledby="tab-one">
<spotify-to-youtube></spotify-to-youtube>
</div>
<div role="tabpanel" aria-labelledby="tab-two" hidden>
<text-to-youtube></text-to-youtube>
</div>
</tab-container>
</main>
<footer>
<p>
<a href="https://github.com/oskarrough/spotify-to-youtube">View source</a>
</p>
</footer>
</body>
</html>