File size: 2,594 Bytes
27b879b
 
 
 
 
 
 
 
0b48737
27b879b
 
 
 
 
 
 
 
 
bffbe62
92094a9
bffbe62
27b879b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Hey, Buddy!</title>
        <link href="style.css" rel="stylesheet" />
        <script src="https://cdn.jsdelivr.net/npm/onnxruntime-web@1.19.0/dist/ort.min.js"></script>
        <script src="https://cdn.jsdelivr.net/npm/hey-buddy-onnx@0.1.2/dist/hey-buddy.min.js"></script>
        <script src="index.js"></script>
    </head>
    <body>
        <div class="card">
            <section id="logo">
                <img src="logo.png" alt="Hey Buddy!" />
            </section>
            <section id="headline">
                <p><strong><em>Hey Buddy!</em></strong> is a library for training wake word models (a.k.a audio keyword spotters) and deploying them to the browser for real-time use on CPU or GPU.</p>
                <p>Using a wake-word as a gating mechanism for voice-enabled web applications carries benefits like reduced power consumption, reduced redundant computation, and enhanced privacy.</p>
                <p>This space serves as a demonstration of the JavaScript library for front-end applications. Say something like, <em>&ldquo;Hey buddy, how are you?&rdquo;</em> to see the wake word and voice activity detection in action. Your voice command will be isolated as an audio clip, ready to be sent to your application's backend.</p>
                <p><em>This is in alpha, and misidentifications may occur.</em> If you find it to be consistently incorrect for your microphone or voice, I encourage you to open a discussion on <a href="https://huggingface.co/benjamin-paine/hey-buddy" target="_blank">the HuggingFace repository.</a></p>
            </section>
            <section id="links">
                <a href="https://github.com/painebenjamin/hey-buddy" target="_blank">
                    <img src="https://img.shields.io/static/v1?label=painebenjamin&message=hey-buddy&logo=github&color=0b1830" alt="painebenjamin - hey-buddy" />
                </a>
                <a href="https://huggingface.co/benjamin-paine/hey-buddy" target="_blank">
                    <img src="https://img.shields.io/static/v1?label=benjamin-paine&message=hey-buddy&logo=huggingface&color=0b1830" alt="painebenjamin - hey-buddy" />
                </a>
            </section>
            <section id="graphs"></section>
            <section id="recording">
                <label>Recording</label>
                <div id="audio">No recording yet</div>
            </section>
        </div>
    </body>
</html>