Files
fast-srt-subtitle/index.html

48 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2019-12-13 15:56:36 +08:00
<html>
2020-03-15 02:00:59 +09:00
<title>Fast and Dirty Captioner</title>
2019-12-13 15:56:36 +08:00
2020-03-15 02:00:59 +09:00
<head>
<meta charset="UTF-8" />
2019-12-13 15:56:36 +08:00
2020-03-15 02:00:59 +09:00
<style>
.video {
width: 960px;
2019-12-13 15:56:36 +08:00
}
2020-03-15 02:00:59 +09:00
</style>
</head>
2019-12-13 15:56:36 +08:00
2020-03-15 02:00:59 +09:00
<body>
<p>選取字幕檔以及影片檔案開始製作 SRT</p>
<label>
<span>選擇字幕檔案:</span>
<input
id="srtFile"
type="file"
name="srtFile"
placeholder="點擊上傳字幕檔"
/>
</label>
<label>
<span>選擇影片檔案:</span>
<input
id="videoFile"
type="file"
name="videoFile"
placeholder="點擊上傳影片檔"
/>
</label>
<p>
K: 下一行開始 | L: 這一行提前結束 | I: 前捲一行 | O: 後捲一行 | U: 倒帶 2
秒 | P: 前進 2 秒 | Q: 製作 SRT 檔
2020-03-15 02:00:59 +09:00
</p>
<p>
K: Next Line | L: This Line Ends Early | I: Scroll Back | O: Scroll
Forward | U: Rewind | P: Forward | Q: Make SRT File
</p>
<p id="status">Test Text.</p>
<textarea id="textArea" rows="10" cols="80">預設的字。</textarea>
<video class="video" id="video" controls></video>
</body>
<script src="main.js"></script>
2019-12-13 15:56:36 +08:00
</html>