-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (111 loc) · 4.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Esperanto to Polish Transcription</title>
<style>
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #f4f4f4;
}
textarea,
#outputField {
width: 70%;
margin: 20px 0;
padding: 15px;
border-radius: 8px;
border: 1px solid #ccc;
background-color: #fff;
resize: vertical;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
min-height:60px
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #4CAF50;
color: white;
cursor: pointer;
transition: background-color 0.3s, box-shadow 0.3s;
}
button:hover {
background-color: #388E3C;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
select {
padding: 10px;
border-radius: 5px;
border: 1px solid #ddd;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
body {
padding: 5px;
}
textarea, #outputField {
width: 100%; /* Full width on small screens */
margin: 10px 0;
padding: 10px;
}
button {
padding: 25px 40px; /* Larger buttons for easier tapping */
}
select {
padding: 25px; /* Larger dropdown for easier tapping */
}
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1 , maximum-scale=1.0">
</head>
<body>
<h1>Esperanta fonetika transskribilo</h1>
<textarea id="inputField"
placeholder="Esperanta teksto">Saluton, mi estas komputila voĉo kreita per transliterumi Esperanton al fonetika pola lingvo. Eĥoŝanĝo ĉiuĵaŭde. Ŝi ŝerce serĉas sorĉan ŝancon. Kara Karlo klare korektas kolekton de ĝustaj gustoj. Uzu la ligilon sube kaj testu ĝin mem!</textarea>
<label for="rulesSelect">Agordoj:</label>
<select id="rulesSelect">
<option value="elevenlabs">ElevenLabs</option>
<option value="transcription_rules">Vocx</option>
<!-- Add other options as needed -->
</select>
<p>
<button id="transcribeButton">Transskribu!</button>
</p>
<div id="outputField"></div>
<button id="copyButton">📋 Kopiu!</button>
<script src="transcribe.js"></script>
<script>
document.getElementById('copyButton').addEventListener('click', function () {
var text = document.getElementById('outputField').innerText;
navigator.clipboard.writeText(text).then(function () {
console.log('Text copied to clipboard');
}).catch(function (err) {
console.log('Error in copying text: ' + err);
});
});
</script>
<h2>Elevenlabs</h2>
<p><a href="https://elevenlabs.io/">elevenlabs.io</a> bone funkcias kun la voĉoj "Bella", "Patrick", "Clyde",
"Thomas" kaj "Jeremy". Ofte indas elekti Versio 1 de Elevenlabs.</p>
<h2>Ligiloj</h2>
<ul>
<li>Aliaj iloj por komputilaj voĉoj en Esperanto
<ul>
<li><a href="https://parol.martinrue.com/">parol.martinrue.com</a></l>
<li><a href="https://mallonge.net/evi">Envochigo de skriba teksto</a></l>
</ul>
</li>
<li>La ideo de la sistemo venas el <a href="https://github.com/martinrue/vocx">github.com/martinrue/vocx</a></li>
<li>Retejo de nia grupo: <a href="https://parolteknologio.github.io/">parolteknologio.github.io/</a></li>
<li>La grupo <a href="https://t.me/+rkl0bSUR0jQxNzY0">Parolteknologio</a> ĉe Telegramo </li>
<li>Help plibonigi la retejon ĉe GitHub: <a href="https://github.com/parolteknologio/fonetika-transskribilo">github.com/parolteknologio/fonetika-transskribilo</a></li>
</ul>
</body>
</html>