File size: 965 Bytes
b98ffbb |
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 |
import numpy as np
import pyarrow as pa
import sounddevice as sd
from dora import DoraStatus
# Set the parameters for recording
SAMPLE_RATE = 16000
MAX_DURATION = 5
class Operator:
"""
Microphone operator that records the audio
"""
def on_event(
self,
dora_event,
send_output,
) -> DoraStatus:
if dora_event["type"] == "INPUT":
audio_data = sd.rec(
int(SAMPLE_RATE * MAX_DURATION),
samplerate=SAMPLE_RATE,
channels=1,
dtype=np.int16,
blocking=True,
)
audio_data = audio_data.ravel().astype(np.float32) / 32768.0
if len(audio_data) > 0:
send_output("audio", pa.array(audio_data), dora_event["metadata"])
elif dora_event["type"] == "INPUT":
print("Microphone is not recording", dora_event["value"][0].as_py())
return DoraStatus.CONTINUE
|