Skip to content

Commit 0fba760

Browse files
committed
HLSStream examples
1 parent f71001c commit 0fba760

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/examples-communication/hls/hls-buffer-i2s/hls-buffer-i2s.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void setup(void) {
3535
// https://streams.radiomast.io/ref-128k-aaclc-stereo/hls.m3u8
3636
// https://streams.radiomast.io/ref-64k-heaacv1-stereo/hls.m3u8
3737
if (!hls_stream.begin("https://streams.radiomast.io/ref-128k-mp3-stereo/hls.m3u8"))
38-
stop()
38+
stop();
3939

4040
multi.addDecoder(mp3, "audio/mpeg");
4141
multi.addDecoder(aac, "audio/aac");

examples/examples-communication/hls/hls-i2s/hls-i2s.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ void setup(void) {
2525
// https://streams.radiomast.io/ref-128k-aaclc-stereo/hls.m3u8
2626
// https://streams.radiomast.io/ref-64k-heaacv1-stereo/hls.m3u8
2727
if (!hls_stream.begin("https://streams.radiomast.io/ref-128k-mp3-stereo/hls.m3u8"))
28-
stop()
28+
stop();
2929

3030
multi.addDecoder(mp3, "audio/mpeg");
3131
multi.addDecoder(aac, "audio/aac");

0 commit comments

Comments
 (0)