123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534 |
- """
- The AudioToTextRecorder class in the provided code facilitates fast speech-to-text transcription.
- The class employs the faster_whisper library to transcribe the recorded audio
- into text using machine learning models, which can be run either on a GPU or CPU.
- Voice activity detection (VAD) is built in, meaning the software can automatically
- start or stop recording based on the presence or absence of speech.
- It integrates wake word detection through the pvporcupine library, allowing the
- software to initiate recording when a specific word or phrase is spoken.
- The system provides real-time feedback and can be further customized.
- Features:
- - Voice Activity Detection: Automatically starts/stops recording when speech is detected or when speech ends.
- - Wake Word Detection: Starts recording when a specified wake word (or words) is detected.
- - Event Callbacks: Customizable callbacks for when recording starts or finishes.
- - Fast Transcription: Returns the transcribed text from the audio as fast as possible.
- Author: Kolja Beigel
- """
- import pyaudio
- import collections
- import faster_whisper
- import torch
- import numpy as np
- import struct
- import pvporcupine
- import threading
- import time
- import logging
- import webrtcvad
- import itertools
- from collections import deque
- from halo import Halo
- SAMPLE_RATE = 16000
- BUFFER_SIZE = 512
- SILERO_SENSITIVITY = 0.6
- WEBRTC_SENSITIVITY = 3
- WAKE_WORDS_SENSITIVITY = 0.6
- TIME_SLEEP = 0.02
- class AudioToTextRecorder:
- """
- A class responsible for capturing audio from the microphone, detecting voice activity, and then transcribing the captured audio using the `faster_whisper` model.
- """
-
- def __init__(self,
- model: str = "tiny",
- language: str = "",
- on_recording_start = None,
- on_recording_stop = None,
- spinner = True,
- level=logging.WARNING,
- # Voice activation parameters
- silero_sensitivity: float = SILERO_SENSITIVITY,
- webrtc_sensitivity: int = WEBRTC_SENSITIVITY,
- post_speech_silence_duration: float = 0.2,
- min_length_of_recording: float = 1.0,
- min_gap_between_recordings: float = 1.0,
- pre_recording_buffer_duration: float = 1,
- # Wake word parameters
- wake_words: str = "",
- wake_words_sensitivity: float = WAKE_WORDS_SENSITIVITY,
- wake_word_activation_delay: float = 0,
- wake_word_timeout: float = 5,
- on_wakeword_detected = None,
- on_wakeword_timeout = None,
- ):
- """
- Initializes an audio recorder and transcription and wake word detection.
- Args:
- - model (str, default="tiny"): Specifies the size of the transcription model to use or the path to a converted model directory.
- Valid options are 'tiny', 'tiny.en', 'base', 'base.en', 'small', 'small.en', 'medium', 'medium.en', 'large-v1', 'large-v2'.
- If a specific size is provided, the model is downloaded from the Hugging Face Hub.
- - language (str, default=""): Language code for speech-to-text engine. If not specified, the model will attempt to detect the language automatically.
- - on_recording_start (callable, default=None): Callback function to be called when recording starts.
- - on_recording_stop (callable, default=None): Callback function to be called when recording stops.
- - spinner (bool, default=True): Show spinner animation with current state.
- - level (int, default=logging.WARNING): Logging level.
- - silero_sensitivity (float, default=SILERO_SENSITIVITY): Sensitivity for the Silero Voice Activity Detection model ranging from 0 (least sensitive) to 1 (most sensitive). Default is 0.5.
- - webrtc_sensitivity (int, default=WEBRTC_SENSITIVITY): Sensitivity for the WebRTC Voice Activity Detection engine ranging from 1 (least sensitive) to 3 (most sensitive). Default is 3.
- - post_speech_silence_duration (float, default=0.2): Duration in seconds of silence that must follow speech before the recording is considered to be completed. This ensures that any brief pauses during speech don't prematurely end the recording.
- - min_gap_between_recordings (float, default=1.0): Specifies the minimum time interval in seconds that should exist between the end of one recording session and the beginning of another to prevent rapid consecutive recordings.
- - min_length_of_recording (float, default=1.0): Specifies the minimum duration in seconds that a recording session should last to ensure meaningful audio capture, preventing excessively short or fragmented recordings.
- - pre_recording_buffer_duration (float, default=0.2): Duration in seconds for the audio buffer to maintain pre-roll audio (compensates speech activity detection latency)
- - wake_words (str, default=""): Comma-separated string of wake words to initiate recording. Supported wake words include:
- 'alexa', 'americano', 'blueberry', 'bumblebee', 'computer', 'grapefruits', 'grasshopper', 'hey google', 'hey siri', 'jarvis', 'ok google', 'picovoice', 'porcupine', 'terminator'.
- - wake_words_sensitivity (float, default=0.5): Sensitivity for wake word detection, ranging from 0 (least sensitive) to 1 (most sensitive). Default is 0.5.
- - wake_word_activation_delay (float, default=0): Duration in seconds after the start of monitoring before the system switches to wake word activation if no voice is initially detected. If set to zero, the system uses wake word activation immediately.
- - wake_word_timeout (float, default=5): Duration in seconds after a wake word is recognized. If no subsequent voice activity is detected within this window, the system transitions back to an inactive state, awaiting the next wake word or voice activation.
- - on_wakeword_detected (callable, default=None): Callback function to be called when a wake word is detected.
- - on_wakeword_timeout (callable, default=None): Callback function to be called when the system goes back to an inactive state after when no speech was detected after wake word activation
- Raises:
- Exception: Errors related to initializing transcription model, wake word detection, or audio recording.
- """
- self.language = language
- self.wake_words = wake_words
- self.wake_word_activation_delay = wake_word_activation_delay
- self.wake_word_timeout = wake_word_timeout
- self.min_gap_between_recordings = min_gap_between_recordings
- self.min_length_of_recording = min_length_of_recording
- self.pre_recording_buffer_duration = pre_recording_buffer_duration
- self.post_speech_silence_duration = post_speech_silence_duration
- self.on_recording_start = on_recording_start
- self.on_recording_stop = on_recording_stop
- self.on_wakeword_detected = on_wakeword_detected
- self.on_wakeword_timeout = on_wakeword_timeout
- self.level = level
- self.buffer_size = BUFFER_SIZE
- self.sample_rate = SAMPLE_RATE
- self.recording_start_time = 0
- self.recording_stop_time = 0
- self.wake_word_detect_time = 0
- self.silero_check_time = 0
- self.speech_end_silence_start = 0
- self.silero_sensitivity = silero_sensitivity
- self.listen_start = 0
- self.spinner = spinner
- self.halo = None
- #self.spinner = Halo(text=spinner) if spinner else None
- self.wakeword_detected = False
- # Initialize the logging configuration with the specified level
- logging.basicConfig(format='RealTimeSTT: %(message)s', level=level)
- # Initialize the transcription model
- try:
- self.model = faster_whisper.WhisperModel(model_size_or_path=model, device='cuda' if torch.cuda.is_available() else 'cpu')
- except Exception as e:
- logging.exception(f"Error initializing faster_whisper transcription model: {e}")
- raise
- # Setup wake word detection
- if wake_words:
- self.wake_words_list = [word.strip() for word in wake_words.lower().split(',')]
- sensitivity_list = [float(wake_words_sensitivity) for _ in range(len(self.wake_words_list))]
- try:
- self.porcupine = pvporcupine.create(keywords=self.wake_words_list, sensitivities=sensitivity_list)
- self.buffer_size = self.porcupine.frame_length
- self.sample_rate = self.porcupine.sample_rate
- except Exception as e:
- logging.exception(f"Error initializing porcupine wake word detection engine: {e}")
- raise
- # Setup audio recording infrastructure
- try:
- self.audio = pyaudio.PyAudio()
- self.stream = self.audio.open(rate=self.sample_rate, format=pyaudio.paInt16, channels=1, input=True, frames_per_buffer=self.buffer_size)
- except Exception as e:
- logging.exception(f"Error initializing pyaudio audio recording: {e}")
- raise
- # Setup voice activity detection model WebRTC
- try:
- self.webrtc_vad_model = webrtcvad.Vad()
- self.webrtc_vad_model.set_mode(webrtc_sensitivity)
- except Exception as e:
- logging.exception(f"Error initializing WebRTC voice activity detection engine: {e}")
- raise
- # Setup voice activity detection model Silero VAD
- try:
- self.silero_vad_model, _ = torch.hub.load(
- repo_or_dir="snakers4/silero-vad",
- model="silero_vad",
- verbose=False
- #force_reload=True,
- #onnx=True,
- )
- except Exception as e:
- logging.exception(f"Error initializing Silero VAD voice activity detection engine: {e}")
- raise
- self.audio_buffer = collections.deque(maxlen=int((self.sample_rate // self.buffer_size) * self.pre_recording_buffer_duration))
- self.frames = []
- # Recording control flags
- self.is_recording = False
- self.is_running = True
- self.start_recording_on_voice_activity = False
- self.stop_recording_on_voice_deactivity = False
- # Start the recording worker thread
- self.recording_thread = threading.Thread(target=self._recording_worker)
- self.recording_thread.daemon = True
- self.recording_thread.start()
- def text(self):
- """
- Transcribes audio captured by the class instance using the `faster_whisper` model.
- - Waits for voice activity if not yet started recording
- - Waits for voice deactivity if not yet stopped recording
- - Transcribes the recorded audio.
- Returns:
- str: The transcription of the recorded audio or an empty string in case of an error.
- """
- self.listen_start = time.time()
-
-
- # If not yet started to record, wait for voice activity to initiate recording.
- if not self.is_recording and len(self.frames) == 0:
- self.set_spinner("speak now")
- self.start_recording_on_voice_activity = True
- while not self.is_recording:
- time.sleep(TIME_SLEEP)
- # If still recording, wait for voice deactivity to finish recording.
- if self.is_recording:
- self.stop_recording_on_voice_deactivity = True
- while self.is_recording:
- time.sleep(TIME_SLEEP)
- # Convert the concatenated frames into text
- try:
- audio_array = np.frombuffer(b''.join(self.frames), dtype=np.int16)
- audio_array = audio_array.astype(np.float32) / 32768.0
- self.frames = []
- transcription = " ".join(seg.text for seg in self.model.transcribe(audio_array, language=self.language if self.language else None)[0]).strip()
- if self.spinner and self.halo:
- self.halo.stop()
- self.halo = None
- self.recording_stop_time = 0
- return transcription
-
- except ValueError:
- logging.error("Error converting audio buffer to numpy array.")
- raise
- except faster_whisper.WhisperError as e:
- logging.error(f"Whisper transcription error: {e}")
- raise
- except Exception as e:
- logging.error(f"General transcription error: {e}")
- raise
- def set_spinner(self, text):
- if self.spinner:
- if not self.halo:
- self.halo = Halo(text=text)
- self.halo.start()
- else:
- self.halo.text = text
- def start(self):
- """
- Starts recording audio directly without waiting for voice activity.
- """
- # Ensure there's a minimum interval between stopping and starting recording
- if time.time() - self.recording_stop_time < self.min_gap_between_recordings:
- logging.info("Attempted to start recording too soon after stopping.")
- return self
-
- logging.info("recording started")
- self.wakeword_detected = False
- self.wake_word_detect_time = 0
- self.frames = []
- self.is_recording = True
- self.recording_start_time = time.time()
- self.set_spinner("recording")
- if self.halo: self.halo._interval = 100
- if self.on_recording_start:
- self.on_recording_start()
- return self
-
- def stop(self):
- """
- Stops recording audio.
- """
- # Ensure there's a minimum interval between starting and stopping recording
- if time.time() - self.recording_start_time < self.min_length_of_recording:
- logging.info("Attempted to stop recording too soon after starting.")
- return self
-
- logging.info("recording stopped")
- self.is_recording = False
- self.recording_stop_time = time.time()
- self.set_spinner("transcribing")
- if self.on_recording_stop:
- self.on_recording_stop()
- return self
- def shutdown(self):
- """
- Safely shuts down the audio recording by stopping the recording worker and closing the audio stream.
- """
- self.is_recording = False
- self.is_running = False
- self.recording_thread.join()
- try:
- self.stream.stop_stream()
- self.stream.close()
- self.audio.terminate()
- except Exception as e:
- logging.error(f"Error closing the audio stream: {e}")
- def _calculate_percentile_mean(self, buffer, percentile, upper=True):
- """
- Calculates the mean of the specified percentile from the provided buffer of
- noise levels. If upper is True, it calculates from the upper side,
- otherwise from the lower side.
- Args:
- - buffer (list): The buffer containing the history of noise levels.
- - percentile (float): The desired percentile (0.0 <= percentile <= 1.0). E.g., 0.125 for 1/8.
- - upper (bool): Determines if the function considers the upper or lower portion of data.
- Returns:
- - float: The mean value of the desired portion.
- """
- sorted_buffer = sorted(buffer)
-
- index = int(len(sorted_buffer) * percentile)
- if upper:
- values = sorted_buffer[-index:] # Get values from the top
- else:
- values = sorted_buffer[:index] # Get values from the bottom
- if len(values) == 0:
- return 0.0
-
- return sum(values) / len(values)
-
- def is_silero_speech(self, data):
- """
- Returns true if speech is detected in the provided audio data
- Args:
- data (bytes): raw bytes of audio data (1024 raw bytes with 16000 sample rate and 16 bits per sample)
- """
- audio_chunk = np.frombuffer(data, dtype=np.int16)
- audio_chunk = audio_chunk.astype(np.float32) / 32768.0 # Convert to float and normalize
- vad_prob = self.silero_vad_model(torch.from_numpy(audio_chunk), SAMPLE_RATE).item()
- return vad_prob > self.silero_sensitivity
- def is_webrtc_speech(self, data):
- """
- Returns true if speech is detected in the provided audio data
- Args:
- data (bytes): raw bytes of audio data (1024 raw bytes with 16000 sample rate and 16 bits per sample)
- """
- # Number of audio frames per millisecond
- frame_length = int(self.sample_rate * 0.01) # for 10ms frame
- num_frames = int(len(data) / (2 * frame_length))
- for i in range(num_frames):
- start_byte = i * frame_length * 2
- end_byte = start_byte + frame_length * 2
- frame = data[start_byte:end_byte]
- if self.webrtc_vad_model.is_speech(frame, self.sample_rate):
- return True
- return False
-
- def is_voice_active(self, data):
- if time.time() - self.silero_check_time > 0.1:
- self.silero_check_time = 0
- if self.is_webrtc_speech(data):
- if not self.silero_check_time:
- self.silero_check_time = time.time()
- if self.is_silero_speech(data):
- return True
-
- return False
- def _recording_worker(self):
- """
- The main worker method which constantly monitors the audio input for voice activity and accordingly starts/stops the recording.
- """
-
- was_recording = False
- # Continuously monitor audio for voice activity
- while self.is_running:
- try:
- data = self.stream.read(self.buffer_size)
- except pyaudio.paInputOverflowed:
- logging.warning("Input overflowed. Frame dropped.")
- continue
- except Exception as e:
- logging.error(f"Error during recording: {e}")
- time.sleep(1)
- continue
- # Check if we're not currently recording
- if not self.is_recording:
- wake_word_activation_delay_passed = (time.time() - self.listen_start > self.wake_word_activation_delay)
- if self.spinner and self.halo and not self.recording_stop_time:
- if self.wake_words and wake_word_activation_delay_passed and not self.wakeword_detected:
- self.halo.text = f"say {self.wake_words}"
- self.halo._interval = 500
- else:
- self.halo.text = "speak now"
- self.halo._interval = 200
- if self.wake_words and wake_word_activation_delay_passed:
- try:
- pcm = struct.unpack_from("h" * self.buffer_size, data)
- wakeword_index = self.porcupine.process(pcm)
- except struct.error:
- logging.error("Error unpacking audio data for wake word processing.")
- continue
-
- except Exception as e:
- logging.error(f"Wake word processing error: {e}")
- continue
-
- if wakeword_index >= 0:
- # prevent the wake word from being included in the recording
- samples_for_0_1_sec = int(self.sample_rate * 0.1)
- start_index = max(0, len(self.audio_buffer) - samples_for_0_1_sec)
- temp_samples = collections.deque(itertools.islice(self.audio_buffer, start_index, None))
- self.audio_buffer.clear()
- self.audio_buffer.extend(temp_samples)
- self.wake_word_detect_time = time.time()
- self.wakeword_detected = True
- if self.on_wakeword_detected:
- self.on_wakeword_detected()
- # Check for voice activity to trigger the start of recording
- if ((not self.wake_words or not wake_word_activation_delay_passed) and self.start_recording_on_voice_activity) or self.wakeword_detected:
- if self.is_voice_active(data):
- logging.info("voice activity detected")
- self.start()
- if self.is_recording:
- self.start_recording_on_voice_activity = False
- # Add the buffered audio to the recording frames
- self.frames.extend(list(self.audio_buffer))
- self.silero_vad_model.reset_states()
- self.speech_end_silence_start = 0
- # If we're currently recording and voice deactivity is detected, stop the recording
- else:
- if self.stop_recording_on_voice_deactivity:
- if not self.is_webrtc_speech(data):
- # silence detected (after voice detected while recording)
- if self.speech_end_silence_start == 0:
- self.speech_end_silence_start = time.time()
-
- else:
- self.speech_end_silence_start = 0
- if self.speech_end_silence_start and time.time() - self.speech_end_silence_start > self.post_speech_silence_duration:
- logging.info("voice deactivity detected")
- self.stop()
- if not self.is_recording and was_recording:
- # Reset after stopping recording to ensure clean state
- self.stop_recording_on_voice_deactivity = False
- if time.time() - self.silero_check_time > 0.1:
- self.silero_check_time = 0
-
- if self.wake_word_detect_time and time.time() - self.wake_word_detect_time > self.wake_word_timeout:
- self.wake_word_detect_time = 0
- if self.wakeword_detected and self.on_wakeword_timeout:
- self.on_wakeword_timeout()
- self.wakeword_detected = False
- if self.is_recording:
- self.frames.append(data)
- self.audio_buffer.append(data)
- was_recording = self.is_recording
- time.sleep(TIME_SLEEP)
- def __del__(self):
- """
- Destructor method ensures safe shutdown of the recorder when the instance is destroyed.
- """
- self.shutdown()
|