guest271314

Results 602 comments of guest271314

Browser side, on Chromium or Chrome, you can receive the raw data stream by any means, libdatachannel; `fetch()`, etc., utilize `MediaStreamTrackGenerator` https://github.com/w3c/mediacapture-transform with WebCodecs H.264 https://www.w3.org/TR/webcodecs-avc-codec-registration/ decode the image to...

This https://github.com/mattdesl/mp4-h264 winds up being brought up re browsers re and H.264, see https://source.chromium.org/chromium/chromium/src/+/main:third_party/openh264/README.chromium. The basic pattern I describe is parsing the data client side, with or without a Web...

@moonsikpark See also https://github.com/chcunningham/wc-talk.

@paullouisageneau Yes, source code can be verbose to achieve a given requirement https://twitter.com/juberti/status/1083445783196663808: > How many lines of code are in Google's WebRTC implementation ([https://webrtc.googlesource.com/src](https://t.co/JZRtXX5Mcz))? As of the end of...

My use case is live streaming media. Given a `ReadableStreamDefaultReader.read()` call which results in a `Uint8Array` that can potentially have an odd `length` (streaming STDOUT from a shell script with...

> Error: Sorry! Wasmtime currently only provides pre-built binaries for x86_64 architectures.

It would be helpful and informative if the README.md at https://github.com/bytecodealliance/wasmtime including an unambiguous and conspicuous header and language that states x86 32 bit architecture is not (currently) supported, so...

Re https://stackoverflow.com/questions/60782071/streaming-audio-through-websockets-to-web-audio-player#comment107769145_60782071 > now building a new project so yes I'm in the same boat ... ping me github.com/scottstensland/websockets-streaming-audio at [Streaming audio through WebSockets to Web Audio player](https://stackoverflow.com/q/60782071) > 1....

Note, the code at https://github.com/guest271314/AudioWorkletStream/blob/master/audioWorklet.js was conceived of and is written to handle an infinite input stream of WAV file(s) or binary data capable of being converted to `Float32Array`'s without...

@rmarx What is the canonical procedure to produce an indefinite/infinite datagram or stream from server to client, for example, a live jam session or web radio station? So far I...