How to play arrayBuffer on video tag
const arrayBuffer = null; // your ArrayBuffer goes here
// For example you can fetch it from some URL like
// const arrayBuffer = await fetch(url).then(r => r.arrayBuffer());
const blob = new Blob([arrayBuffer]);
const video = document.createElement('video');
video.src = URL.createObjectURL(blob);
// You can now insert video into DOM