summaryrefslogtreecommitdiff
path: root/modules/input_handlers/pipewire_record.py
blob: 8584ad3686d21c9725d13267d6f0e52acbdeed55 (plain)
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
import subprocess
import os.path
import signal
import sys
from time import sleep

import whisper

FIFO_PATH = "/tmp/hestia-listening"
RECORD_PATH = "/tmp/hestia-record.mp3"

def get_input_pw_record():
    device = get_device()

    if os.path.exists(FIFO_PATH):
        os.remove(FIFO_PATH)

    os.mkfifo(FIFO_PATH)

    while True:
        with open(FIFO_PATH):
            pass
            # TODO "I'm listening"

        try:
            ps = subprocess.Popen((f"pw-record --target {device} {RECORD_PATH}",), shell=True)
            with open(FIFO_PATH):
                print("finished")
            ps.send_signal(signal.SIGINT)
            # TODO "acknowledged"
        except:
            if "ps" in locals():
                ps.kill()
            # TODO "error"
            # TODO exit gracefully or try to recover
            sys.exit()

        model = whisper.load_model("base")

        audio = whisper.load_audio(RECORD_PATH)
        audio = whisper.pad_or_trim(audio)

        mel = whisper.log_mel_spectrogram(audio).to(model.device)
        options = whisper.DecodingOptions(language="en", fp16=False)
        result = whisper.decode(model, mel, options)
        result_text = result.text.replace(",", "").replace(".", "").lower()

        print(result_text)

        yield result_text

def get_device() -> str:
    already_warned = False

    while True:
        ps = subprocess.Popen(('pw-cli ls | \\grep -Poi "(?<=node.name = \\").*mic.*(?=\\")"',), shell=True, stdout=subprocess.PIPE)
        ps.wait()

        if ps.returncode == 0:
            return ps.stdout.read().decode().strip()

        elif not already_warned:
            already_warned = True
            # TODO warn about device not found

        sleep(3)