Search found 44 matches
- Thu Mar 19, 2026 10:59 am
- Forum: ESP-ADF 中文讨论版
- Topic: ESP-ADF ESP-RTSP 例程支持 改IPv6.
- Replies: 1
- Views: 951
Re: ESP-ADF ESP-RTSP 例程支持 改IPv6.
这个是个feature可以到github上面提feature request,我们会根据情况看是否添加支持。
- Thu Mar 19, 2026 10:56 am
- Forum: ESP-ADF 中文讨论版
- Topic: 关于ESP-MRM (Multi-Room Music) 方案的最大支持设备数量
- Replies: 1
- Views: 138
Re: 关于ESP-MRM (Multi-Room Music) 方案的最大支持设备数量
目前multiroom采用的是组播方案,一个主机发送音频url到各个从机然后发送同步信号,从机负责播放和同步,理论上是没有什么数量的限制,现在的限制是所有的从机只能播放同样的东西。
- Wed May 14, 2025 10:54 am
- Forum: ESP-ADF 中文讨论版
- Topic: esp32-s3-box-3 use voip example can't receive the remote calling
- Replies: 2
- Views: 8160
Re: esp32-s3-box-3 use voip example can't receive the remote calling
From log, can see that esp32-s3-box register to SIP server OK. If possible you can check wireshark log on PC (filter `sip`) keywords, and check server log to check whether server forward the call message to esp32-s3-box.
- Tue Dec 31, 2024 9:55 am
- Forum: ESP-ADF
- Topic: Which board to choose?
- Replies: 2
- Views: 6255
Re: Which board to choose?
You can try the mentioned script to gen new board for you.
https://github.com/espressif/esp-adf/is ... 2418345704
https://github.com/espressif/esp-adf/is ... 2418345704
- Thu Oct 31, 2024 7:38 am
- Forum: ESP-IDF 中文讨论版
- Topic: idf 中AAC解码问题
- Replies: 1
- Views: 4510
Re: idf 中AAC解码问题
请注意编码器bool adts_used; 和解码器的 bool no_adts_header;配置参数。
当编码不使用adts_used的时候编码出来的数据没有ADTS Header的前七个字节,这样就要配置sample rate channel bits等信息连同no_adts_header = true 这样可以解码正常。 如果编码的时候adts_used设置上,decoder的时候就不需要特殊的配置用默认值就可以。
当编码不使用adts_used的时候编码出来的数据没有ADTS Header的前七个字节,这样就要配置sample rate channel bits等信息连同no_adts_header = true 这样可以解码正常。 如果编码的时候adts_used设置上,decoder的时候就不需要特殊的配置用默认值就可以。
- Mon Aug 14, 2023 6:15 am
- Forum: ESP-ADF
- Topic: Play multiple audio in a row
- Replies: 2
- Views: 51032
Re: Play multiple audio in a row
It is quite easy, if all files are of same type: audio type is same, audio sample rate and bits are same.
You can check example:
https://github.com/espressif/esp-adf/blob/master/examples/get-started/play_mp3_control/main/play_mp3_control_example.c, after file play to end, auto read next file.
If ...
You can check example:
https://github.com/espressif/esp-adf/blob/master/examples/get-started/play_mp3_control/main/play_mp3_control_example.c, after file play to end, auto read next file.
If ...
- Fri Aug 11, 2023 2:13 am
- Forum: ESP-ADF 中文讨论版
- Topic: ESP32 audio kit怎麼分辨是甚麼audio codec
- Replies: 1
- Views: 30566
Re: ESP32 audio kit怎麼分辨是甚麼audio codec
简单一点你可以扫描I2C总线,简单点就是从 0-7F的地址里面读取一个字节的东西看对端有没有回应
每个Codec对应的I2C都只有特定的地址
每个Codec对应的I2C都只有特定的地址
- Fri Aug 11, 2023 2:09 am
- Forum: ESP-ADF
- Topic: ESP-ADF的方法似乎过旧了
- Replies: 2
- Views: 13821
Re: ESP-ADF的方法似乎过旧了
可以看下你的ADF的版本,最新的版本默认应该是可以编译过的在IDF5.1上面
你可以手动打开下面的选项
Component config --> FreeRTOS --> Kernel
configENABLE_BACKWARD_COMPATIABILITY
你可以手动打开下面的选项
Component config --> FreeRTOS --> Kernel
configENABLE_BACKWARD_COMPATIABILITY
- Fri Aug 11, 2023 2:01 am
- Forum: ESP-ADF
- Topic: ESP ADF and IDF in one Project
- Replies: 2
- Views: 12437
Re: ESP ADF and IDF in one Project
If you already have a used IDF version which is compatiable with current ADF(4.4-5.1).
You do not need to use the IDF project in ADF submodules, you can use the IDF you already has, it also works well.
You do not need to use the IDF project in ADF submodules, you can use the IDF you already has, it also works well.
- Fri Jul 14, 2023 11:12 am
- Forum: ESP-ADF
- Topic: LyraTmini v1.2 help with simple passthru code
- Replies: 4
- Views: 9784
Re: LyraTmini v1.2 help with simple passthru code
to use 24bits you need set mclk_multiple to be 384 as notes of IDF
* @note Please set the mclk_multiple to I2S_MCLK_MULTIPLE_384 while using 24 bits data width
* Otherwise the sample rate might be imprecise since the bclk division is not a integer
* @note Please set the mclk_multiple to I2S_MCLK_MULTIPLE_384 while using 24 bits data width
* Otherwise the sample rate might be imprecise since the bclk division is not a integer