espressif / esp-sr

Speech recognition
Other
576 stars 106 forks source link

esp_afe_sr_1mic被移除后ESP32S3-EYE应该怎么进行语音识别 (AIS-1285) #73

Closed Kevincoooool closed 7 months ago

Kevincoooool commented 1 year ago

发现最新版本的esp-sr移除了esp_afe_sr_1mic,然后用最新的代码就不能识别了,现在针对ESP32S3-EYE这块板子需要做什么配置才能识别到?

sun-xiangyu commented 1 year ago

新的版本可以直接通过afe_config 设置麦克风的数量,是向下兼容1mic的,具体可以参考 esp-skainet 里的设置

        afe_config.pcm_config.total_ch_num = 2;
        afe_config.pcm_config.mic_num = 1;
        afe_config.pcm_config.ref_num = 1;