Display a video from a Blob Javascript
I’ve found. It was so simple that I didnt even see it… /** * @param {Blob} videoFile * @param {HTMLVideoElement} videoEl * @returns {void} */ function display( videoFile, videoEl ) { // Preconditions: if( !( videoFile instanceof Blob ) ) throw new Error( ‘`videoFile` must be a Blob or File object.’ ); // The `File` … Read more