30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Ben's Amazing YouTube Downloader</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="Instructions">
|
|
Videos to record (seperate different videos by new lines):
|
|
</div>
|
|
|
|
<div id="Input">
|
|
<textarea id="VideosToRecord"></textarea>
|
|
</div>
|
|
|
|
<div id="ResolvedVideoContainer"></div>
|
|
|
|
<!-- <button id="Download">Download</button> -->
|
|
<!-- <input type="checkbox" id="AudioOnly">Only Download Audio (.mp3) -->
|
|
|
|
<script src="youtubedombuilder.js"></script>
|
|
<script src="index.js"></script>
|
|
<div id="copyright">Copyright Benjamin Kyd© <script type="text/javascript">document.write(new Date().getFullYear())</script></div>
|
|
</body>
|
|
</html>
|