Skip to content

Commit

Permalink
talkie comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Oct 22, 2024
1 parent 82e62af commit 91fdc4c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ AudioInfo to(44100, 2, 16); // A2DP

A2DPStream a2dp;
FormatConverterStream out(a2dp);
BufferedStream bs(1024, out);
// talkie is sumbmitting too many individual samples, so we buffer them
BufferedStream bs(1024, out);
TalkiePCM voice(bs, from.channels);

void setup() {
Expand Down

0 comments on commit 91fdc4c

Please sign in to comment.