├── .gitignore ├── README.md ├── __pycache__ └── mic_read.cpython-36.pyc ├── mic_read.py ├── requirements.txt └── run_specgram.py /.gitignore: -------------------------------------------------------------------------------- 1 | env/* 2 | *.swp 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayared/Live-Specgram/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/mic_read.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayared/Live-Specgram/HEAD/__pycache__/mic_read.cpython-36.pyc -------------------------------------------------------------------------------- /mic_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayared/Live-Specgram/HEAD/mic_read.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayared/Live-Specgram/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_specgram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayared/Live-Specgram/HEAD/run_specgram.py --------------------------------------------------------------------------------