如何从图库中选择视频并对其进行裁剪/调整大小,就像在 android 中进行图像裁剪一样。我最近两天正在寻找它。但我没有找到任何样本或示例。如果您有任何想法或样品,请建议我。
谢谢你。
在 android 4.0 + 你可以使用TextureView
基本思想是使用 Matrix 对象。
Matrix matrix = new Matrix();
matrix.setScale(scaleX, scaleY, pivotPointX, pivotPointY);
mTextureView.setTransform(matrix);
全文可在此处获得。