This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
forked from eliranmoyal/electron-youtube-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.95 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
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<title>Electron Youtube-dl Downloader</title>
</head>
<body>
<div class="container">
<h1>Youtube-dl downloader</h1>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Download a video or playlist..</h3>
</div>
<div class="panel-body">
<form class="form-inline">
<div class="form-group">
<input type="text" id="downloadUrl" class="form-control" placeholder="Video link"/>
<input type="button" id="addDownload" class="btn btn-primary" value="Start" />
</div>
</form>
</div>
</div>
<h2>PlayList Status</h2>
<div id="ListData">
<p id="listStatus"></p>
<p id="listProgress"></p>
</div>
<h2>Video Download Status</h2>
<div id="downloadData">
<div id="downloadStatus">
<p id="videoNumber">
<p id="videoName">
</div>
<div id="downloadProgress" style="display:none;">
Percentage:
<!-- <p id="percentage"></p> -->
<div class="progress">
<div id="percentage" class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
</div>
</div>
ETA:
<p id="ETA"></p>
<p id="converting"></p>
</div>
</div>
<p id="progress">
</p>
</div>
<script>window.$ = window.jQuery = require('./js/jquery-2.1.4.min.js');</script>
<script src="runner.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>