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
2
votes
0 answers

Access of User purchased video signed URL in AWS s3 bucket

I'm trying to develop a website which has hundreds and hundreds of videos. Here what I want is a customer who has paid for video can only watch the video. All the videos will be uploaded on AWS s3 bucket and I have to use a signed url for the bucket…
2
votes
1 answer

AWS Elastic Transcoder forces rotation on vertical videos

I've been using the transcoder for a long time via AWS javascript API to create HLS versions of vertical videos (uploaded from mobile phones). So far "rotation: auto" perfectly handled them and kept them in their vertical position (height 640, width…
Alonzo
  • 773
  • 6
  • 13
2
votes
1 answer

Add Cache-Control Metadata to AWS Elastic Transcoder Output

I am currently uploading a video to a S3 bucket and then using AWS Elastic Transcoder to create a webm file and to output a thumbnail. All of this is working except I am unable to set any metadata on the ET files. I am attempting to add…
2
votes
2 answers

AWS CloudFormation and Elastic Transcoder

Does AWS CloudFormation allow creating templated for AWS Elastic Transcoder? PS: I tried creating a DataPipeline, but no that is not the same as Transcoder pipeline
2
votes
1 answer

Your application is submitting requests to Amazon Elastic Transcoder faster than the maximum request rate

There is a Windows service which ingests Video files which are delivered by some content providers. Then the Windows Service tries to create renditions for each given video file using Amazon Elastic Transcoder. For each video file around 15…
Aref Karimi
  • 1,822
  • 4
  • 27
  • 46
2
votes
0 answers

Amazon Transcoder Client issue with Pipelines Job on CURL

I am quite new to amazon web services, and i am working on video encode and create thumbnail under amazong transcoder srevices. require 'lib/aws/aws-autoloader.php'; use Aws\ElasticTranscoder\ElasticTranscoderClient; // Create a service locator…
Bill
  • 17,872
  • 19
  • 83
  • 131
2
votes
0 answers

HLS -- add an audio track after the video playlist is created

I have made an HLS playlist for a video file.FeatureSDPlaylist.m3u8. I now want to add in additional audio track to this playlist, for example as shown here: http://support.jwplayer.com/customer/portal/articles/1761348-multiple-audio-renditions. I…
David542
  • 104,438
  • 178
  • 489
  • 842
2
votes
1 answer

External transcoder with paperclip

We want to use an external transcoding service like PandaStream or Zencoder or Amazon Elastic Transcoder to transcode videos in our rails app. We are currently using paperclip for asset management (and our own, ffmpeg based processors). Does…
2
votes
1 answer

AWS ios SDK - http post request for elastic transcoder job

Looking into AWS elastic transcoder, and have a few questions: Is there significant value using the transcoder in the first place, for my use case? I'm making an ios app that allows users to select a video. When they do this I'm uploading it to an…
2
votes
1 answer

AWS Elastic Transcoder Endpoint cannot be resolved

I'm working on a project that requires video to be transcoded and thumbnails extracted through use of AWS Elastic Transcoder. I have followed the api to the best of my abilities and have what seems to me correct code. However, I still get an error…
2
votes
1 answer

Quicktime encoding: JW Player and AWS transcoder

I am working on a system that stores video uploads on Amazon S3. The videos are uploaded by numerous clients and we don't have any control over what they may choose to upload. We are displaying the videos on various devices and operating systems…
2
votes
1 answer

AWS Elastic Transcoder watermarks

I'm trying to add a watermark to all my videos being processed through Amazon elastic transcoder but I can't get it to working. I created the preset with one watermark set(BottomRight) as in docs. Here's my PHP source $output = array( 'Key' =>…
2
votes
1 answer

Amazon s3 Elastic Transcoder ERROR: The specified pipeline was not found

I am integrating Amazon s3 Elastic Transcoder using aws-sdk-php. I use http://elastictranscoding.blogspot.in/ link to accomplish my task. While implementing i face following error: Fatal error: Uncaught…
2
votes
1 answer

Unable to set an output duration with the Elastic Transcoder Ruby SDK

Using version 1.22.1 of the Ruby SDK I'm unable to set a duration on the output of a video being transcoded by the Elastic Transcoder. Based on the docs it looks like the outputs hash needs a composition array/hash containing a time_span hash with…
2
votes
1 answer

RoR: using paperclip for video upload and transcoder with elastic transcoder

I was wondering if anyone can help me with this issue. I need help to find a way to make paperclip work with elastic transcoder. I need to be able to save an uploaded video in S3 Amazon bucket using paperclip and then transcode the uploaded video…