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 bcbcc88 commit b94200eCopy full SHA for b94200e
src/http2-utility.ts
@@ -30,7 +30,6 @@ export default class Http2Utility {
30
Content-Disposition: form-data; name="audio"
31
Content-Type: application/octet-stream
32
33
- ${buffer}
34
`;
35
36
return output;
src/speech-recognizer.ts
@@ -57,6 +57,7 @@ export default class SpeechRecognizer {
57
58
const audio = this.http2Utility.createBinaryAudioAttachment(chunk);
59
req.write(audio);
60
+ req.write(chunk);
61
});
62
63
req.setEncoding("utf8");
0 commit comments