Browse Source

Start reading audio data after 44 bytes of WAV

https://github.com/espeak-ng/espeak-ng/issues/832
master
guest271314 4 years ago
parent
commit
5703ea7ff7
No account linked to committer's email address
1 changed files with 7 additions and 2 deletions
  1. 7
    2
      chromium_extension/AudioStream.js

+ 7
- 2
chromium_extension/AudioStream.js View File

@@ -19,6 +19,7 @@ class AudioStream {
this.channelDataLength = 440;
this.sampleRate = 22050;
this.numberOfChannels = 1;
this.init = false;
this.src =
'chrome-extension://<id>/nativeTransferableStream.html';
this.ac = new AudioContext({
@@ -152,8 +153,12 @@ class AudioStream {
this.stdout.pipeTo(
new WritableStream({
write: async (value, c) => {
for (
let i = 0;
let i = 0;
if (!this.init) {
this.init = true;
i = 44;
}
for (;
i < value.buffer.byteLength;
i++, this.readOffset++
) {

Loading…
Cancel
Save