TempoTian

Results 130 comments of TempoTian

建议查看下各个 element 的 buffer 分配情况,看每次都读多少数据,哪个element存的数据比较多,减少对应的buffer size再试一试

The audio format in mentioned TS file is MP3 which is not supported currently. Now only support AAC audio format in TS, needs a feature request to support it

For a quick solution you can use attached code to test, put library into `components/esp-adf-libs/esp_codec/lib/esp32s3/` You may need upgrade to latest ADF if show link error. [HLS_mp3_support.zip](https://github.com/espressif/esp-adf/files/14190708/HLS_mp3_support.zip)

Use following lib for esp32 and have a try [libesp_processing.zip](https://github.com/espressif/esp-adf/files/14320881/libesp_processing.zip)

Have you use the wrapper decode in [libesp_processing.zip](https://github.com/espressif/esp-adf/files/14320881/libesp_processing.zip) ``` aac_decoder_cfg_t aac_cfg = DEFAULT_AAC_DECODER_CONFIG(); aac_decoder = wrapper_dec_init(&aac_cfg); //aac_decoder = aac_decoder_init(&aac_cfg); ```

I have tested both the 2 manifest urls, although network is pool, it can play. If you see log like below it means decode OK: ``` Receive music info from...

Merged on commit: https://github.com/espressif/esp-adf-libs/commit/38952f00560d8999ca34fdc364cf13e00679ec5b

We will add extractor module in near feature to support container parse(TS, MP4 etc), so we not decide to export these API to be public. I add simple comment of...

可以测试下附件的patch OK吗,加了一个等播完的流程 [pwm_stream.patch](https://github.com/espressif/esp-adf/files/14134834/pwm_stream.patch)

Thanks,我local测试注意到了,目前测试delay在100ms左右(6868-6777) ``` 6777 run on line 216 6868 run on line 326 left 0 6868 run on line 218 ```