Reputation: 1558
What I need: - load video from client - cut this video on chunks by timepoints - store thuis chunks - provide access to this video chunks for web-users
Could you please give some advices how to properly build this process using AWS infrastructure?
Upvotes: 0
Views: 48
Reputation: 12087
You have a very broad question, so you cannot expect a very detailed answer. But lets start at least with basic puzzle pieces.
AWS may provide you infrastructure and services to support your case.
load video from client
Commonly the uploads are to be stored in an S3 bucket.
cut this video on chunks by timepoints
Once the video is uploaded, you may use the Elastic Transcoder service or any application on a virtual machine (AWS EC2, AWS Batch,..) to process the uploaded video files. You can use the Elastic Transcoder to generate clips (chunks)
- store thuis chunks - provide access to this video chunks for web-users
The chunks can be stored in S3 again and you can make a web app to reference (give access) to the stored chunks
This is at least basic overview, but based on your question it may be a good start
Upvotes: 1