Media Convert rotating portrait videos.

0

While transcoding medias to HLS using media convert, portrait videos are auto rotated -90 degree. I am using lambda to invoke media convert job.

  • MediaType: MOV

I tried following settings with reference to Documentation

  • Auto Rotate
"VideoSelector": 
{
 "ColorSpace": "FOLLOW",
 "Rotate": "AUTO"
}
  • 0 Degree Rotate
"VideoSelector": 
{
 "ColorSpace": "FOLLOW",
 "Rotate": "DEGREE_0"
}
  • 270 Degree Rotate
"VideoSelector": 
{
 "ColorSpace": "FOLLOW",
 "Rotate": "DEGREES_270"
}
Dip
asked 7 months ago288 views
1 Answer
1
Accepted Answer

Often portrait videos captured by mobile phones will have metadata that indicates the image is a 16x9 format, yet rotated, instead of indicating a 9x16 resolution. Depending on the metadata, AWS Elemental MediaConvert will rotate the video back to the 16x9 format.

Try using Rotate: DEGREE_90 to get the transcoded outputs in the desired portrait mode.

AWS
Mike-ME
answered 7 months ago
profile picture
EXPERT
reviewed 20 days ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions