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

Advice for video upload website

I'm working on a project where users can upload some private videos. I'm uploading them directly to S3 and distributing them via CloudFront. All is well and working but I've read that transcoding files would be also good because it can create…
1
vote
1 answer

Amazon Elastic Transcoder "execution expired" when calling create_job() via the aws-sdk gem

I'm a little lost here and looking for some guidance. I'm using the ruby aws-sdk (1.29.1) gem to set up jobs in the elastic transcoder. In my staging and production environments when I call create_job() I constantly get a 'Timeout::Error: execution…
1
vote
1 answer

Using file metadata with AWS Elastic Transcoder

When uploading video files to my S3 bucket, I can include custom metadata: x-amz-client-id x-amz-timestamp x-amz-pretty-name What I'm wondering is, once these videos enter an Elastic Transcoder pipeline, is there any way to include this metadata,…
1
vote
1 answer

Amazon Elastic Transcoder vs FFMPEG

I'm developing a website (php based) and there is a provision to upload videos in different formats. I'm using HTML5 player for the front end presentation. So, as the ideal format that is supported by most of the browsers is mp4, I tried using…
1
vote
1 answer

Unable to select a topic for Amazon Transcoder

I want to have my Amazon Transcoder post a notification to a SNS topic when some events happen, but unfortunately I'm getting an error message when I try to select the existing topic from the "Edit Pipeline" page: "Role ARN is invalid: does not…
Gustavo Matias
  • 3,508
  • 3
  • 27
  • 30
1
vote
3 answers

AWS elastic transcoder batch transcoding

Is it possible to transcode all .extensions in a bucket to an output bucket with one job? O r do I need to create a job for every single input file in a bucket using the api? If I can use one job for all files in a bucket with a certain extension,…
1
vote
1 answer

aws php sdk - elastic transcoder (Preset ARN is invalid: relative id null does not conform to the ARN specification)

I'm using the AWS PHP SDK. (with laravel) I am trying to convert a video file between s3 buckets. $transcoder = App::make('aws')->get('ElasticTranscoder'); //$transcoder->setRegion('us-west-2'); // add to queue $result =…
Kudos
  • 375
  • 4
  • 14
1
vote
1 answer

How to use Elastic Transcoder in JAVA?

I'm working a JAVA web project and upload media on S3 with liferay as backend. Now I want to transcode those videos with Elastic Transcoder and then stream them. I want to create a script that helps me process the videos from my project…
1
vote
2 answers

How to change the thumbnail interval with ElasticTranscoder

How do you change the interval between thumbnails created (it seems to default to one thumbnail per minute).
Joe Enzminger
  • 11,110
  • 3
  • 50
  • 75
1
vote
2 answers

Why are Iphone videos upside down?

I have a video file captured using the standard Camera app copied off my Iphone5 using btsync: orig.mov: ISO Media, Apple QuickTime movie That plays upside down in mplayer or vlc. When I transcode it using AWS's elastictranscoder using a standard…
hendry
  • 9,725
  • 18
  • 81
  • 139
1
vote
2 answers

Does the aws-sdk 1.8.3 gem support AWS Elastic Transcoder

Does the aws-sdk 1.8.3 gem support AWS Elastic Transcoder API.
Sam
  • 8,387
  • 19
  • 62
  • 97
0
votes
0 answers

How to transcode MOV file using AWS elastic transcoder

I want to compress .MOV videos to 360p and 720p using aws transcorder but i'm getting following error while creating job for compressing video 4000 b17c3141-20d2-4168-bf7f-8fb8a5a5ca35: Amazon Elastic Transcoder could not interpret the media…
0
votes
0 answers

AWS SDK ElasticTranscoder readJob returns undefined

I'm using the AWS SDK for Javascript and, I have this code for reading a job: const getJobOutputDuration=async()=>{ // read jobInfo const jobDetailsResult = const result = await elasticTranscoder.readJob({ Id: jobId }).promise(); // if not…
0
votes
1 answer

Use S3 bucket folders for Elastic Pipeline input bucket and output bucket

I am putting together an AWS Elastic Pipeline to transcode the video however I want the input the pipeline takes to be from a folder in an AWS S3 bucket and the output to be sent to a different folder in the same AWS S3 bucket. I am not sure how to…
0
votes
1 answer

AWS service for video optimization and compression

I am trying to build a video/audio/image upload feature for a mobile application. Currently we have set the file size limit to be 1 GB for video and 50 MB for audio and images. These uploaded files will be stored in an s3 bucket and we will use AWS…