Questions tagged [amazon-elastic-transcoder]

Amazon Elastic Transcoder is video transcoding in the cloud. It is designed to be a highly scalable, easy to use and a cost effective way for developers and businesses to convert (or “transcode”) video files from their source format into versions that will playback on devices like smartphones, tablets and PCs.

Amazon Elastic Transcoder is video transcoding in the cloud. It is designed to be a highly scalable, easy to use and a cost effective way for developers and businesses to convert (or “transcode”) video files from their source format into versions that will playback on devices like smartphones, tablets and PCs.

171 questions
0
votes
1 answer

Deleting a file after transcoding with AWS Lambda and Elastic Transcoder

I'm using a Lambda python script to call Elastic Transcoder on a file that I upload. How do I delete the file after transcoding? At the moment, my code creates the job, and then deletes the source file straight away, i.e., before the job even has a…
0
votes
1 answer

How to use aws transcoder on videos saved in other cms apart from s3 bucket?

I am planning to use aws in my project to encode mp4 to streaming video format. But my videos are not saved in Amazon s3 bucket. When i tried to create pipline i noticed that they are asking s3 bucket name. Is it possible to use aws encoder in this…
0
votes
0 answers

INSUFFICIENT_DATA at Elastic Transcoder JobsErrored Alarm

I configured an alarm to trigger when ever a Elastic Transcoder Job fails. For this I went to Cloud Watch, Created Alarm with these details: Name: Job Error Desc: Job Error Whenever: JobErrored >=1 For 1 consecutive periods But it is showing as…
Astha
  • 1,728
  • 5
  • 17
  • 36
0
votes
1 answer

Specify thumbnail dimensions and number of generated thumbnails in AWS Elastic Transcoder in PHP SDK

Is it possible to specify the size of the thumbnails and the number of generated thumbnails when creating a job in Elastic Transcoder? I'm using the PHP SDK of AWS.
0
votes
1 answer

AWS Elastic Transcoding - Batch Processing

Is there a way to Batch Transcode 1 file in S3 to multiple versions and a thumbnail in a single API call? Right now I need to call 2 jobs and manage the Job ID and check it back later. What I want to achieve is create a job which converts the Video…
0
votes
1 answer

Create AWS Transcoder job from Lambda

I've created a Lambda function that is called with every new s3 object creation. I'm trying to retrieve the object, then create a new Transcoder job that alters the video quality. But the transcoder job is never created. creating job.... shows up…
0
votes
1 answer

AWS Lambda function execution time when using AWS Elastic Transcoder

I transcode videos with a Lambda function. Example with Node.js: transcoder.createJob(params, function(err, data) { if (err) { ... } else { ... } }); Does the function hang until the video is encoded? Or is the job…
0
votes
1 answer

How to transcode video format in .net MVC to .mp4 using awsSDK elastic transcoder?

I am working on a media portal. I already have videos and images being inserted and viewed daily. Wanted to transcode video format to .mp4 using Amazon Elastic transcoder with C#. Following is my code to upload Video: public string…
0
votes
1 answer

Artifacts on video transcoded from GIF by Elastic Transcoder

I'm trying to transcode GIF to MP4 with H.264 inside using AWS Elastic Transcoder. I noticed strange color artifacts on transcoded video: color stripes on the right. Original GIF: Transcoded video screenshot: I've tried to change settings, even…
0
votes
1 answer

Elastic transcoding properties width and height

Where to specify the width and height for the file that need to be transcoded. This is my code. $job = $elasticTranscoder->createJob(array('PipelineId' => 'xx-nxx','OutputKeyPrefix' => 'output2/'.$folder.'/', 'Input' => array( 'Key' =>…
0
votes
1 answer

Elastic Transcoder Job Status in PHP

How do you print the Job status of an elastic transcoder job with the following parameters in php {Progressing, Completed, Warning, Error} I have submitted the job and the video is transcoding. I'm retrieving the completed videos list through S3…
0
votes
2 answers

Rails/Ruby Parse AWS SNS Topic Notification Data

There is this rails app which I created to accept SNS topic notification data. In summery SNS notification is generated on completion of a elastic transcoder job. So the rails app simply accept the incoming post request from AWS SNS service and All…
randika
  • 1,519
  • 3
  • 18
  • 39
0
votes
2 answers

AWS elastic transcoder - real-time transcoding and distribution for mobile streaming

Goal: I have an application that allows users to upload videos, and then I need to be able to stream those videos to other users immediately. My current setup works fine for this, but I now want to transcode the videos so they are optimized for…
0
votes
1 answer

Elastic Transcoder error "Start of list found where not expected"

I am trying to use ElasticTranscoderPHP to create a new preset with php, but I am getting the error "start of list found where not expected" https://github.com/LPology/ElasticTranscoderPHP What would cause this error? $photo_info =…
livinzlife
  • 863
  • 3
  • 17
  • 33
0
votes
1 answer

Can AWS Transcoder merge an audio file and a video file?

I'm interested in capturing video via html5. The problem is that the video is captured separately from the audio. So to produce a video with audio, one must merge them together. It appears that ffmpeg will do the trick. Does anyone know if AWS…