I should get video from s3 as buffer and add to video. I achieve it by this way. But when send get request to S3 the whole video downloading and video stack until it download. I need get video from S3 chunk by chunk and convert it to buffer.
fetch('<s3_video_url>').then(res => res.arrayBuffer())
.then(buffer => {
console.log(buffer)
})