We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, for some radio stations, and in particular French radio stations, for instance: http://icecast.radiofrance.fr/franceinter-lofi.mp3 or http://icecast.radiofrance.fr/franceinter-midfi.mp3 http://icecast.radiofrance.fr/franceculture-lofi.mp3 or http://icecast.radiofrance.fr/franceculture-midfi.mp3 https://icecast.radiofrance.fr/fip-lofi.mp3 or https://icecast.radiofrance.fr/fip-midfi.mp3 you should notice repetitive glitches after few seconds. These glitches are due by \r\nX\r\n sequences, as the streaming is chunked. Few years ago I've built a web radio with an ESP8266 + VS1053 and I solved this problem by using HTTP/1.0 instead of HTTP/1.1 as Chunked Transfer Coding is only supported in HTTP1.1 cf baldram/ESP_VS1053_Library#52 I have performed the same with your library, however whatever I replace HTTP/1.1 by HTTP/1.0 or not, I get the same very noisy result. Have you got a idea how to suppress the chunks (https://en.wikipedia.org/wiki/Chunked_transfer_encoding)
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open for 30 days with no activity.
Sorry, something went wrong.
This issue was closed because it has been inactive for 14 days since being marked as stale.
No branches or pull requests
Hi, for some radio stations, and in particular French radio stations, for instance:
http://icecast.radiofrance.fr/franceinter-lofi.mp3 or http://icecast.radiofrance.fr/franceinter-midfi.mp3
http://icecast.radiofrance.fr/franceculture-lofi.mp3 or http://icecast.radiofrance.fr/franceculture-midfi.mp3
https://icecast.radiofrance.fr/fip-lofi.mp3 or https://icecast.radiofrance.fr/fip-midfi.mp3
you should notice repetitive glitches after few seconds.
These glitches are due by \r\nX\r\n sequences, as the streaming is chunked.
Few years ago I've built a web radio with an ESP8266 + VS1053 and I solved this problem by using HTTP/1.0 instead of HTTP/1.1 as Chunked Transfer Coding is only supported in HTTP1.1
cf baldram/ESP_VS1053_Library#52
I have performed the same with your library, however whatever I replace HTTP/1.1 by HTTP/1.0 or not, I get the same very noisy result.
Have you got a idea how to suppress the chunks (https://en.wikipedia.org/wiki/Chunked_transfer_encoding)
The text was updated successfully, but these errors were encountered: