ESP32 Webradio
Re: ESP32 Webradio
Hi Buddy
Nice work on the Bluetooth implementation - I have BT audio streaming up running with my 32 bit I2S interface to my MA12040P
Push in 4 extra bytes pr L/R samples set and got stable audio flow.
But audio is very distorted / sounds more like playing what is left out in the joint_stereo setup. I will try to get deeper into the decoder and try with other controllable BT audio source.
But all in all a very big step forward for the holy grail of BT audio on the ESP32.
Grate work /Jakobsen
Nice work on the Bluetooth implementation - I have BT audio streaming up running with my 32 bit I2S interface to my MA12040P
Push in 4 extra bytes pr L/R samples set and got stable audio flow.
But audio is very distorted / sounds more like playing what is left out in the joint_stereo setup. I will try to get deeper into the decoder and try with other controllable BT audio source.
But all in all a very big step forward for the holy grail of BT audio on the ESP32.
Grate work /Jakobsen
Analog Digital IC designer / DevOps @ Merus Audio, Copenhagen, Denmark.
We do novel and best in class Audio amplifiers for consumer products.
Programmed assembler for C-64 back in 1980's, learned some electronics - hacking since then
We do novel and best in class Audio amplifiers for consumer products.
Programmed assembler for C-64 back in 1980's, learned some electronics - hacking since then
-
- Posts: 263
- Joined: Sun Jun 19, 2016 12:00 am
Re: ESP32 Webradio
@bernard.xiong: I use the Fraunhofer AAC decoder now, check it out if you like. Its using a lot of RAM too, but at least radio streams seem to work better.
Re: ESP32 Webradio
-------------------------------------
love it, change it or leave it.
-------------------------------------
問候飛出去的朋友遍全球魯迪
love it, change it or leave it.
-------------------------------------
問候飛出去的朋友遍全球魯迪
-
- Posts: 263
- Joined: Sun Jun 19, 2016 12:00 am
Re: ESP32 Webradio
Thanks for the shout out.
Btw. I also made some progress on the Alexa client, main issue right now is that I2S RX doesn't work. If anyone can assist, I'd be grateful.
Btw. I also made some progress on the Alexa client, main issue right now is that I2S RX doesn't work. If anyone can assist, I'd be grateful.
Re: ESP32 Webradio
Hi Buddy
Yes - Got Bluetooth 16 bits audio interleaved to 32 bits I2S and audio quality again set by i2s clock jitter. Very nice.
After syncing to lastest idf-sdk floating point performance has almost increased by 100% - Good news for anyone with plans for advanced DSP audio processing. Need to look closer into this.
/Jakobsen
Yes - Got Bluetooth 16 bits audio interleaved to 32 bits I2S and audio quality again set by i2s clock jitter. Very nice.
After syncing to lastest idf-sdk floating point performance has almost increased by 100% - Good news for anyone with plans for advanced DSP audio processing. Need to look closer into this.
/Jakobsen
Analog Digital IC designer / DevOps @ Merus Audio, Copenhagen, Denmark.
We do novel and best in class Audio amplifiers for consumer products.
Programmed assembler for C-64 back in 1980's, learned some electronics - hacking since then
We do novel and best in class Audio amplifiers for consumer products.
Programmed assembler for C-64 back in 1980's, learned some electronics - hacking since then
-
- Posts: 263
- Joined: Sun Jun 19, 2016 12:00 am
Re: ESP32 Webradio
Cool. Will route it through the renderer, the I2S Merus branch should work right?Jakobsen wrote: Yes - Got Bluetooth 16 bits audio interleaved to 32 bits I2S and audio quality again set by i2s clock jitter. Very nice.
What lib are you using for the biquad, the Teensy one? How does the the audio processing pipeline look like, sample-by-sample or blocks of samples? I'd like to add a subsystem so filters can be plugged in easily.Jakobsen wrote:Hi Buddy
After syncing to lastest idf-sdk floating point performance has almost increased by 100% - Good news for anyone with plans for advanced DSP audio processing. Need to look closer into this.
Re: ESP32 Webradio
Hi Buddy
Still have some 16/32 bits alligenemt to look into - the BT module give out some dropped package when i do bulk i2s_write.
passing through the audio render sound like a good way to deal with diff. audio source.
My DSP code is still inline in a early port of your code. It is block based and it will come out as a module that easy can be plugged into the audio path.
/j
Still have some 16/32 bits alligenemt to look into - the BT module give out some dropped package when i do bulk i2s_write.
passing through the audio render sound like a good way to deal with diff. audio source.
My DSP code is still inline in a early port of your code. It is block based and it will come out as a module that easy can be plugged into the audio path.
/j
Analog Digital IC designer / DevOps @ Merus Audio, Copenhagen, Denmark.
We do novel and best in class Audio amplifiers for consumer products.
Programmed assembler for C-64 back in 1980's, learned some electronics - hacking since then
We do novel and best in class Audio amplifiers for consumer products.
Programmed assembler for C-64 back in 1980's, learned some electronics - hacking since then
-
- Posts: 263
- Joined: Sun Jun 19, 2016 12:00 am
Re: ESP32 Webradio
Any idea how to solve that?Jakobsen wrote: Still have some 16/32 bits alligenemt to look into - the BT module give out some dropped package when i do bulk i2s_write.
Cool, I'll wait then. Idea: filters can register a callback with the audio renderer. They get a pointer to the PCM sample buffer and its format and are called whenever there is a buffer fresh from the decoder. Would that work?Jakobsen wrote: My DSP code is still inline in a early port of your code. It is block based and it will come out as a module that easy can be plugged into the audio path.
I'm currently refactoring he renderer, I noticed you're doing this:
Code: Select all
char high0 = sample_buff_ch0[i]>>8;
char mid0 = sample_buff_ch0[i] & 0xff;
char high1 = sample_buff_ch1[i]>>8;
char mid1 = sample_buff_ch1[i] & 0xff;
const char samp32[8] = {0,0,mid0,high0,0,0,mid1,high1};
EDIT: forget what I said above.The renderer is refactored, bt speaker and aac are now routed through it. 16 Bit, 32 Bit and DAC mode should work fine for all sources now.
Re: ESP32 Webradio
From the Tweet
Live Test with ESP Speaker Mode
and Android APP: Talking to A2DP - BabyPhone is born - done
direct demo show on YouTube
best wishes
rudi
Music Stream by A2DP:
First Download and Config ESP32 Webradio to Bluetooth Speaker Mode in Menuconfig
- Boot then your ESP32 with Speaker or DAC or what you want
- Activate Bluetooth on your Android
- search the A2DP SINK ( ESP-Speaker )
- connect to the Sink
- play your music, video ( audio will be streamed )
Bonus: talk to esp32 by A2DP
- run the Free A2DP Talking APP
have phun ,
thanks to @BuddyCasino for the ESP32 Webradio and support BT Speaker Mode...
btw:
in the video is showing
i have power off music player ( pause ) before start the A2DP talking APP
you do not need this do - you can play your music and A2DP talking do at same time
info:
why there is a delay on A2DP talking: its a Android Security Part
cause Android does not support Hardware A2DP Service direct on each Phone ( unrootet )
- the Audio from Talking is for this showing simple buffered
next step is: Direct HW A2DP service - you need then more rights on the phone ( or rootet phone )
Live Test with ESP Speaker Mode
and Android APP: Talking to A2DP - BabyPhone is born - done
direct demo show on YouTube
best wishes
rudi
Music Stream by A2DP:
First Download and Config ESP32 Webradio to Bluetooth Speaker Mode in Menuconfig
- Boot then your ESP32 with Speaker or DAC or what you want
- Activate Bluetooth on your Android
- search the A2DP SINK ( ESP-Speaker )
- connect to the Sink
- play your music, video ( audio will be streamed )
Bonus: talk to esp32 by A2DP
- run the Free A2DP Talking APP
have phun ,
thanks to @BuddyCasino for the ESP32 Webradio and support BT Speaker Mode...
btw:
in the video is showing
i have power off music player ( pause ) before start the A2DP talking APP
you do not need this do - you can play your music and A2DP talking do at same time
info:
why there is a delay on A2DP talking: its a Android Security Part
cause Android does not support Hardware A2DP Service direct on each Phone ( unrootet )
- the Audio from Talking is for this showing simple buffered
next step is: Direct HW A2DP service - you need then more rights on the phone ( or rootet phone )
-------------------------------------
love it, change it or leave it.
-------------------------------------
問候飛出去的朋友遍全球魯迪
love it, change it or leave it.
-------------------------------------
問候飛出去的朋友遍全球魯迪
Re: ESP32 Webradio
Oh no esp32 karaoke machine is bornrudi ;-) wrote: you do not need this do - you can play your music and A2DP talking do at same time
Who is online
Users browsing this forum: No registered users and 35 guests