简体   繁体   English

如何从图库中选择视频并裁剪/调整大小就像Android中的图像裁剪一样

[英]How to select video from gallery and crop/resize it just like image cropping in android

How to select video from gallery and crop/resize it just like image cropping in android. 如何从图库中选择视频并裁剪/调整大小就像Android中的图像裁剪一样。 I am searching it for last two days. 我正在搜索它最近两天。 But i didnt find any samples or example. 但我没有找到任何样品或例子。 If you have any idea or samples, pls suggest me. 如果您有任何想法或样品,请建议我。

Thank You. 谢谢。

On android 4.0 + you can use TextureView 在Android 4.0 +上你可以使用TextureView

Basic idea is to use Matrix object. 基本思想是使用Matrix对象。

Matrix matrix = new Matrix();
matrix.setScale(scaleX, scaleY, pivotPointX, pivotPointY);
mTextureView.setTransform(matrix);

Full article available here . 全文可在此处获得

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM