-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
71 lines (66 loc) · 2.72 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
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="js/vue.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/v2c.css">
<title>视频转字符画</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FZ2FSZNF5C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FZ2FSZNF5C');
</script>
</head>
<body style="padding-top: 0px;">
<div class="album py-5" id="app">
<div class="container">
<div class="row">
<div class="col-md-12">
<button class="btn btn-primary" onclick="window.location.href='video.html'">视频转字符画</button>
<button class="btn btn-primary" onclick="window.location.href='camera.html'">相机流转字符画</button>
<button class="btn btn-primary" onclick="window.location.href='screen.html'">屏幕捕获</button>
</div>
<div class="col-md-12">
<h4>说明</h4>
<li>
不支持 IE 浏览器,请使用 Chrome 或 Firefox 等现代浏览器访问。
</li>
<li>
字符集长度最好可以被 256 整除,如:16、32、64、128 等。
</li>
<li>
支持的输入视频文件类型视浏览器而定,最好使用 mp4 格式。
</li>
<li>
因为浏览器限制,生成过程中请不要切换页面,否则浏览器会暂停生成任务。
</li>
<li>
生成卡顿或浏览器卡死请适当降低输出高宽度,彩色 GIF 与灰度 GIF 的资源消耗相同。
</li>
<li>
不同机器、不同浏览器的渲染效果可能有差别。
</li>
<li>
相机流转字符画需要相机权限,否则无法使用。
</li>
<li>
所有操作均在本地完成,无需网络。唯一的网络请求为浏览量统计,断网也不影响使用功能。
</li>
<li>
有意见或建议,可以在 <a href="https://github.com/MeiK2333/Video2Char/issues" target="_blank">Github Issues</a> 提出或联系
<a href="mailto: meik2333@gmail.com">meik2333@gmail.com</a>,最好不要在 B 站,因为我十天半个月不见得上一次 B 站。
</li>
</div>
</div>
</div>
</div>
</body>
<script src="js/jquery-3.5.1.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</html>