-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
1012 lines (971 loc) · 41.6 KB
/
index.html
File metadata and controls
1012 lines (971 loc) · 41.6 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>open-wispr — Free Voice Dictation for macOS (100% Local, No Cloud)</title>
<meta name="description" content="The best free speech-to-text app for Mac. Hold a key, speak, release — text appears instantly. Powered by Whisper AI, runs 100% on-device. No cloud, no accounts, no subscription. Open source.">
<meta name="keywords" content="voice dictation, speech to text, macOS, whisper, on-device, privacy, open source, Apple Silicon, voice typing, dictation app">
<meta name="author" content="human37">
<link rel="canonical" href="https://open-wispr.pages.dev/">
<meta property="og:type" content="website">
<meta property="og:url" content="https://open-wispr.pages.dev/">
<meta property="og:title" content="open-wispr — Free Voice Dictation for macOS (100% Local)">
<meta property="og:description" content="The best free speech-to-text for Mac. Hold a key, speak, release — text appears instantly. Whisper AI, 100% on-device. No cloud, no subscription.">
<meta property="og:image" content="https://open-wispr.pages.dev/og.png">
<meta property="og:site_name" content="open-wispr">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="open-wispr — Free Voice Dictation for macOS (100% Local)">
<meta name="twitter:description" content="The best free speech-to-text for Mac. Hold a key, speak, release — text appears instantly. Whisper AI, 100% on-device. No subscription.">
<meta name="twitter:image" content="https://open-wispr.pages.dev/og.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "open-wispr",
"operatingSystem": "macOS",
"applicationCategory": "UtilitiesApplication",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"description": "Free, private voice-to-text for macOS. Powered by Whisper AI, runs entirely on-device.",
"url": "https://open-wispr.pages.dev/",
"downloadUrl": "https://open-wispr.pages.dev/#install",
"softwareVersion": "0.9.5",
"author": { "@type": "Organization", "name": "human37" },
"license": "https://opensource.org/licenses/MIT"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Is open-wispr really free?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, completely free and open source under the MIT license. No subscriptions, no usage limits, no premium tier."
}
},
{
"@type": "Question",
"name": "Does any audio or text leave my computer?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. Everything runs 100% on-device. Audio is recorded to a temporary file, transcribed locally by Whisper, and the file is immediately deleted. There are zero network requests."
}
},
{
"@type": "Question",
"name": "How does this compare to VoiceInk, Whisper Flow, or Superwhisper?",
"acceptedAnswer": {
"@type": "Answer",
"text": "open-wispr is the free, MIT-licensed alternative. VoiceInk ($39.99, GPLv3) is the closest — also open source and local — but adds AI features and custom dictionaries. Wispr Flow ($15/mo) uses cloud AI. Superwhisper ($8.49/mo) is local but closed-source. open-wispr gives you the same core push-to-talk Whisper experience with zero cost and the most permissive license."
}
},
{
"@type": "Question",
"name": "What Macs are supported?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Any Mac with Apple Silicon (M1 or later) running macOS 13+. Whisper uses Metal GPU acceleration for fast inference. Intel Macs are not supported."
}
},
{
"@type": "Question",
"name": "How accurate is it compared to Apple Dictation?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Significantly better. Whisper handles punctuation, technical jargon, code terms, and accented speech far more reliably than Apple's built-in dictation. It supports 99 languages."
}
},
{
"@type": "Question",
"name": "Can I use it in any app?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. open-wispr types transcribed text at your cursor position, so it works in any application — editors, browsers, terminals, Slack, email, and more."
}
}
]
}
</script>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Crect width='120' height='120' rx='24' fill='%237C3AED'/%3E%3Cg transform='translate(60,60)'%3E%3Crect x='-38' y='-10' width='12' height='20' rx='4' fill='%23fff'/%3E%3Crect x='-19' y='-24' width='12' height='48' rx='4' fill='%23fff'/%3E%3Crect x='-6' y='-34' width='12' height='68' rx='4' fill='%23fff'/%3E%3Crect x='7' y='-24' width='12' height='48' rx='4' fill='%23fff'/%3E%3Crect x='26' y='-10' width='12' height='20' rx='4' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E">
<link rel="apple-touch-icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Crect width='120' height='120' rx='24' fill='%237C3AED'/%3E%3Cg transform='translate(60,60)'%3E%3Crect x='-38' y='-10' width='12' height='20' rx='4' fill='%23fff'/%3E%3Crect x='-19' y='-24' width='12' height='48' rx='4' fill='%23fff'/%3E%3Crect x='-6' y='-34' width='12' height='68' rx='4' fill='%23fff'/%3E%3Crect x='7' y='-24' width='12' height='48' rx='4' fill='%23fff'/%3E%3Crect x='26' y='-10' width='12' height='20' rx='4' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E">
<meta name="color-scheme" content="light dark">
<script>
(function(){
var t=localStorage.getItem('theme');
if(!t)t=window.matchMedia('(prefers-color-scheme:dark)').matches?'dark':'light';
document.documentElement.setAttribute('data-theme',t);
})();
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,500;9..40,700;9..40,800&family=IBM+Plex+Mono:wght@400;500&display=swap" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link href="https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,500;9..40,700;9..40,800&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet"></noscript>
<style>
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
--bg:#FDFCF8;
--surface:#fff;
--border:#1a1a1a;
--text:#1a1a1a;
--muted:#6b6b6b;
--accent:#7C3AED;
--accent-light:#EDE9FE;
--highlight:#E9D5FF;
--shadow:3px 3px 0 var(--border);
--shadow-hover:1px 1px 0 var(--border);
--bw:2px;
--mono:'IBM Plex Mono',monospace;
--sans:'DM Sans',sans-serif;
--nav-bg:rgba(253,252,248,.94);
--code-bg:#F5F3EE;
--subtle-border:#e5e5e5;
--header-bg:#1a1a1a;
--header-text:#FDFCF8;
--sp:80px;
}
[data-theme="dark"]{
--bg:#0f0f0f;
--surface:#1a1a1a;
--border:#333;
--text:#e5e5e5;
--muted:#999;
--accent:#A78BFA;
--accent-light:#1e1633;
--highlight:#2e1f4d;
--shadow:3px 3px 0 #000;
--shadow-hover:1px 1px 0 #000;
--nav-bg:rgba(15,15,15,.94);
--code-bg:#161616;
--subtle-border:#2a2a2a;
--header-bg:#222;
--header-text:#e5e5e5;
}
html{scroll-behavior:smooth;scroll-padding-top:72px;overflow-x:hidden}
body{
font-family:var(--mono);
background:var(--bg);color:var(--text);
line-height:1.65;font-size:14px;
overflow-x:hidden;
}
a{color:var(--accent);text-decoration:none;font-weight:500}
a:hover{text-decoration:underline;text-underline-offset:3px}
/* SHARED */
.section-tag{
font-size:11px;font-weight:500;text-transform:uppercase;
letter-spacing:.12em;color:var(--accent);margin-bottom:16px;
}
h2{
font-family:var(--sans);
font-size:clamp(26px,4.5vw,42px);font-weight:800;
letter-spacing:-.02em;line-height:1.2;margin-bottom:40px;
}
.card{
border:var(--bw) solid var(--border);
box-shadow:var(--shadow);background:var(--surface);
transition:box-shadow .12s,transform .12s;
}
.card:hover{box-shadow:var(--shadow-hover);transform:translate(1px,1px)}
.card-header{
background:var(--header-bg);color:var(--header-text);
padding:10px 20px;font-size:11px;font-weight:500;
text-transform:uppercase;letter-spacing:.1em;
border-bottom:var(--bw) solid var(--border);
display:flex;align-items:center;justify-content:space-between;
}
.card-header span{opacity:.5}
/* NAV */
nav{
position:fixed;top:0;left:0;right:0;z-index:100;
background:var(--nav-bg);
border-bottom:var(--bw) solid var(--border);
backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
}
.nav-inner{
max-width:1200px;margin:0 auto;padding:14px 40px;
display:flex;align-items:center;justify-content:space-between;
}
.logo{
font-family:var(--sans);font-size:18px;font-weight:800;
color:var(--text);display:flex;align-items:center;gap:10px;
letter-spacing:-.02em;white-space:nowrap;
}
.logo-icon{flex-shrink:0}
.nav-links{display:flex;gap:24px;align-items:center}
.nav-right{display:flex;align-items:center;gap:16px}
.nav-links a{
color:var(--text);font-size:12px;font-weight:500;
text-transform:uppercase;letter-spacing:.08em;
text-decoration:none;padding:4px 0;
border-bottom:var(--bw) solid transparent;
transition:border-color .15s;
}
.nav-links a:hover{border-color:var(--accent);text-decoration:none}
/* HERO */
.hero{max-width:1200px;margin:0 auto;padding:96px 40px var(--sp)}
.tag{
display:inline-block;
background:var(--accent-light);color:var(--accent);
border:var(--bw) solid var(--border);
padding:5px 14px;font-size:11px;font-weight:500;
text-transform:uppercase;letter-spacing:.1em;
margin:16px 0 0;
}
h1{
font-family:var(--sans);
font-size:clamp(40px,7.5vw,76px);font-weight:800;
letter-spacing:-.03em;line-height:1.1;margin-bottom:36px;
}
.hero-sub{
font-size:15px;color:var(--muted);
max-width:680px;line-height:1.8;margin-bottom:32px;
}
.install-block{width:fit-content;max-width:100%;margin-bottom:16px}
.install-body{
padding:20px;
display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.install-body code{
font-family:var(--mono);font-size:13px;
color:var(--text);white-space:nowrap;overflow-x:auto;
display:block;line-height:1.5;
}
.copy-btn{
font-family:var(--mono);
background:var(--accent);color:#fff;
border:var(--bw) solid var(--border);
padding:8px 16px;font-size:11px;font-weight:500;
text-transform:uppercase;letter-spacing:.08em;
cursor:pointer;flex-shrink:0;
transition:background .12s;
}
.copy-btn:hover{background:#6D28D9}
[data-theme="dark"] .copy-btn:hover{background:#8B5CF6}
.theme-toggle{
background:none;border:var(--bw) solid var(--border);
width:32px;height:32px;cursor:pointer;
display:flex;align-items:center;justify-content:center;
color:var(--text);transition:border-color .15s;
flex-shrink:0;
}
.theme-toggle:hover{border-color:var(--accent)}
.theme-toggle svg{width:16px;height:16px}
.theme-toggle .icon-moon{display:none}
[data-theme="dark"] .theme-toggle .icon-sun{display:none}
[data-theme="dark"] .theme-toggle .icon-moon{display:block}
.menu-toggle{
display:none;background:none;border:var(--bw) solid var(--border);
width:32px;height:32px;cursor:pointer;
align-items:center;justify-content:center;
color:var(--text);flex-shrink:0;
}
.menu-toggle svg{width:16px;height:16px}
.menu-toggle .icon-close{display:none}
.menu-toggle.open .icon-menu{display:none}
.menu-toggle.open .icon-close{display:block}
.tip-row{
display:flex;align-items:center;gap:12px;
font-size:12px;color:var(--muted);
letter-spacing:.04em;
}
.tip-row a{
color:var(--accent);font-weight:500;
display:inline-flex;align-items:center;gap:5px;
}
/* DEMO */
.demo-inline{margin-bottom:32px;max-width:680px}
.demo-editor{
padding:14px 0;height:68px;
font-family:var(--mono);font-size:13px;line-height:1.7;
overflow:hidden;
display:flex;align-items:baseline;gap:10px;
}
.demo-hint{
color:var(--muted);font-size:12px;font-style:italic;
flex-shrink:0;display:inline-flex;align-items:center;gap:8px;
}
.demo-hint .waveform{display:inline-flex;align-items:center;gap:2px;height:14px}
.demo-hint .waveform span{
display:block;width:3px;background:var(--accent);
animation:wave .4s ease-in-out infinite alternate;
}
.demo-hint .waveform span:nth-child(1){height:4px;animation-delay:0s}
.demo-hint .waveform span:nth-child(2){height:8px;animation-delay:.06s}
.demo-hint .waveform span:nth-child(3){height:14px;animation-delay:.12s}
.demo-hint .waveform span:nth-child(4){height:8px;animation-delay:.18s}
.demo-hint .waveform span:nth-child(5){height:4px;animation-delay:.24s}
@keyframes wave{0%{transform:scaleY(.3)}100%{transform:scaleY(1)}}
.demo-output{
flex:1;min-width:0;
border-left:3px solid var(--accent);
padding-left:12px;
opacity:0;transition:opacity .2s;
}
.demo-output.visible{opacity:1}
.demo-text{white-space:pre-wrap}
.demo-cursor{
display:inline-block;width:2px;height:1.1em;
background:var(--accent);vertical-align:text-bottom;
margin-left:1px;animation:blink 1s step-end infinite;
}
.demo-cursor.typing{animation:none;opacity:1}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}
/* STEPS */
.how{max-width:1200px;margin:0 auto;padding:var(--sp) 40px}
.steps-row{
display:grid;grid-template-columns:repeat(3,1fr);gap:0;
border:var(--bw) solid var(--border);box-shadow:var(--shadow);
}
.step-card{
padding:32px 28px;background:var(--surface);
border-right:var(--bw) solid var(--border);
}
.step-card:last-child{border-right:none}
.step-num{
font-family:var(--sans);font-size:44px;font-weight:800;
line-height:1;margin-bottom:14px;color:var(--accent);
}
.step-title{
font-size:13px;font-weight:500;text-transform:uppercase;
letter-spacing:.08em;margin-bottom:10px;
}
.step-desc{font-size:13px;color:var(--muted);line-height:1.8}
/* COMPARE */
.compare{max-width:1200px;margin:0 auto;padding:var(--sp) 40px}
.compare-table{
width:100%;border-collapse:collapse;
border:var(--bw) solid var(--border);box-shadow:var(--shadow);
background:var(--surface);font-size:13px;
}
.compare-table thead th{
background:var(--header-bg);color:var(--header-text);
padding:12px 16px;font-size:11px;font-weight:500;
text-transform:uppercase;letter-spacing:.1em;text-align:left;
}
.compare-table thead th:first-child{width:1%}
.compare-table tbody td{
padding:12px 16px;border-bottom:1px solid var(--subtle-border);
vertical-align:middle;
}
.compare-table tbody tr:last-child td{border-bottom:none}
.compare-table tbody td:first-child{
font-weight:500;white-space:nowrap;color:var(--muted);
}
.compare-table .highlight{
background:var(--accent-light);
}
.compare-table .highlight td{font-weight:500}
.compare-table .check{color:var(--accent);font-weight:700}
.compare-table .muted{color:var(--muted)}
.compare-table .price-free{color:var(--accent);font-weight:700}
/* INSTALL FLOW */
.flow{max-width:1200px;margin:0 auto;padding:var(--sp) 40px}
.flow-steps{
border:var(--bw) solid var(--border);box-shadow:var(--shadow);
background:var(--surface);
}
.flow-step{
display:flex;align-items:baseline;gap:20px;
padding:18px 28px;
border-bottom:1px solid var(--subtle-border);
}
.flow-step:last-child{border-bottom:none}
.flow-num{
font-family:var(--sans);font-size:18px;font-weight:800;
color:var(--accent);flex-shrink:0;width:28px;
}
.flow-text{font-size:14px;line-height:1.8}
.flow-text strong{font-weight:500}
.flow-text code{
background:var(--code-bg);border:1px solid var(--subtle-border);
padding:2px 6px;font-size:12px;
}
/* FEATURES */
.features{max-width:1200px;margin:0 auto;padding:var(--sp) 40px}
.feature-grid{
display:grid;grid-template-columns:repeat(3,1fr);gap:0;
border:var(--bw) solid var(--border);box-shadow:var(--shadow);
}
.feature-cell{
padding:28px;background:var(--surface);
border-bottom:var(--bw) solid var(--border);
border-right:var(--bw) solid var(--border);
}
.feature-cell:nth-child(3n){border-right:none}
.feature-cell:nth-last-child(-n+3){border-bottom:none}
.feature-cell h3{
font-family:var(--sans);font-size:16px;font-weight:800;
letter-spacing:-.01em;margin-bottom:8px;
}
.feature-cell p{font-size:13px;color:var(--muted);line-height:1.8}
.feature-marker{
display:inline-block;width:8px;height:8px;
background:var(--accent);border:var(--bw) solid var(--border);
margin-right:8px;vertical-align:middle;
}
/* CONFIG */
.config{max-width:1200px;margin:0 auto;padding:var(--sp) 40px}
.config-example{
border:var(--bw) solid var(--border);box-shadow:var(--shadow);
background:var(--surface);margin-bottom:24px;max-width:480px;
}
.config-example pre{
padding:20px 24px;font-family:var(--mono);font-size:12px;
color:var(--muted);line-height:1.9;margin:0;
background:var(--code-bg);
}
.config-example pre b{color:var(--text);font-weight:500}
.config-table{
width:100%;border-collapse:collapse;
border:var(--bw) solid var(--border);box-shadow:var(--shadow);
background:var(--surface);
}
.config-table th{
background:var(--header-bg);color:var(--header-text);
padding:10px 20px;font-size:11px;font-weight:500;
text-transform:uppercase;letter-spacing:.1em;text-align:left;
}
.config-table td{
padding:14px 20px;font-size:13px;
border-bottom:1px solid var(--subtle-border);vertical-align:top;
}
.config-table tr:last-child td{border-bottom:none}
.config-table td:first-child{
font-weight:500;white-space:nowrap;width:1%;
}
.config-table td:nth-child(2){
font-family:var(--mono);font-size:12px;color:var(--accent);
}
.config-table td:nth-child(3){color:var(--muted);font-size:12px}
.config-table code{
background:var(--code-bg);border:1px solid var(--subtle-border);
padding:2px 6px;font-size:11px;
}
.config-note{
margin-top:20px;font-size:13px;color:var(--muted);line-height:1.7;
}
.config-note code{
background:var(--code-bg);border:1px solid var(--subtle-border);
padding:2px 6px;font-size:12px;
}
/* TESTIMONIAL */
.testimonial{max-width:1200px;margin:0 auto;padding:var(--sp) 40px}
.testimonial-card{
border:var(--bw) solid var(--border);box-shadow:var(--shadow);
background:var(--surface);padding:32px;max-width:640px;
}
.testimonial-quote{
font-size:15px;line-height:1.8;margin-bottom:20px;
font-style:italic;
}
.testimonial-author{
font-size:12px;font-weight:500;
text-transform:uppercase;letter-spacing:.08em;
}
.testimonial-role{font-size:12px;color:var(--muted);margin-top:2px}
/* FAQ */
.faq{max-width:1200px;margin:0 auto;padding:var(--sp) 40px}
.faq-list{
border:var(--bw) solid var(--border);box-shadow:var(--shadow);
background:var(--surface);
}
.faq-item{border-bottom:1px solid var(--subtle-border)}
.faq-item:last-child{border-bottom:none}
.faq-item summary{
padding:18px 28px;font-size:14px;font-weight:500;
cursor:pointer;list-style:none;
display:flex;align-items:center;justify-content:space-between;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
content:'+';font-size:18px;font-weight:700;color:var(--accent);
flex-shrink:0;margin-left:16px;
}
.faq-item[open] summary::after{content:'\2212'}
.faq-item p{
padding:0 28px 18px;font-size:13px;color:var(--muted);line-height:1.8;
}
/* FOOTER */
footer{
border-top:var(--bw) solid var(--border);
max-width:1200px;margin:0 auto;padding:28px 40px;
display:flex;justify-content:space-between;align-items:center;
flex-wrap:wrap;gap:16px;
}
footer p{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.08em}
.footer-links{display:flex;gap:20px}
.footer-links a{
font-size:11px;color:var(--muted);font-weight:500;
text-transform:uppercase;letter-spacing:.08em;
}
.footer-links a:hover{color:var(--accent)}
@media(max-width:768px){
:root{--sp:60px}
.hero,.how,.compare,.flow,.features,.config,.testimonial,.faq{padding-left:20px;padding-right:20px}
.nav-inner{padding:14px 20px}
footer{padding:28px 20px}
.steps-row,.feature-grid{grid-template-columns:1fr}
.step-card{border-right:none;border-bottom:var(--bw) solid var(--border)}
.step-card:last-child{border-bottom:none}
.feature-cell{border-right:none}
.feature-cell:nth-last-child(-n+3){border-bottom:var(--bw) solid var(--border)}
.feature-cell:last-child{border-bottom:none}
.config-table{display:block;overflow-x:auto}
.config-table tr,.config-table th,.config-table td{display:block}
.config-table thead{display:none}
.config-table tr{padding:14px 20px;border-bottom:1px solid var(--subtle-border)}
.config-table tr:last-child{border-bottom:none}
.config-table td{padding:2px 0;border:none}
.config-table td:first-child{font-size:14px;margin-bottom:4px}
.config-table td:nth-child(2){color:var(--accent);margin-bottom:4px}
.compare-table{display:block;overflow-x:auto}
.compare-table thead{font-size:10px}
.compare-table thead th{padding:10px 12px}
.compare-table tbody td{padding:10px 12px;font-size:12px}
.menu-toggle{display:flex}
.nav-links{
display:none;position:absolute;top:100%;left:0;right:0;
flex-direction:column;gap:0;
background:var(--bg);border-bottom:var(--bw) solid var(--border);
}
.nav-links.open{display:flex}
.nav-links a{
font-size:12px;padding:14px 20px;
border-bottom:1px solid var(--subtle-border);
}
.install-block{width:100%}
.install-body{flex-direction:column;align-items:stretch;gap:12px}
.install-body code{font-size:11px;word-break:break-all;white-space:normal}
.copy-btn{align-self:flex-start}
.demo-editor{height:90px}
}
</style>
</head>
<body>
<nav>
<div class="nav-inner">
<div class="logo">
<svg class="logo-icon" width="22" height="22" viewBox="0 0 120 120" fill="none">
<rect width="120" height="120" rx="24" fill="var(--accent)"/>
<g transform="translate(60,60)">
<rect x="-38" y="-10" width="12" height="20" rx="4" fill="#fff"/>
<rect x="-19" y="-24" width="12" height="48" rx="4" fill="#fff"/>
<rect x="-6" y="-34" width="12" height="68" rx="4" fill="#fff"/>
<rect x="7" y="-24" width="12" height="48" rx="4" fill="#fff"/>
<rect x="26" y="-10" width="12" height="20" rx="4" fill="#fff"/>
</g>
</svg>
open-wispr
</div>
<div class="nav-right">
<div class="nav-links" id="navLinks">
<a href="#features">Features</a>
<a href="#faq">FAQ</a>
<a href="#install">Install</a>
<a href="https://github.com/human37/open-wispr">GitHub</a>
</div>
<button class="theme-toggle" id="themeToggle" aria-label="Toggle dark mode">
<svg class="icon-sun" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><circle cx="12" cy="12" r="5"/><path d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"/></svg>
<svg class="icon-moon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>
</button>
<button class="menu-toggle" id="menuToggle" aria-label="Toggle menu">
<svg class="icon-menu" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M3 12h18M3 6h18M3 18h18"/></svg>
<svg class="icon-close" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M18 6L6 18M6 6l12 12"/></svg>
</button>
</div>
</div>
</nav>
<main>
<section class="hero">
<h1>Voice to text, entirely on-device.</h1>
<p class="hero-sub">Hold a key, speak, release. Your words appear at the cursor. Powered by <a href="https://github.com/ggerganov/whisper.cpp">whisper.cpp</a> with Metal acceleration. 100% local — no cloud, no accounts, no telemetry. Free and open source under MIT.</p>
<div class="demo-inline">
<div class="demo-editor">
<span class="demo-hint" id="demoHint"></span><span class="demo-output"><span class="demo-text" id="demoText"></span><span class="demo-cursor" id="demoCursor"></span></span>
</div>
</div>
<div id="install" class="install-block card">
<div class="card-header">
Install on Mac
</div>
<div class="install-body">
<code>curl -fsSL https://raw.githubusercontent.com/human37/open-wispr/main/scripts/install.sh | bash</code>
<button class="copy-btn" onclick="navigator.clipboard.writeText(this.previousElementSibling.textContent.trim());this.textContent='COPIED';setTimeout(()=>this.textContent='COPY',2000)">COPY</button>
</div>
</div>
<div class="tip-row">
<span>Free & open source forever.</span>
<a href="https://buy.stripe.com/4gM5kC2AU0Ssd4l6Hqd7q00">Leave a tip →</a>
</div>
</section>
<section id="how" class="how">
<p class="section-tag">How it works</p>
<h2>Everything you need. Nothing you don't.</h2>
<div class="steps-row">
<div class="step-card">
<div class="step-num">01</div>
<div class="step-title">Hold</div>
<div class="step-desc">Press and hold the Globe key. Recording starts instantly. A waveform animates in your menu bar.</div>
</div>
<div class="step-card">
<div class="step-num">02</div>
<div class="step-title">Speak</div>
<div class="step-desc">Talk naturally. Whisper runs on your GPU via Metal. No network latency, no cloud processing.</div>
</div>
<div class="step-card">
<div class="step-num">03</div>
<div class="step-title">Release</div>
<div class="step-desc">Let go. Transcribed text is typed at your cursor. Works in any app. The temp audio file is deleted.</div>
</div>
</div>
</section>
<section class="compare">
<p class="section-tag">Compare</p>
<h2>Why open-wispr?</h2>
<table class="compare-table">
<thead>
<tr>
<th></th>
<th>open-wispr</th>
<th>VoiceInk</th>
<th>Wispr Flow</th>
<th>Superwhisper</th>
<th>MacWhisper</th>
<th>Apple Dictation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Price</td>
<td class="price-free">Free forever</td>
<td>$39.99</td>
<td>$15/mo</td>
<td>$8.49/mo</td>
<td>$69 lifetime</td>
<td>Free</td>
</tr>
<tr>
<td>Open source</td>
<td class="check">MIT</td>
<td>GPLv3</td>
<td class="muted">No</td>
<td class="muted">No</td>
<td class="muted">No</td>
<td class="muted">No</td>
</tr>
<tr>
<td>100% on-device</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="muted">No</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="muted">Partial</td>
</tr>
<tr>
<td>Works in any app</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="muted">Own app only</td>
<td class="check">Yes</td>
</tr>
<tr>
<td>Push-to-talk</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="muted">No</td>
<td class="muted">No</td>
</tr>
<tr>
<td>Whisper engine</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="muted">Cloud AI</td>
<td class="check">Yes</td>
<td class="check">Yes</td>
<td class="muted">Apple model</td>
</tr>
<tr>
<td>Account required</td>
<td class="check">No</td>
<td class="check">No</td>
<td class="muted">Yes</td>
<td class="muted">Yes</td>
<td class="check">No</td>
<td class="muted">Apple ID</td>
</tr>
<tr>
<td>AI features</td>
<td class="muted">No</td>
<td>AI assistant</td>
<td>AI rewriting</td>
<td>AI formatting</td>
<td class="muted">No</td>
<td class="muted">No</td>
</tr>
<tr>
<td>Languages</td>
<td>99</td>
<td>100+</td>
<td>100+</td>
<td>99</td>
<td>100+</td>
<td>60+</td>
</tr>
<tr>
<td>Install method</td>
<td>Homebrew</td>
<td>App Store</td>
<td>App Store</td>
<td>App Store</td>
<td>App Store</td>
<td>Built-in</td>
</tr>
</tbody>
</table>
</section>
<section class="flow">
<p class="section-tag">Install flow</p>
<h2>Guided setup. Under a minute.</h2>
<div class="flow-steps">
<div class="flow-step">
<div class="flow-num">01</div>
<div class="flow-text"><strong>Paste the install command.</strong> It taps the Homebrew formula and installs the binary. Everything downloads behind a spinner.</div>
</div>
<div class="flow-step">
<div class="flow-num">02</div>
<div class="flow-text"><strong>Grant Accessibility permission.</strong> The installer opens System Settings for you and waits. Toggle the switch, come back.</div>
</div>
<div class="flow-step">
<div class="flow-num">03</div>
<div class="flow-text"><strong>Grant Microphone permission.</strong> A system dialog appears. Click Allow. One time only.</div>
</div>
<div class="flow-step">
<div class="flow-num">04</div>
<div class="flow-text"><strong>Model downloads automatically.</strong> The default <code>base.en</code> model (142 MB) downloads on first launch. You can change this later.</div>
</div>
<div class="flow-step">
<div class="flow-num">05</div>
<div class="flow-text"><strong>Service starts.</strong> A waveform icon appears in your menu bar. Hold Globe, speak, release. Done.</div>
</div>
</div>
</section>
<section id="features" class="features">
<p class="section-tag">Features</p>
<h2>Nothing extra. Nothing missing.</h2>
<div class="feature-grid">
<div class="feature-cell">
<h3><span class="feature-marker"></span>Private</h3>
<p>Audio is recorded to a temp file, transcribed locally, and deleted. Zero network requests. No accounts, no telemetry, no cloud.</p>
</div>
<div class="feature-cell">
<h3><span class="feature-marker"></span>Fast</h3>
<p>Runs on Apple Silicon GPU via whisper.cpp and Metal. Transcription is real-time or faster on M1 and above.</p>
</div>
<div class="feature-cell">
<h3><span class="feature-marker"></span>Universal</h3>
<p>Text appears at your cursor in any app. Editors, browsers, terminals, Slack, email. Missed your focus? Copy Last Dictation from the menu bar.</p>
</div>
<div class="feature-cell">
<h3><span class="feature-marker"></span>Configurable</h3>
<p>Choose your hotkey, model size, and language. One command to change, one restart to apply. Everything in the terminal.</p>
</div>
<div class="feature-cell">
<h3><span class="feature-marker"></span>Multilingual</h3>
<p>Supports 99 languages via Whisper's multilingual models. Set an ISO 639-1 code in the config and use a non-.en model.</p>
</div>
<div class="feature-cell">
<h3><span class="feature-marker"></span>Lightweight</h3>
<p>No Electron. No app bundle to drag. Installs via Homebrew, runs as a background service. Sits quietly in your menu bar.</p>
</div>
</div>
</section>
<section class="config">
<p class="section-tag">Configuration</p>
<h2>One file. Six options.</h2>
<div class="config-example">
<div class="card-header">~/.config/open-wispr/config.json</div>
<pre>{
"<b>hotkey</b>": { "<b>keyCode</b>": 63, "<b>modifiers</b>": [] },
"<b>modelSize</b>": "base.en",
"<b>language</b>": "en",
"<b>spokenPunctuation</b>": false,
"<b>maxRecordings</b>": 0
}</pre>
</div>
<table class="config-table">
<tr><th>Option</th><th>Default</th><th>Values</th></tr>
<tr>
<td>hotkey</td>
<td>63</td>
<td>Globe (63), Right Option (61), F5 (96), or any key code</td>
</tr>
<tr>
<td>modifiers</td>
<td>[]</td>
<td><code>cmd</code> <code>ctrl</code> <code>shift</code> <code>opt</code> — combine for chords</td>
</tr>
<tr>
<td>modelSize</td>
<td>"base.en"</td>
<td><code>tiny.en</code> 75 MB, fastest · <code>base.en</code> 142 MB, good balance (default) · <code>small.en</code> 466 MB, more accurate · <code>medium.en</code> 1.5 GB, great accuracy · <code>large</code> 3 GB, best accuracy (M1 Pro+ recommended). Larger = more accurate but slower.</td>
</tr>
<tr>
<td>language</td>
<td>"en"</td>
<td>Any ISO 639-1 code. Use a non-.en model for other languages.</td>
</tr>
<tr>
<td>spokenPunctuation</td>
<td>false</td>
<td>Say "comma", "period", etc. to insert punctuation manually instead of auto-punctuation.</td>
</tr>
<tr>
<td>maxRecordings</td>
<td>0</td>
<td>Optionally store past recordings locally as <code>.wav</code> files for re-transcribing from the tray menu. 0 = nothing stored (default). Set 1-100 to keep that many recent recordings.</td>
</tr>
</table>
<p class="config-note">Edit <code>~/.config/open-wispr/config.json</code>, then restart: <code>brew services restart open-wispr</code></p>
</section>
<section class="testimonial">
<p class="section-tag">What people say</p>
<div class="testimonial-card">
<p class="testimonial-quote">"I use this with Claude Code every day. Hold the key, say what I want, and it just types it out. No more switching between keyboard and some dictation app. It's perfect for long prompts."</p>
<div class="testimonial-author">Tanner Thorne</div>
<div class="testimonial-role">Software Engineer</div>
</div>
</section>
<section id="faq" class="faq">
<p class="section-tag">FAQ</p>
<h2>Common questions.</h2>
<div class="faq-list">
<details class="faq-item" open>
<summary>Is open-wispr really free?</summary>
<p>Yes, completely free and open source under the MIT license. No subscriptions, no usage limits, no premium tier. You can <a href="https://buy.stripe.com/4gM5kC2AU0Ssd4l6Hqd7q00">leave a tip</a> if you want to support development.</p>
</details>
<details class="faq-item">
<summary>Does any audio or text leave my computer?</summary>
<p>No. Everything runs 100% on-device. Audio goes to a temp file, transcribed locally by Whisper, then deleted immediately. There are zero network requests -- no cloud, no accounts, no telemetry. Optionally, you can configure open-wispr to store a number of past recordings locally via the <code>maxRecordings</code> setting. Those recordings stay private and on your machine, and we default to not storing anything.</p>
</details>
<details class="faq-item">
<summary>How does this compare to VoiceInk, Whisper Flow, or Superwhisper?</summary>
<p>open-wispr is the free, MIT-licensed alternative. VoiceInk ($39.99, GPLv3) is the closest — also open source and local — but adds AI features, custom dictionaries, and app-specific modes. Wispr Flow ($15/mo) uses cloud AI. Superwhisper ($8.49/mo) is local but closed-source. open-wispr gives you the same core experience — push-to-talk local dictation powered by Whisper — with zero cost, zero bloat, and the most permissive license.</p>
</details>
<details class="faq-item">
<summary>What Macs are supported?</summary>
<p>Any Mac with Apple Silicon (M1 or later) running macOS 13+. Whisper uses Metal GPU acceleration for fast inference. Intel Macs are not supported.</p>
</details>
<details class="faq-item">
<summary>How accurate is it compared to Apple Dictation?</summary>
<p>Significantly better. Whisper handles punctuation, technical jargon, code terms, and accented speech far more reliably than Apple's built-in dictation. It supports 99 languages and produces properly punctuated output by default.</p>
</details>
<details class="faq-item">
<summary>Can I use it in any app?</summary>
<p>Yes. open-wispr types transcribed text at your cursor position, so it works in any application — editors, browsers, terminals, Slack, email, and more. No plugins or integrations required.</p>
</details>
</div>
</section>
</main>
<footer>
<p>© <script>document.write(new Date().getFullYear())</script> Ammon Taylor / MIT License</p>
<div class="footer-links">
<a href="https://github.com/human37/open-wispr">Source</a>
<a href="https://github.com/human37/open-wispr/issues">Issues</a>
<a href="https://buy.stripe.com/4gM5kC2AU0Ssd4l6Hqd7q00">Tip</a>
</div>
</footer>
<script>
(function(){
var hint=document.getElementById('demoHint');
var output=document.querySelector('.demo-output');
var text=document.getElementById('demoText');
var cursor=document.getElementById('demoCursor');
var phrases=[
"Jesse, we need to refactor the authentication module. Use JWT tokens, not session cookies.",
"The batch purity is at 96%, but the API response times are still too slow. Add Redis caching.",
"Gus wants the deployment pipeline locked down. Add branch protection rules and require two approvals.",
"I am the one who writes the database migrations. Add an index on the created_at column.",
"We need to cook up a WebSocket connection for real-time order tracking. Use exponential backoff on reconnect.",
"Saul says the client wants rate limiting on all public endpoints. Use a sliding window algorithm, 100 requests per minute.",
"Jesse, stop pushing directly to main. Set up a CI pipeline that runs linting and tests before merge.",
"The carwash needs a new frontend. Migrate the dashboard from JavaScript to TypeScript, and add strict mode.",
"Hank keeps running the wrong queries. Write integration tests for the payment processing pipeline.",
"Say my name. Then refactor the GraphQL schema to support nullable fields and add proper error handling."
];
var last=-1;
var timer;
function pick(){
var i;
do{i=Math.floor(Math.random()*phrases.length)}while(i===last);
last=i;
return phrases[i];
}
function run(){
var phrase=pick();
var words=phrase.split(' ');
hint.innerHTML='<div class="waveform"><span></span><span></span><span></span><span></span><span></span></div> listening...';
text.textContent='';
output.classList.remove('visible');
cursor.classList.remove('typing');
cursor.style.visibility='visible';
timer=setTimeout(function(){
hint.innerHTML='';
output.classList.add('visible');
cursor.classList.add('typing');
var i=0;
function typeWord(){
if(i<words.length){
text.textContent+=(i>0?' ':'')+words[i];
i++;
timer=setTimeout(typeWord,30+Math.random()*30);
}else{
cursor.classList.remove('typing');
cursor.style.visibility='hidden';
timer=setTimeout(run,5000);
}
}
typeWord();
},2000);
}
run();
})();
</script>
<script>
(function(){
var btn=document.getElementById('themeToggle');
btn.addEventListener('click',function(){
var current=document.documentElement.getAttribute('data-theme');
var next=current==='dark'?'light':'dark';
document.documentElement.setAttribute('data-theme',next);
localStorage.setItem('theme',next);
});
window.matchMedia('(prefers-color-scheme:dark)').addEventListener('change',function(e){
if(!localStorage.getItem('theme')){
document.documentElement.setAttribute('data-theme',e.matches?'dark':'light');
}
});
var menu=document.getElementById('menuToggle');
var links=document.getElementById('navLinks');
menu.addEventListener('click',function(){
menu.classList.toggle('open');
links.classList.toggle('open');
});