We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6331bac commit e3ef986Copy full SHA for e3ef986
examples/examples-communication/rtsp/communication-player_mp3-rtsp/communication-player_mp3-rtsp.ino
@@ -25,8 +25,8 @@ void setup() {
25
Serial.begin(115200);
26
AudioToolsLogger.begin(Serial, AudioToolsLogLevel::Warning);
27
28
- // no delay between mp3 files
29
- source.setTimeoutAutoNext(0);
+ // delay between mp3 files
+ source.setTimeoutAutoNext(1000);
30
31
// start the player
32
player.begin();
@@ -40,7 +40,7 @@ void setup() {
40
}
41
42
void loop() {
43
- if (rtsp_out) {
+ if (rtsp_out && rtsp) {
44
player.copy();
45
46
0 commit comments