PhilippeDC
PhilippeDC
@ewbarnes53 can test with HTTP1.0 instead of HTTP1.1 and share the result ?
 I've updated the code, for a better view of the header to the console, and to adapt either HTTP/1.0 or HTTP/1.1 depending of the header received... no...
It is not a problem of the lengh of the path: ``` /ab9q4v3mb?zs=Zk2aWhTHQFCOwWNJLnwobg&rj-tok=AAABf70H5hsAwNC2BwJhjknfGA&rj-ttl=5 /62v1f6u70mzuv?zs=zu04ijnTS3K72ZAcI3pHsA&rj-tok=AAABf70QxboATmSDtJXPtttZEQ&rj-ttl=5 /u5u4gvaxh4duv?zs=psfJsXxGSyqvedvKya4TKA&rj-tok=AAABf70JTdoAAeK8dAVHJT2ZTQ&rj-ttl=5 /csp5pw3stvduv?zs=vGoivvEMQ8ea8J6n447K9Q&rj-tok=AAABf70KKZ0AKdvsyVd3E1ryBA&rj-ttl=5 ``` the 2 first temporary paths was working, not the 2 last.
is it the right way to declare a cookie? ``` if( client.connect(newUrlStation, newPortStation.toInt()) ) { client.print(String("GET ") + newPathStation + " " + protocol + "\r\n" + "Host: " +...
hi @Dr-Dawg here is the code. Thanks ``` // si perte du signal if((!client.connected()) || stationChange ) { Serial.print(F("Try to connect to: ")); Serial.println(nomStation); Serial.print(F("http://")); Serial.print(urlStation); Serial.print(":"); Serial.print(portStation.toInt()); Serial.print("/"); Serial.println(pathStation);...
I've tried to trace HTTP dialog with https://www.rexswain.com/httpview.html but I have not notice anything special. With Modzilla Firefox, if I delete all cookies and run one "non-working" radio station from...
Hi @Dr-Dawg you're right. Here is the full test code for a .ino file: ``` byte VOLUME = 75; #define buffSize 128 // audio streams buffer size String protocol =...
Hi, I made several tries and I understand now why sometime the sound is brassy, and sometime it is clicking. Sorry but for my experience ring buffer does not solve...
@fabitom include now in the VS1053::begin() function, however I don't notice significant improvement.
I did similar yet: // if connected to the radio station :) if( client.available() > 0 ) { if( !pause && tempo == 0 ) { bytesread = client.read(mp3buff, 512);...