guest271314
guest271314
When I initially tried to upload the single WAV file GitHub did not allow. I created several files from the single file (WAV header can be included or excluded), thus...
https://gist.githubusercontent.com/guest271314/1fcb5d90799c48fdf34c68dd7f74a304/raw/c06235ae8ebb1ae20f0edea5e8bdc119f0897d9a/UseItBreakItFileBugsRequestFeaturesTestTestTestTestToThePointItBreaks.txt
What is the input audio stream format and what is logged at the `console`?
If you have control over the input stream you can remove WAV header and use s16le to avoid remoal of the first 44 bytes. Is input 1 channel or 2...
According to https://www.npmjs.com/package/node-portaudio ``` // Note that this does not strip the WAV header so a click will be heard at the beginning const rs = fs.createReadStream('steam_48000.wav'); ``` Can you...
> Not sure to understand this "and use s16le to avoid remoal of the first 44 bytes" but very nice of you to answer. See http://www.topherlee.com/software/pcm-tut-wavformat.html, https://github.com/guest271314/AudioWorkletStream/blob/message-port-post-message/audioWorklet.js#L12.
You should be able to record the microphone output per the NPM documentation. To capture microphone directly see also https://github.com/guest271314/SpeechSynthesisRecorder/issues/17#issuecomment-749875748, https://github.com/guest271314/setUserMediaAudioSource, https://github.com/guest271314/captureSystemAudio. > I actually removed this part // accumulate...
It is difficult to test and verify "endless" https://bugs.chromium.org/p/chromium/issues/detail?id=1161429. During testing I streamed 8 hours of audio yesterday. Capturing entire system output or specific application audio output is possible by...
For an "infinite" or "endless" audio stream I would try using `WebTransport` for the `ReadableStream` to avoid restritions on `ServiceWorker` approach, in that case the server handles `quic-transport` protocol, see...
Is this issue resolved?