Skip to content

Commit 91fdc4c

Browse files
committed
talkie comments
1 parent 82e62af commit 91fdc4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/examples-tts/streams-talkie-a2dp/streams-talkie-a2dp.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ AudioInfo to(44100, 2, 16); // A2DP
1818

1919
A2DPStream a2dp;
2020
FormatConverterStream out(a2dp);
21-
BufferedStream bs(1024, out);
21+
// talkie is sumbmitting too many individual samples, so we buffer them
22+
BufferedStream bs(1024, out);
2223
TalkiePCM voice(bs, from.channels);
2324

2425
void setup() {

0 commit comments

Comments
 (0)