I am currently working on an e-learning platform. It uses Next.js for frontend and Nodejs for backend. It will serve to two class of users: Tutor
and Student
. It needs to have the following features:
Tutor
can upload tutorial videos from a Tutor's dashboard.Student
can stream these videos from Student's dashboard.I need a way to store and stream these videos. In my research I came across many solutions are Amazon S3 or storing it in file system itself. Given that I am currently in development phase but might need to scale up in future, please suggest how to manage videos for this website
0 Replies