Questions tagged [aws-media-convert]

142 questions
0
votes
1 answer

AWS Media Convert 1401 error: Authorization error when "Block Public Access settings for this account" is enabled on S3 bucket

I have a media convert job that will take input video from s3 bucket then convert it and store it in another bucket within the same account. However, when "Block Public Access settings for this account" is enabled for s3 bucket then I get…
0
votes
1 answer

AWS MediaConvert DASH mpd file doesn't play on Android Exoplayer

I have an mpd file generated from AWS Media Convert. This mpd file works in VLC so I know it's a valid file, but it does not work with Exoplayer 2.15.1. The video plays but the audio is not there. Here is my generated file:
Cb32019
  • 185
  • 1
  • 13
0
votes
0 answers

access deined error when using boto3 inside lambda function to trigger mediaConvert job from s3 upload trigger

I have an s3 bucket. when a file is uploaded to that bucket a s3 trigger is fired which triggers a lambda function which using boto3 works to create a job in Media Convert with the file that caused the trigger. However I am getting…
0
votes
1 answer

AWS Mediaconvert PHP Api error while creating a job

Hello im trying to convert an MP4 files which is in my S3 Buket into a .HLS streaming file using the PHP SDK. It is actually so hard for me to create a job using the API... Im getting this error : Error executing "CreateJob" on…
0
votes
1 answer

MediaConvert split audio into multiple output chunks

I would like to create three audio chunks / segments from a 30-minute-long audio file using AWS MediaConvert. Is it possible to do this with MediaConvert and if so how? Here is an example using ffmpeg ffmpeg -i 30min_audio.wav -c copy -f segment…
0
votes
1 answer

Does aws has any video service like vimeo?

Our Use Case : some user will upload video on our platform . Then other people/user will watch those video. video quality will get change based on user internet speed Our Current System : After user upload video, we store the video on s3, then we…
0
votes
1 answer

AWS SDK Media Convert error handling in laravel

I have a list of Job IDs to check their status. So, I'm simply looping through all the Job IDs to get their status on Media Convert. function get_aws_job_id_status($job_id) { $result = []; $client =…
Vivek Choudhary
  • 634
  • 8
  • 14
0
votes
1 answer

AWS Elemental MediaConvert CreateJob Example Using the AWS SDK for .NET

I am trying to change the Input Clipping StartTimecode and end timecode of my file input and save the clipped video to file output Destination in S3 bucket Currently, I am able to perform the operation using the below code: using System; using…
virendra parade
  • 141
  • 2
  • 12
0
votes
1 answer

AWS Elemental MediaConvert Video File trimming start and end duration

Just wanted to know How I handle a video trimming from AWS Elemental MediaConvert when the user upload's a video file through JavaScript
virendra parade
  • 141
  • 2
  • 12
0
votes
1 answer

How to retrieve list of encoded files and paths after a done job in MediaConvert?

As stated in the title, nothing in their API seems to provide a list of encoded files after a job is complete, crucial in case of HLS encoding since I need to move them from S3 to another cloud provider.
yemd
  • 420
  • 4
  • 15
0
votes
3 answers

AWS Service for converting closed caption files

I have some closed caption files in .scc format. I would like to convert them to .vtt format. I have tried several online services and libraries and have had mixed success. I was trying to identify an AWS service that would do the conversion…
0
votes
1 answer

How to get the job progression percentage for a particular job being processed by Mediaconvert?

I have found out that Status Interval Update Event is send to Cloudwatch event every minute when the job is progressing,the interval can be changed to 10 seconds as well.How to show the percentage at the client side from the Cloudwatch event sending…
rounak tadvi
  • 21
  • 1
  • 5
0
votes
1 answer

MediaConvert negative InputClips

TLDR; Instead of extracting clips from the source video, is it possible for segments to be removed from the source video. Eg: Imagine I have a source video file that is 59 seconds long. I want to clip (extract into a new file) a range in the middle…
john
  • 1,561
  • 3
  • 20
  • 44
0
votes
1 answer

How do I get the latest object name uploaded in s3 and push that data(json) to a different api (hit an api) using AWS Lambda?

this code shows all the objects uploaded in the bucket testbucket-101 and no api is being called. Basically the output json of the s3 event should be posted to a different API. import boto3 import os def lambda_handler(event, context): s3 =…
0
votes
1 answer

AWS Post video name to backend API after mediaconvert is done

In my project, users can upload videos. So, when user uploads a video, the video name is stored in a table with a field "is_processed" is set to false by default. Then the uploaded video is stored in S3. When video a arrives in S3, a Lambda is…