本文介绍了更改MediaFormat中的旋转的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Android API 23中引入了 MediaFormat.KEY_ROTATION 字段.在早期的Android版本上,有什么方法可以更改MediaFormat中的轮播吗?
In Android API 23 MediaFormat.KEY_ROTATION field was introduced. Is there any way to change rotation in MediaFormat on earlier Android versions?
推荐答案
我找到了可行的解决方案:
I found the working solution:
MediaFormat mediaformat;
// ...
mediaformat.setInteger("rotation-degrees", 0)
这篇关于更改MediaFormat中的旋转的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!