-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcleaner.html
More file actions
73 lines (63 loc) · 2.19 KB
/
cleaner.html
File metadata and controls
73 lines (63 loc) · 2.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Hyperaudio Cleaner</title>
<link rel="stylesheet" type="text/css" href="css/hyperaudio.transcript.css" />
<link rel="stylesheet" type="text/css" href="css/hyperaudio.player.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<style>
#content {
font-size: 1.3em;
padding: 10px; outline: 2px dashed #CCC;
width: 100%;
height: 200px;
}
#content:hover { outline: 2px dashed #0090D2; }
#source-video {
margin-top: 60px;
}
.controls {
padding:20px;
}
#wrapper {
overflow-y: auto;
}
#source-transcript {
top: 480px;
width: 984px;
}
#source-video {
left: 276px;
}
.hyperaudio-player .hyperaudio-player-gui {
opacity: 1;
}
</style>
</head>
<body>
<div id="wrapper">
<header id="header">
<h1>Hyperaudio Cleaner</h1>
<div id="save-button">6</div>
<div id="save-button-saving"></div>
</header>
<div class="video-hldr">
<div id="source-video" class="transcript-video"></div>
</div>
<div class="ctrl-hldr" style="position: absolute;top:360px; width: 100%; padding:16px; padding-left: 48px">
<p style="padding-left:330px"><input style="font-size:16px;width:255px" id="selected-word" type="text" name="selected-word" > <input style="font-size:16px;width:60px;margin-left:10px" id="selected-word-time" type="text" name="selected-word-time" > ms <button id="format-para" disabled="disabled" style="margin-left:200px">¶</button></p>
<p>-5s<input id="tweak-time" type="range" value="0" min="-5000" max="5000" step="100" style="width:860px; margin-left:10px">+5s</p>
</div>
<div class="transcript-pane">
<div id="source-transcript" class="transcript"><p>loading...</p></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.0.3.js"></script>
<script type="text/javascript" src="js/hyperaudio-lib.js"></script>
<script type="text/javascript" src="lib/purl.js"></script>
<script type="text/javascript" src="src/cleaner.js"></script>
<script type="text/javascript" src="/commons/tools/analytics/ga.js"></script>
</body>
</html>