-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (70 loc) · 3.85 KB
/
index.html
File metadata and controls
104 lines (70 loc) · 3.85 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<html>
<head>
<title>Viditor</title>
<meta charset="UTF-8"/>
<script src="index.js" type="text/javascript"></script>
<link href="index.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<div id="outersplash">
<div id="innersplash">
<header>
<img src="images/logo.png" alt="Viditor"/>
</header>
<hr>
<div id="blurb">
<p>
Viditor is the webapp for video editing across the internet. Viditor
streamlines the process of assembling a video by removing any issues
heavy computation or bothersome interfaces. Viditor reinvents video
editing for the internet, by providing features for connecting to
others to collaborate together on a video.
</p>
<p>
Viditor is developed from native web technologies, employing
JavaScript through both AngularJS and NodeJS to design an application
that is accessible from any system on any device. We want to share
Viditor, so we've deployed it as an open source project; if you are
interested in contributing to the project, you can browse through our
repository on <a href="https://github.com/arcym/viditor">github</a>!
</p>
</div>
<hr>
<div id="features">
<div id="featurette">
<i class="fa fa-users fa-3x"></i>
<b>Realtime
Collab</b>
Viditor connects users so they can collaborate together to
edit their videos. Any change a user applies to a video is
instantly synchronized with all other users.
</div>
<div id="featurette">
<i class="fa fa-desktop fa-3x"></i>
<b>Platform
Agnostic</b>
Viditor is accesible from absolutely any system on any device
that is equipped with a modern browser. No third party plugins
were abused during development.
</div>
<div id="featurette">
<i class="fa fa-cloud fa-3x"></i>
<b>Cloud
Based</b>
Viditor saves all uploaded files on the cloud. A user can
upload a video from anywhere, and access it from everywhere.
All users are given four gigabytes of the cloud.
</div>
</div>
<hr>
<footer>
<small>
The photo of Chattanooga
was provided by Alex Spanjer.
Thanks a gazillion, Alex!!
</small>
</footer>
</div>
</div>
</body>
</html>