-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
66 lines (53 loc) · 2.48 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
65
66
<html>
<head>
<link rel="icon" href="images/icon.ico">
</head>
<body>
<h1 align ='center'>Stream or Not</h1>
<h2 align='center' style="color:purple">Is your video strategy up a creek?</h2>
<h3>Test your video!</h3>
<form action = "test.html">
<b>Video url:</b>
<textarea cols="150" rows="1" name="video">https://res.cloudinary.com/streamornot/video/upload/sp_hd/v1565685788/rbsp_launch_720p_gz9zfm_dmaijg.m3u8</textarea><br/>
<p>
<i>Optional:</i><br/>
Should Streaming Player be Responsive?
<input type="radio" name="resp" value = "false" >false</option>
<input type="radio" name="resp" value = "true" checked>true</option>
<br/>
Additional Images to load [0-99]: <input name ="imagecount" type = 'number' value="0"><br/>
Images delivered HTTP2 (default false):
<input type="radio" name="http2" value = "false" checked>false</option>
<input type="radio" name="http2" value = "true">true</option>
<br/>
Run extra JavaScript in the background:
<input type="radio" name="js" value = "false" checked>false</option>
<input type="radio" name="js" value = "true" >true</option>
<br/>
</p>
<p>
HTML Attributes to add:<br/>
Controls<input type="radio" name="controls" value = "true" checked>true</option>
<input type="radio" name="controls" value = "false" >false</option>
<br/>
Preload:<input type="radio" name="preload" value = "auto"checked>auto</option>
<input type="radio" name="preload" value = "metadata" >metadata</option>
<input type="radio" name="preload" value = "none" >none</option>
<br/>
Poster<input type="radio" name="poster" value = "true" >true</option>
<input type="radio" name="poster" value = "false" checked>false</option>
<br/>
Width: <input name ="width" type = 'number' value="1080"><br/>
Height: <input name ="height" type = 'number' value=""><br/>
<br/>
</p>
<input type="submit">
</form>
Questions? <a href="https://github.com/dougsillars/StreamOrNot">Check out the ReadMe!</a><br/>
<br/>
An Open Source project created by <a href='https://dougsillars.com'>Doug Sillars</a> <br/>
<a href="https://github.com/dougsillars/StreamOrNot">Comments and suggestions encouraged!</a>
<br/>
Test the quality of your video with <a href='https://www.streamclarity.com'>Stream Clarity</a>
</body>
</html>