-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
62 lines (62 loc) · 2.88 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml"/>
<title>PDF to WebM</title>
<script type="module" src="/main.js"></script>
</head>
<body>
<h1><img src="/favicon.svg" alt="webpage icon">PDF to WebM</h1>
<p>本サービスはWebブラウザ上でPDFをMP4あるいはWebM動画に変換するサービスです。</p>
<div><label for="file">PDFファイルを指定してください</label><input name="file" id="file" type="file" accept="application/pdf" /></div>
<p>PDFの解像度は<span id="input_resolution">N/A</span>です。</p>
<p>出力動画の解像度は<span id="output_resolution">N/A</span>です。</p>
<div>
<label for="format">フォーマット</label>
<select name="format" id="format">
<option value="webm">WebM</option>
<option value="mp4" selected>MP4</option>
</select>
</div>
<div>
<label for="resolution">倍率</label>
<select name="resolution" id="resolution">
<option value="original">1倍</option>
<option value="double">2倍</option>
<option value="720" selected>720p</option>
<option value="1080">1080p</option>
<option value="1440">1440p</option>
<option value="2160">2160p</option>
</select>
</div>
<div>
<label for="quality">品質</label>
<select name="quality" id="quality">
<option value="low">low</option>
<option value="normal" selected>normal</option>
<option value="best">best</option>
</select>
</div>
<div>
<label for="interval">ページ送り間隔</label>
<select name="interval" id="interval">
<option value="1">1秒 UnaSlides向け</option>
<option value="2" selected>2秒 VRC-LT向け</option>
</select>
</div>
<div><input name="run" id="run" type="button" value="変換開始"/></div>
<div><progress name="progress" id="progress" value="0" style="width:360px"></progress></div>
<label for="logtext">log</label>
<div><textarea name="logtext" id="logtext" cols="104" rows="10" readonly></textarea></div>
<h2>注意点</h2>
<ol>
<li>本サービスは動作を保証せず、成果物に対して一切の責任を負いません。</li>
<li>Microsoft Edgeの"強化されたセキュリティ"を本サイトに適用すると処理速度が低下します。<a href="https://learn.microsoft.com/ja-jp/deployedge/microsoft-edge-security-browse-safer">MSサイトのドキュメント</a>を読み、例外に追加することを試してみてください。</li></li>
</ol>
<footer>
不具合や改善点の報告は<a href="https://github.com/vrc-lt/pdf2webm/">Github</a>までお問い合わせください。
</footer>
</body>
</html>