Video -> Blob won't play

Hi there,
I am trying to make a video player that makes a blob and then plays it. Blob is created successfully, but the blob video won’t play when it becomes the source of the video. Any ideas?
https://glitch.com/edit/#!/eddiestechvidplayer
https://eddiestechvidplayer.glitch.me

1 Like

There’s a mistake line 12 : xhr.responseTyep = "arraybuffer"; should be xhr.responseType = "arraybuffer";

Wow! Should always read over my code! - Mental Note! Thanks for the help!