-
Because the code uses the OutputConfiguration class available only from API 24
`surfaces.Add(new OutputConfiguration(previewSurface));`
`surfaces26.Add(previewSurface);`
`previewBuilder.AddTarget…
-
Thanks to @jeffposnick, since version 2.0.0 `` supports capturing video directly from a camera via MediaRecorder API.
What about "Do one thing and do it well" philosophy and split `` to 2 web compo…
-
I have the following frontend code which sends audio data over a websocket in the browser (using the microphone):
```javascript
const webSocket = new WebSocket('ws://127.0.0.1:3000');
webSocket.o…
-
When trying to upload large gifs on /b/ (e.g. a 2.6MB gif) 4chan-XT will automatically convert them to jpeg essentially making the gif useless. While it would make sense to sacrifice a bit of quality …
-
The specification was updated with a new property for MediaRecorder and MediaRecorderOptions which allows the keyframe distance of the emitted stream to be controlled. Web platform tests need to be ad…
-
We're looking to create a simple web application that allows users to record audio directly from their browser and then upload the recorded file (specifically in the WebM format) to a server. This app…
-
Sir I am using MediaRecorder api for recording the screen with audio, using your [extension](https://github.com/muaz-khan/Chrome-Extensions/tree/master/screen-recording) code for recording and the vid…
-
I'm using the following code to get an audio stream from the web browser's microphone:
```
let chunks = [];
const stream = await navigator.mediaDevices.getUserMedia({ audio: true });
mediaRecord…
-
The specification was updated with a new property for `MediaRecorder` and `MediaRecorderOptions` which allows the bitrate mode to be specified as either constant or variable. https://w3c.github.io/me…
-
Hi,
I am looking for ways to select the audio source, if possible independent of the video source. I searched the previous issues maybe these 2 qualify #1139 #782 , sorry if it's discussed someplac…