Questions tagged [aws-media-convert]

142 questions
1
vote
1 answer

Issue while creating a job for AWS Elemental media convert

I am having some issue while creating a job for AWS Elemental media convert. I have followed the following sequence. 1.) Create a new job 2.) Add input and configurations 3.) Add File output group and configure destination settings 4.) Under Output…
Sumit Mishra
  • 33
  • 1
  • 9
1
vote
1 answer

How to initiate a Media Conversion with Ruby in AWS Lambda?

I'm trying to start a MediaConvert job with Ruby in AWS Lambda after a file has been uploaded to a bucket. The event kicks off fine, but I'm having trouble initiating the job. I was trying to follow instructions from here to initiate the client:…
1
vote
2 answers

AWS MediaConvert could not identify region for bucket s3.Bucket(name='myname')

my goal is to create a MediaConvert job from a given template by using boto3 with python: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/mediaconvert.html#MediaConvert.Client.create_job Apparently MediaConvert fails to…
michaelbahr
  • 4,837
  • 2
  • 39
  • 75
0
votes
0 answers

Encrypting video file with AES 256 CBC python code, need help as I have to pass this encrypted file to AWS MediaConvert to decrypt it on fly

I am tryin to encrypt a video file with with AES 256 CBC mode and using AWS KMS to encrypt the AES data key that was used to encrypt the video file. I have pass this encrypted file to AWS MediaConvert, it should decrypt the video on fly then…
0
votes
1 answer

AWS Media Convert output to S3 - Can i have NO subfolders

I have a workflow based on https://github.com/aws-solutions/video-on-demand-on-aws-foundation where i upload a MP4 file to a bucket, it gets converted and put into a folder structure that looks like this //file.xxx. …
Rex Reyes
  • 91
  • 6
0
votes
1 answer

AWS MediaConvert API: Cross-account pass role is not allowed

I have a problem with using API of the AWS MediaConvert When we create a job in MediaConvert we must define an IAM role. The role supposed to give access to s3 and AmazonAPIGatewayInvokeFullAccess. This role will be automatically be created when we…
Hadi Aghandeh
  • 765
  • 6
  • 24
0
votes
1 answer

How to create blurred background of the same video input with AWS MediaConvert?

Is it possible to create a secondary layer for a portrait video with AWS MediaConvert, of the same video but blurred, and that fills the frame? I'm trying to achieve this result.
somonek
  • 373
  • 1
  • 6
  • 13
0
votes
1 answer

MediaConvert thumbnails colors

I have a strange issue with MediaConvert, where thumbnails that MediaConvert generates appear to be of different color than the actual video that MediaConvert creates. On the left it's a frame of the video, on the right is the thumbnail generated.…
xtrinch
  • 2,232
  • 1
  • 24
  • 46
0
votes
1 answer

Aws MediaConvert - Create multiples outputs video HLS and audios with a single video mp4

I want to create a job in AWS MediaConvert to convert a video mp4 to a output group Apple HLS with the different qualities of the video, for example 1080p, 720p and 480p, and 2 audios tracks (stereo and no-voices stereo). I create 3 outputs of video…
adrics97
  • 21
  • 3
0
votes
1 answer

AWS-SDK-NET MediaConvert - When using container type MP4 fails with validation message

I am getting this error when creating a MediaConvert job /outputGroups/0/outputs/0/containerSettings: Should have at most 2 properties This is my ContainerSettings: ContainerSettings mp4ContainerSettings = new ContainerSettings() { …
jsagno
  • 1
  • 1
0
votes
2 answers

How to set or not set audio selector in AWS media convert?

I got this error, when creating job for AWS media convert: Invalid selector_sequence_id [0] specified for audio_description [1]. I do not even need sound for my output mp4 video. My intention is to loop for 2 second an image (png or jpg) and add a…
János
  • 32,867
  • 38
  • 193
  • 353
0
votes
0 answers

I get the lambda event s3 key as url, want to get as string:

I am converting the s3 video to hls, in that case if the s3 file name has a space or bracket, it will converted into "+", so if the code search with the "+" in s3 bucket it didn't get object. def handler(event, context): assetID =…
0
votes
1 answer

How can I access the generated thumbnail in S3 in frontend?

I am created a lambda trigger , when a video file uploaded in a s3 input bucket, it will create a thumbnail in output bucket, but I don't know how to access it. Please help me. Iam generating 3 thumbnail from a single video, in this bottom image ,…
0
votes
1 answer

MediaConvert introducing Video Audio Duration Mismatch in HLS segments

When I used MediaConvert to package a video file into HLS, I'm seeing that the resulting TS files have mismatching video and audio duration. For example, when I used segment size as 6, the resulting TS file has video duration as 6.006000 and audio…
muraliv
  • 169
  • 1
  • 7
0
votes
1 answer

Add metadata to output .wav file using AWS MediaConvert

I am creating a Node api to convert .mp4 file to .wav file using AWS MediaConvert. I need to add some metadata to the output .wav file but I am not able to figure out how to do so. Is there any specific MediaConvert setting that I need to configure…