Results 165 comments of Wolle

I also have a few 320K streams that don't run smoothly. The cause seems to be the WiFi client. Less data is supplied than is required and the buffer is...

The WiFiClient could be replaced by AsyncTCP. Unfortunately, it is not (yet?) part of the Arduino package. Another possibility is to change the sdkconfig regarding the data throughput, there are...

Hello Berran, thanks for your contribution, the syncword is FFFx which makes finding it difficult when a FFFFFF... block exists. If the tests are successful I will implement the correction....

Hi Berran, I cloned the Yokohama-Miyazawa (M5HLSPlayer) repo https://github.com/Yokohama-Miyazawa/M5HLSPlayer and saved it as a PlatformIO project with minor changes, see https://github.com/schreibfaul1/M5HLSPlayer it is able to play ts streams. Yokohama did...

Only AAC transport streams work, no *.ts as used with IPTV. Example: https://air.pc.cdn.bitgravity.com/air/live/pbaudio001/playlist.m3u8 In the m3u8 playlist there is a link to https://air.pc.cdn.bitgravity.com/air/live/pbaudio001/chunklist.m3u8 and there you will find several ts...

Hello deladriere, Mary also needs the voice, please have a look at the routine, I have listed the possible voices there. audio.connecttomarytts("Dies ist ein Test. Schön zu hören, dass es...

getFileSize() transfers the value of the file.size() function of the SD card. This only works as long as the file is open. Within an mp3 file there are one or...

one possibility would be: ````c++ void audio_info(const char *info){ Serial.print("audio_info: "); Serial.println(info); if(strcmp(info, "stream ready") == 0){ Serial.printf("FileSize is %i bytes\n", audioPlayer.getFileSize()); } } ````

I can't see that from the data. The ID3 header may be the cause. To convert an audio file to mp3 I recommend using VLC Player or Audacity.

Hello jasonrepos, I think the antennas influence each other. A shield might help. A very good idea is the use of RFID-cards, as used by biologist79 in his ESPuino project....