├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── gcc_phat.py ├── google_assistant_for_raspberry_pi.py ├── google_home_lights.py ├── kws_doa.py ├── mic_array.py ├── odas.cfg ├── pixel_ring.py └── vad_doa.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/README.md -------------------------------------------------------------------------------- /gcc_phat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/gcc_phat.py -------------------------------------------------------------------------------- /google_assistant_for_raspberry_pi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/google_assistant_for_raspberry_pi.py -------------------------------------------------------------------------------- /google_home_lights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/google_home_lights.py -------------------------------------------------------------------------------- /kws_doa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/kws_doa.py -------------------------------------------------------------------------------- /mic_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/mic_array.py -------------------------------------------------------------------------------- /odas.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/odas.cfg -------------------------------------------------------------------------------- /pixel_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/pixel_ring.py -------------------------------------------------------------------------------- /vad_doa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/mic_array/HEAD/vad_doa.py --------------------------------------------------------------------------------