You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to suggest being able to upload video live while a webcam/screen recording is happening. Currently the blobs have to be stored in the browser, turned into a File, and then uploaded. The user has to then wait for the upload, and if the browser fails/refreshes then the video is lost. The file property requires a file, and MediaRecorder returns blobs.
mediarecorder = new MediaRecorder(camera);
mediarecorder.addEventListener('dataavailable', function(e) {
// Send to UpChunk to be uploaded?
upchunk.pushblob(e.data);
});
Or otherwise pass the MediaRecorder instance to Upchunk to handle it?
UpChunk.createUpload({
endpoint: url,
recorder: new MediaRecorder(camera);
});
The text was updated successfully, but these errors were encountered:
Is it possible to suggest being able to upload video live while a webcam/screen recording is happening. Currently the blobs have to be stored in the browser, turned into a File, and then uploaded. The user has to then wait for the upload, and if the browser fails/refreshes then the video is lost. The
file
property requires a file, andMediaRecorder
returns blobs.Or otherwise pass the MediaRecorder instance to Upchunk to handle it?
The text was updated successfully, but these errors were encountered: