-
Notifications
You must be signed in to change notification settings - Fork 246
rotate
wshichang edited this page Dec 30, 2016
·
3 revisions
##主动旋转 用户在播放过程中通过调用旋转设置接口以达到视频画面旋转的目的,处理如下:
设置逆时针旋转角度
/**
* @param degree 只能设置90/180/270中的某个值
*/
public boolean setRotateDegree(int degree)
软解时可直接使用KSYMediaPlayer
硬解建议使用播放控件KSYTextureView
KSYMediaPlayer ksyMediaPlayer;
ksyMediaPlayer.setRotateDegree(90);
##被动旋转
某些视频源带有旋转属性或者视频源中间的某段画面角度发生了变化,此需要播放器端在某些时候需要对应的进行处理
具体详见here