How to save video and how to display the video using node js
Tell me more about what you are trying to accomplish. Where are your video files hosted? I actually wouldn’t recommend saving video files in a MongoDB database. Instead, I would recommend blob storage like S3, and you breaking up the file into chunks that can be streamed to your clients. There is a great walkthrough on how to do this here: https://medium.com/better-programming/video-stream-with-node-js-and-html5-320b3191a6b6
Let me know if you want me to clarify anything
4 Likes