Skip to content

fermat01/Building-serverless-video-streaming-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Building serverless video streaming application using S3 Bucket CloudFront ReactJS

GitHub GitHub top language GitHub language count GitHub last commit ViewCount

Introduction

Have you ever been curious about the technology behind streaming videos on platforms like YouTube,NetFlix, and Facebook? In this project, we build a simple serverless video streaming service using S3 Bucket, CloudFront and ReactJS to create a frontend web application. we're going to design and implement a serverless architecture for a service. Our system will enable users to upload videos, which we will then convert to HTTP Live Streaming (HLS) format, ensuring compatibility across all HLS-supported video players.

What We will do

In this guide, We will:

  • Create and setup an Amazon CloudFront
  • Integrate CloudFront with Amazon S3 Bucket
  • Distribute video into web application using ReactJS

Requirements

Before Starting this guide,you will need:

  • An AWS account (if you don't yet have one, please create one and set up your environment)
  • An IAM user that has the access and create AWS resources.
  • Basic understanding of Javascript

1. Architecture


1.1 Crerate S3 Bucket with no public access and enable versionning enabled

Img Architecture

Img Architecture


1.2 Create origin access before creating CloudFront

  • From left corner click on symbol

Img Architecture

  • Click on Origin access and create control setting.

Img Architecture

  • Give a name, choose origin type as S3 and click on create.

Img Architecture

1.3 Create the distribution

  • From left corner click on Distributions

Img Architecture

  • Choose origin domain , give a name, origin access control settings as recommended and origin access control created before

Img Architecture

  • Choose redirect HTTP to HTTPS

Img Architecture

  • Choose Do not enable security protections from WAF

Img Architecture

  • Click on create distribution to create the distribution

Img Architecture

  • After creating the distribution cloudfront will deployed. Copy the given policy.

Img Architecture

  • Paste the policy to S3 bucket policy; it allows Cloudfront to have access to S3 Bucket.

Img Architecture

  • Copy CloudFront URL , paste in the browser add / and copy and paste S3 bucket object key

Img Architecture

2. Create ReactJS web application

Here we create a simple web application and added cloudfront URL to our page.

  • Inside project directory do

     npx create-react-app serverless-streaming-service
  • Go to the ReactJS project

    cd serverless-streaming-service
  • Start application using

    npm start

Update App.js file by adding cloudfront URL

  function App() {
  return (
      <div className="App">
      <h2>Welcome to serverless video streaming service </h2>
      <video width={700} height={400} controls>
          <source src="https://dmsi7k9yxrqf3.cloudfront.net/Luke-combs-and-Tracy-Chapman.mp4"
          type='video/mp4' />
          
      </video>
      </div>
  );
  }

  export default App;

Now go to the browser and write

   localhost:3000

Img Architecture

Here is the CloudFront Statistics

Img Architecture

3. Conclusion

Congratulations! You have finished the Creating serverless video streaming service using S3 Bucket, CloudFront and ReactJS.

4. Clean up

  • Delete S3 Bucket
  • Disable Distribution from CloudFront console before deleting CloudFront

About

Building serverless video-streaming using S3 Bucket CloudFront ReactJS

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published