-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
152 lines (133 loc) · 3.78 KB
/
index.html
File metadata and controls
152 lines (133 loc) · 3.78 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>listen - minimal audio transcription</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: #f5f5f5;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
max-width: 700px;
background: white;
border-radius: 8px;
padding: 40px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
h1 {
font-size: 3em;
margin-bottom: 10px;
color: #667eea;
}
.tagline {
font-size: 1.2em;
color: #666;
margin-bottom: 30px;
}
.install {
background: #f5f5f5;
padding: 20px;
border-radius: 5px;
margin: 20px 0;
font-family: 'Courier New', monospace;
font-size: 0.9em;
}
.install code {
color: #667eea;
}
.features {
margin: 30px 0;
}
.features ul {
list-style: none;
padding: 0;
}
.features li {
padding: 8px 0;
padding-left: 25px;
position: relative;
}
.features li:before {
content: "✓";
position: absolute;
left: 0;
color: #667eea;
font-weight: bold;
}
.cta {
margin-top: 30px;
text-align: center;
}
.btn {
display: inline-block;
padding: 12px 30px;
background: #667eea;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: 500;
transition: background 0.3s;
}
.btn:hover {
background: #5568d3;
}
footer {
margin-top: 40px;
text-align: center;
color: #999;
font-size: 0.9em;
}
footer a {
color: #667eea;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h1>listen</h1>
<p class="tagline">minimal audio transcription tool</p>
<div class="install">
<strong>Mac/Linux:</strong><br>
<code>brew tap gmoqa/listen</code><br>
<code>brew install listen</code>
<br><br>
<strong>Arch Linux:</strong><br>
<code>yay -S listen</code>
<br><br>
<strong>Termux (Android):</strong><br>
<code>curl -sSL https://raw.githubusercontent.com/gmoqa/listen/main/install-termux.sh | bash</code>
</div>
<div class="features">
<ul>
<li>Local-first: all processing on your device</li>
<li>Simple: one command to transcribe</li>
<li>Multi-language support (50+ languages)</li>
<li>Audio file transcription (mp3, wav, m4a, flac)</li>
<li>Auto-stop with silence detection</li>
<li>HTTP API server mode</li>
</ul>
</div>
<div class="cta">
<a href="https://github.com/gmoqa/listen" class="btn">View on GitHub</a>
</div>
<footer>
<p>local audio transcription</p>
</footer>
</div>
</body>
</html>