Change rotation in MediaFormat

In Android API 23, the MediaFormat.KEY_ROTATION field has been entered. Is there a way to change the rotation in MediaFormat on earlier versions of Android?

+1
source share
1 answer

I found a working solution:

MediaFormat mediaformat;
// ...
mediaformat.setInteger("rotation-degrees", 0)
+1
source

Source: https://habr.com/ru/post/1612237/


All Articles