SanZamoyski
SanZamoyski
Hi! This is my solution: ``` if (rxbuffer.tail == BUFFER_SIZE-1) rxbuffer.tail = 0; else rxbuffer.tail++; return c; ``` Best regards!
I think I succeed by modifying the script a bit. In line `$FFMPEG -loglevel error -stats -i "$FILENAME" -map 0 -scodec copy -vcodec "$OUTPUT_VCODEC" -acodec "$OUTPUT_ACODEC" ...` I've added to...
`make WITH_OCTAVE=true WITH_CONTRIB=true all contrib` WITH_OCTAVE is important, not sure about other dif.
How about this one: https://sourceforge.net/projects/sdccstm/ ?
Yes, I've seen that. But let's be honest - it's an old mcu. Probably, there is very little chance for anything better. The question is: is there a lot of...
Can You explain a little?
I do not know where actually I've found stuff that helped, but now I almost can use this in Audio loop: ``` setCpuFrequencyMhz(80); vTaskDelay(1 / portTICK_RATE_MS); if(!audio_pause){ setCpuFrequencyMhz(240); }` ```...
After alot of messing I got this (only important things to show idea: As setup: ``` audio.setBufsize(-1, UINT16_MAX * 8); //didn't help on choppy sound loadAudioFile(dirName, fileName); int lowCpu =...
Can You provide some workaround? I.e. what should I do if PSRAM gets too low to play another song? ``` if(ESP.getFreePsram() < 32*1024){ //do something smart here... } ``` Currently...
but how?