Skip to content

Instantly share code, notes, and snippets.

View anjanb's full-sized avatar

anjan bacchu anjanb

  • Bangalore, India
View GitHub Profile
@rolisz
rolisz / mic_check.py
Created February 2, 2023 15:41
Script to alert on microphone loudness
import time
from collections import deque
import numpy as np
import sounddevice as sd
from beepy import beep
from infi.systray import SysTrayIcon
last_alert = time.time() - 10
q = deque(maxlen=200)