This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
48 lines (48 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en" class="notranslate" translate="no">
<head>
<meta name="google" content="notranslate" />
<meta charset="UTF-8">
<meta name="description" content="Transform Video to GIF">
<meta name="keywords" content="Canvas,Video,GIF,Encode">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
<meta http-equiv="Content-Language" content="en" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link href="css/main.css" rel="stylesheet" type="text/css">
<title>ᴠɪᴅᴇᴏ ᴛᴏ GIF ᴍᴀᴋᴇʀ</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<p id="copyrightBanner">© Copyright <span id="yearDisplay"></span> | Created by <a href="https://medium.com/@geek-cc" target="_blank">the Girl with a ribbon</a> ξ(🎀˶❛◡❛) | Inspired by: 🎞 📽 <a href="https://ezgif.com/video-to-gif" target="_blank">video to animated GIF converter</a></p>
<h2>📽 Video Clip to GIF Conversion</h2>
<p><button id='inputVideoClipFileBtn' type='button' class='btn btn-outline-dark'>📤 <small>Upload Video!</small><input id='inputVideoClipFile' type='file' multiple='false' accept='.mp4,.webm,.avi,.mpeg,.flv,.mov,.3gp' /></button> ⇽ 🏁 <b>START!</b></p>
<hr>
<div id='inputVideoClipFileInfo' class='table-responsive'>
<table class="table table-bordered">
<thead>
<tr align="left">
<th colspan='2' id='inputVideoPreview' class='imageBg'>
<h3><span>🎦 Uploaded Preview</span></h3>
</th>
</tr>
</thead>
<tbody id='inputVideoDetails'></tbody>
</table>
<div id='loadingBar'></div>
</div>
<script type="text/javascript" src="js/LZWEncoder.js"></script>
<script type="text/javascript" src="js/NeuQuant.js"></script>
<script type="text/javascript" src="js/GIFEncoder.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<div id='hiddenCanvas' style='display:none'></div>
</body>
</html>