forked from electron/electron-quick-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 2.4 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
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CRT-YT Down</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css.css">
</head>
<body>
<h1>
CRT-YT Audio Down
</h1>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<form>
<div class="checkbox">
<label>
<input type="checkbox" id="keep-video" name="keep-video" value="-k"> Keep video?
</label>
</div>
<div class="form-group">
<label for="yt-url">Url:</label>
<input type="url" class="form-control" id="yt-url" name="yt-url" placeholder="Video URL" required>
</div>
<div class="form-group">
<label for="yt-audio-video">Audio/Video</label>
<input type="text" class="form-control" id="yt-audio-video" name="yt-audio-video" value="--extract-audio">
</div>
<div class="form-group">
<label for="yt-format">Audio Format</label>
<input type="text" class="form-control" id="yt-format" name="yt-format" value="--audio-format=mp3">
</div>
<div class="form-group">
<label for="yt-audio-quality">Audio Format</label>
<input type="text" class="form-control" id="yt-audio-quality" name="yt-audio-quality" value="--audio-quality=7">
</div>
<div class="form-group">
<label for="yt-check-certificate">Certificate</label>
<input type="text" class="form-control" id="yt-check-certificate" name="yt-check-certificate" value="--no-check-certificate">
</div>
<div class="form-group">
<label for="yt-output-path-template">Path Template</label>
<input type="text" class="form-control" id="yt-output-path-template" name="yt-output-path-template" value="-o output\\%(title)s-%(id)s.%(ext)s">
</div>
<button type="reset" class="btn btn-default">RESET</button>
<button type="submit" class="btn btn-primary">GET IT!</button>
</form>
</div>
</div>
</div>
</body>
<script async="" src="client.js"></script>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>