问题
In Android API 23 MediaFormat.KEY_ROTATION field was introduced. Is there any way to change rotation in MediaFormat on earlier Android versions?
回答1:
I found the working solution:
MediaFormat mediaformat;
// ...
mediaformat.setInteger("rotation-degrees", 0)
来源:https://stackoverflow.com/questions/33242851/change-rotation-in-mediaformat