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
1 answer

AWS: Can the Elastic Transcoder signal SWF?

We're using SWF to take videos through a lengthy process, part of which includes sending them through the Elastic Transcoder. It looks like the Elastic Transcoder can send an SNS notification when it's complete, but I don't see any way for it to…
Sean
  • 1,668
  • 1
  • 18
  • 28
1
vote
0 answers

AWS transcoded video is skipping first few seconds when playing the video using video view in android smart tv or devices

Im facing an issue when i try to load AWS transcoded videos from server. This is happening only on few devices. I download the videos(AWS transcoded) from server to local storage & play it with video view. In some android TVs & players especially…
1
vote
0 answers

cloudfront CORS issue and cache invalidation

We are using AWS transcoding to transcode our video files and cloudfront for content delivery. The problem we are facing is, after 2 or 3 days of file upload (it is uploaded in S3 and then transcoded by AWS Elastic Transcoder) cloudfront starts…
1
vote
1 answer

How to get metadata ( MaxWidth, MaxHeight etc) of preset in AWS elastic trans coding

Using aws elastic transcoder in out ongong project. i would like get aws elastic transcoder preset id's meta data, about MaxWidth, MaxHeight ete.
1
vote
0 answers

Using laravel to convert videos with AWS Amazon Elastic Transcoder

Just wanted to know if it's possible to use laravel with Amazon Elastic Transcoder. having a lot of issues using FFMPEG to convert videos as it's always timing out on larger video files event though I have set the timeout to 60000. Is there a plugin…
1
vote
0 answers

Elastic Transcoder output duration doesnt match with the sum of my Input duration

I have multiple media file to concatenate into a single video file. Composed of different media types including video, audio and image. I use FFMPEG to convert audio and images to a video then finally, will use Elastic Transcoder to…
1
vote
1 answer

Is there any service on AWS that can help me convert mp4 files to mp3?

I'm new to Amazon web services and I'm wondering if the platform offers any solution to convert media files to different formats ( mp4 to mp3) or do I have to use a lambda function with a third party library to achieve this. Thank you !
1
vote
0 answers

Why transcoded video output duration is differs from input video?

Original duration (input video) was 0:00:15.093 One of the transcoded output video duration is 0:00:15.323 Is this expected? Kindly refer the attached screenshot and provide your inputs.
SST
  • 2,054
  • 5
  • 35
  • 65
1
vote
1 answer

Unable to get all predefined Presets from AWS Elastic Transcoder

I am trying to get the all Presets from AWS Elastic Transcoder but the following code returns only 50 out of 62 List presets = amazonElasticTranscoder.listPresets().getPresets(); How do I get all presets (include custom presets)?? Is…
SST
  • 2,054
  • 5
  • 35
  • 65
1
vote
1 answer

elastic transcode is not writing metadata in s3, AWS

I am using lambda function to transcode the video file I upload. Here is the code I am using in the lambda function. var params = { PipelineId: pipelineId, Input: { Key: inputKey }, Outputs: [{ …
1
vote
1 answer

Can Amazon Elastic Transcoder convert a sequence of images into a video?

I have sequence of images that must be converted to video: image1.jpg, image2.jpg, image3.jpg, etc... Can it be done using AWS Elastic Transcoder ? If not, what would be your preferred AWS tool for this kind of job ?
standac
  • 1,027
  • 1
  • 11
  • 26
1
vote
1 answer

How to set duration of the transcoded output file?

What is the correct way to specify 'duration' of the transcoded output in Amazon Elastic Transcoder? For example no matter how long the input video file, I would like to have a maximum of 3 minutes output. I'm using a node.js lambda to kick off…
1
vote
2 answers

How to decrypt AWS Elastic Transcoder HLS AES encryption video to play .m3u8?

I use AWS elastic transcoder HLS AES content protection with No Store option to encrypt my .m3u8 file, as the following documentation says, it will automatically generate a set of Encryption Key, Encryption Key MD5 and Encryption Initialization…
1
vote
0 answers

AWS transcoder Captions Embedded missing

We have a problem with MP4 video containing 5 languages captions embedded. After transcoding in AWS transcoder, file contains no languages. I want to keep original captions for languages and converting them into an other format (mov-text, cea-608 or…
1
vote
1 answer

amazon elastic transcode with shrine

I am working on an app that require to upload videos. I added Shrine and s3 storage. Till here everything is working. Now I need to transcode the videos and I added the following code to the video_uploader file class VideoUploader < Shrine plugin…