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

Django - Encode video and audio files only when the file is changed

I'm using django-storages for storing media files on Amazon S3. I've developed an interface using boto3 to use Elastic Transcoder for encoding videos or audio files. Also for video files I'll add a watermark logo still using Elastic Transcoder. The…
Fabio
  • 1,272
  • 3
  • 21
  • 41
0
votes
1 answer

AWS Lambda for MPEG-DASH transcoding

I'm a bit confused. I'm setting up a lambda for transcoding an MP4 into a MPEG-Dash for adaptive steaming. There are 4 presents for this MPEG-DASH Video 600 k 1351620000001-500050 MPEG-DASH Video 1200 k 1351620000001-500040 MPEG-DASH Video 2400…
0
votes
1 answer

Transcoder and Transcribe SDKs. Do I also Need SQS?

I am developing a Spring Boot application where I need to upload an mp3 file into Amazon S3 Bucket, then cut it within a specific time frame using Elastic Transcoder and finally have that audio part converted into text using Transcribe. I had a look…
0
votes
1 answer

Create ElasticTranscoder Job via Lambda with 2 Inputs

I want to create an ElasticTranscoder Job via Lambda (NodeJS). It works fine if I define one input (see below). But I have several source files. If I modify my coding, so that the input is an array, I'll get errors. Can someone help me? This works…
0
votes
1 answer

Creating a Playlist with Elastic Transcoder and Lambda (AWS)

I have created a script using Lambda on Amazon web services to automatically transcode videos when a video is uploaded to a S3 bucket. This script works great however, when I add the playlist code below into the script, the entire script stops…
0
votes
1 answer

Reserved Characters are replaced with "_" when get a SQS Queue message from AWS Elastic Transcoder

I am using Java 8 and aws-java-sdk-s3 version 1.11.251. When I use a reserved characters in filename. The SQS returns the inputKey as encoded format like the following, Original File name: video-test4!!.mp4 Received File name from SQS:…
0
votes
1 answer

Adding Watermark to AWS Elastic Transcoder

No matter where I place my overlay.png file (in the root of the bucket or in the folder of the input/output) the Watermark is not being applied using the following code: $watermark = array( 'InputKey' => "overlay.png", 'PresetWatermarkId'…
0
votes
1 answer

When we pass multiple input for clip stitching it returns error aws elastic transcoder

When we pass the multiple input video for the clip stitching, but it returns error Input must be an array of properties,Got numerically indexed array $result = $client - > createJob(array( 'PipelineId' => '151111112277-cq5k40', 'Input' =>…
0
votes
1 answer

Unable to find a region via the region provider chain

I am getting SdkClientException while creating a pipeline for Elastic Transcoder.Someone please help! public void createPipeLine() { AmazonElasticTranscoderClient client=new AmazonElasticTranscoderClient(new ProfileCredentialsProvider()); …
0
votes
1 answer

What is usage and purpose of Bitrate in AWS Elastic Transcoder Presets

I want to transcode a video using aws elastic transcoder jobs. I have checked video transcoding with preset id "1351620000001-400050" for "Smooth 800k" and this preset having max bitrate 688 Is this mean 688 kbps?? And the input video transcoded…
0
votes
1 answer

How to use AWS Elastic Transcoder on a bucket full of videos?

So I have an S3 bucket full of over 200GB of different videos. It would be very time consuming to manually set up jobs to transcode all of these. How can I use either the web UI or aws cli to transcode all videos in this bucket at 1080p, replicating…
0
votes
1 answer

Transcoding different profiles from single Video File

Everyday, I receive few 50 GB files from my partner. I need to trans-code them using a C++ program into 12 profiles. If one profile takes an hour so it takes 12 hours to trans-code to all 12 profiles from one source file. How can Amazon Web Services…
Mohit H
  • 927
  • 3
  • 11
  • 26
0
votes
1 answer

Amazon ElasticTranscoder, How to wait for job completion?

I have a node.js lambda , triggered on S3 event. An Elastic Transcoder job is initiated like so: let AWS = require('aws-sdk'); let s3 = new AWS.S3({apiVersion: '2012–09–25'}); let eltr = new AWS.ElasticTranscoder({apiVersion: '2012–09–25', region:…
0
votes
1 answer

Amazon transcoder convert gif to video

Q: Is it possible to convert a GIF to mp4 (or another video format) using elastic transcoder? I have been looking at the documentation for Amazon Elastic Transcoder and it seems that they are treating .GIF files as video files. I also know that…
Marc Rasmussen
  • 19,771
  • 79
  • 203
  • 364
0
votes
0 answers

AWS Lambda function to run Elastic Transcoder fails when trying to output the file encrypted

I have an AWS Lambda function which I am trying to use to take video placed into an S3 bucket and transcode it. I need the transcoded file to be encrypted. The function works fine for straight transcoding but when I attempt to add the encryption…