prabhu s
prabhu s

Reputation: 39

How to implement aws video transcoder using node.js in lambda

In my current project i need to convert high quality video medium quality ( to save space). How can i implement AWS trans-coder in lambda using nodes ? i am storing video in to s3 bucket.

Upvotes: 0

Views: 814

Answers (1)

Debasis Das
Debasis Das

Reputation: 569

Just follow this link -> https://medium.com/@swappyp20/automated-video-transcoding-in-amazon-web-services-using-serverless-approach-ae7560c9890d

Follow these steps :

  1. create source s3 bucket ( for store your video/audio file)
  2. Set insert trigger with source s3 bucket
  3. Create lambda function using node.js to convert video/audio file
  4. After convert audio/video file, will store in dest s3 bucket

Upvotes: 3

Related Questions