Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automating transcoding job on Amazon Elastic Transcoder

Is it possible to automate transcoding job on Amazon Elastic Transcoder? I am using Django framework. If yes, how do I start. I have not come across any such topics, so I had to ask here. Your help and advice will be greatly appreciated. Thank you.

like image 208
Benjamin Smith Max Avatar asked Oct 02 '22 12:10

Benjamin Smith Max


1 Answers

It is automatable as they provide an API.

API Reference - Amazon Elastic Transcoder : http://docs.aws.amazon.com/elastictranscoder/latest/developerguide/api-reference.html

You should be able to call the APIs from anywhere, even from your Django app.

This example helps you setup a video trans-coding pipeline. http://docs.aws.amazon.com/elastictranscoder/latest/developerguide/getting-started.html

like image 149
Sony Kadavan Avatar answered Oct 17 '22 20:10

Sony Kadavan