This repository was archived by the owner on Mar 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 2.51 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 2.51 KB
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
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css"/>
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="greetings background">
<h2>Project <strong>Tessera</strong></h2>
<h1>Welcome at <strong>TESSERA</strong></h1>
<form name="uploadform" method="POST" action="video_upload.php" target="upload" enctype="multipart/form-data">
<div class="settings">
<p class="label">SETTINGS OPTIONS</p>
<div>
<label>Topic: </label>
<select name="category">
<option value="animals_merged">Animals</option>
<option value="new_people">People</option>
<option value="new_music">Music</option>
<option value="new_science">Science</option>
<option value="all">All</option>
</select>
<label style="padding-left:20px">Compression: </label>
<select name="compression">
<option>8</option>
<option>4</option>
<option>2</option>
<option>1</option>
</select>
<span class="upload_button">
<input name="file" type="file" onchange="document.forms.uploadform.submit(); onSubmit();"/>
Upload Video
</span>
</div>
</div>
<iframe name="upload" src="" frameborder="0" width="0" height="0"></iframe>
</form>
<p>Tessera is Quad Tree Strategyvideo converter. We convert your video into Mosaic High definition</p>
<p>video with your own settings specifications!</p>
</div>
<div class="preview_block">
<h2>Project <strong>Tessera</strong></h2>
<div class="background">
<img src="loader.gif" />
</div>
<video id="preview" src="" class="preview" controls></video>
</div>
</body>
</html>