Skip to content

Instantly share code, notes, and snippets.

View thiagodiniz's full-sized avatar
🏠
Working from home

Thiago Diniz thiagodiniz

🏠
Working from home
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)