-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 2.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>LinTO</title>
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
<script src="config.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
</head>
<body>
<h1><img src="logo-linagora.png" id="logo-linagora-title"> <span>LinTO prompter</span> v1.0.3</h1>
<section>
<button id="record-button">Démarrer la transcription</button>
<button id="stop-button" disabled>Arrêter la transcription</button>
<!-- <button id="reset-button">Réafficher le placeholder</button> -->
<button id="reset-button">Reset</button>
<button id="watermark-button">Lancer le watermark</button>
<button id="dark-mode-button">Inverser les couleurs</button>
<button id="test-button">Lancer un test</button>
</section>
<!-- <section id="parameters-section">
<label for="audioSource">Audio input source: </label><select id="audioSource"></select>
</section> -->
<section>
<article id="transcription">
<div id="scroller">
<div id="force-scroll"></div>
<span id="transcription-text">
<!-- placeholder -->
</span>
<span id="transcription-partial"></span>
<div id="anchor"></div>
</div>
<div id="watermark">Transcription par LinTO.ai <img id="logo-linto-inline" src="linto-only.svg" />, IA Open Source par <img
src="logo-linagora.png" id="logo-linagora-inline"></div>
</article>
</section>
<template id="placeholder">
<b> Inauguration SOFINS 2023 - Allocution de Benoît de Saint Sernin </b>
<br />
<div style="font-size: 0.8em;">Transcription par LinTO <img id="logo-linto-inline" src="linto-only.svg" /> <img
src="logo-linagora.png" id="logo-linagora-inline"> – https://linto.ai</div>
</template>
<script type="module">
import Ihm from './src/ihm.js';
window.addEventListener('load', (event) => {
new Ihm();
});
</script>
</body>