-1

I have got a few files in s3 bucket and all of them need to be converted (3 output file per 1 input file).

Convertion rules are equal for all files.

Is it possible to do this? How can it be implemented on Node AWS sdk?

Do I need any extra service for it?

Radu Diță
  • 13,476
  • 2
  • 30
  • 34

1 Answers1

0

You can create a MediaConvert JobTemplate

After this you can start one MediaConvert for each file in S3.

If you want to start this every time a file is added, for instance, your safest bet is to create a lambda that gets triggered when a new file is added to the S3 bucket and then start a new MediaConvert job using the saved JobTemplate.

Make sure you don't start a job for the outputs of the MediaConvert Job though.

Radu Diță
  • 13,476
  • 2
  • 30
  • 34