I am using AWS Java API for creating AWS Elemental MediaConvert job with VideoDescription width 1920. When I invoke createJob() method using AWSMediaConvert client, it throws error saying ->
com.amazonaws.services.mediaconvert.model.BadRequestException: /outputGroups/0/outputs/2/videoDescription/width: Should be less than or equal to 832 (Service: AWSMediaConvert; Status Code: 400; Error Code: BadRequestException; Request ID: e794fca3-2e80-4953-8b05-1a303f5ec1c9; Proxy: null)
Searched in google as well as was elemental mediaconvert docs, I did not find any solution. Apart from VideoDescription width, other job setting details are proper.
Using below dependency:
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-mediaconvert</artifactId>
<version>1.11.823</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.11.823</version>
</dependency>
Could anyone tell why I am getting this error?
Is there any dependency of resolution width on another job setting parameter? Any help is appreciated.